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) diff --git a/minecode_pipelines/miners/__init__.py b/minecode_pipelines/miners/__init__.py index b8339a2b..e1521118 100644 --- a/minecode_pipelines/miners/__init__.py +++ b/minecode_pipelines/miners/__init__.py @@ -6,23 +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.hashid import PURLS_FILENAME - - -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)) diff --git a/minecode_pipelines/pipelines/mine_maven.py b/minecode_pipelines/pipelines/mine_maven.py new file mode 100644 index 00000000..4901dd4f --- /dev/null +++ b/minecode_pipelines/pipelines/mine_maven.py @@ -0,0 +1,61 @@ +# 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 import Pipeline +from scanpipe.pipes import federatedcode + +from minecode_pipelines import pipes +from minecode_pipelines.pipes import maven + + +class MineMaven(Pipeline): + """ + 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.check_federatedcode_eligibility, + cls.collect_packages_from_maven, + 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) + + def delete_cloned_repos(self): + pipes.delete_cloned_repos(repos=self.repos, logger=self.log) 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/minecode_pipelines/pipes/__init__.py b/minecode_pipelines/pipes/__init__.py index 2cd4f051..5d030617 100644 --- a/minecode_pipelines/pipes/__init__.py +++ b/minecode_pipelines/pipes/__init__.py @@ -7,15 +7,14 @@ # See https://aboutcode.org for more information about nexB OSS projects. # -import os import json +import os +from pathlib import Path + import requests import saneyaml -from pathlib import Path - from aboutcode.hashid import PURLS_FILENAME - from scanpipe.pipes.federatedcode import delete_local_clone from scanpipe.pipes.federatedcode import commit_and_push_changes @@ -41,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/java_stream.py b/minecode_pipelines/pipes/java_stream.py new file mode 100644 index 00000000..63e32287 --- /dev/null +++ b/minecode_pipelines/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_pipelines/pipes/java_stream.py.ABOUT b/minecode_pipelines/pipes/java_stream.py.ABOUT new file mode 100644 index 00000000..d6b635ee --- /dev/null +++ b/minecode_pipelines/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_pipelines/pipes/java_stream.py.LICENSE b/minecode_pipelines/pipes/java_stream.py.LICENSE new file mode 100644 index 00000000..e630f4cd --- /dev/null +++ b/minecode_pipelines/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_pipelines/pipes/maven.py b/minecode_pipelines/pipes/maven.py new file mode 100644 index 00000000..d0c6be3e --- /dev/null +++ b/minecode_pipelines/pipes/maven.py @@ -0,0 +1,811 @@ +# +# 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. +# + +from collections import namedtuple +from itertools import chain +from shutil import rmtree +import os +import gzip +import io + +from dateutil import tz +from jawa.util.utf import decode_modified_utf8 +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 +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 pipes +from minecode_pipelines import VERSION +from minecode_pipelines.pipes import java_stream + +TRACE = False +TRACE_DEEP = False + +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_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" + +PACKAGE_BATCH_SIZE = 500 + + +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 __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." + ) + + self.downloads = [] + + if index_properties_location: + self.index_properties_location = index_properties_location + else: + 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: + self.index_properties = javaproperties.load(config_file) or {} + else: + self.index_properties = {} + + if index_location: + self.index_location = index_location + else: + index_download = self._fetch_index() + self.index_location = index_download.path + + if last_incremental: + index_increment_downloads = self._fetch_index_increments( + last_incremental=last_incremental + ) + self.index_increment_locations = [ + download.path for download in index_increment_downloads + ] + else: + self.index_increment_locations = [] + + def __del__(self): + 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 = self._fetch_http(uri) + return index + + 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 = self._fetch_http(uri) + return index_properties + + 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 they 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 = self._fetch_http(index_increment_url) + index_increment_downloads.append(index_increment) + return index_increment_downloads + + def _get_packages(self, content=None): + artifacts = get_artifacts(content, 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"] + + package = 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, + ) + current_purl = PackageURL( + type="maven", + namespace=group_id, + name=artifact_id, + version=version, + ) + yield current_purl, package + + 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): + """Yield Package objects from maven index or index increments""" + if self.index_increment_locations: + packages = chain(self._get_packages_from_index_increments()) + else: + packages = self._get_packages(content=self.index_location) + return packages + + +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, + 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_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: + # 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, + ) + + # 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, + ) + + # Push changes to remote repository + push_commit = not bool(i % commits_per_push) + if push_commit: + federatedcode.push_changes(repo=data_repo) + + current_purls = [] + 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} + if logger: + logger(f"checkpoint: {checkpoint}") + pipes.update_checkpoints_in_github( + checkpoint=checkpoint, cloned_repo=config_repo, path=MAVEN_CHECKPOINT_PATH + ) + + repos_to_clean = [data_repo, config_repo] + return repos_to_clean diff --git a/minecode_pipelines/pipes/pypi.py b/minecode_pipelines/pipes/pypi.py index e3be18b7..75717eac 100644 --- a/minecode_pipelines/pipes/pypi.py +++ b/minecode_pipelines/pipes/pypi.py @@ -34,19 +34,16 @@ 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 write_packages_json from minecode_pipelines.miners.pypi import PYPI_TYPE from minecode_pipelines.utils import grouper -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 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 00000000..25809f60 Binary files /dev/null and b/minecode_pipelines/tests/data/maven/index/buggy/nexus-maven-repository-index.gz differ 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 00000000..3d258686 Binary files /dev/null and b/minecode_pipelines/tests/data/maven/index/increment/nexus-maven-repository-index.445.gz differ diff --git a/minecode_pipelines/tests/data/maven/index/increment/nexus-maven-repository-index.properties b/minecode_pipelines/tests/data/maven/index/increment/nexus-maven-repository-index.properties new file mode 100644 index 00000000..2306c622 --- /dev/null +++ b/minecode_pipelines/tests/data/maven/index/increment/nexus-maven-repository-index.properties @@ -0,0 +1,36 @@ +#Mon Oct 29 01:28:33 UTC 2018 +nexus.index.id=central +nexus.index.chain-id=1318453614498 +nexus.index.timestamp=20181029012159.470 +0000 +nexus.index.incremental-19=522 +nexus.index.incremental-18=523 +nexus.index.incremental-17=524 +nexus.index.incremental-16=525 +nexus.index.incremental-15=526 +nexus.index.incremental-14=527 +nexus.index.incremental-13=528 +nexus.index.incremental-9=532 +nexus.index.incremental-12=529 +nexus.index.incremental-8=533 +nexus.index.incremental-11=530 +nexus.index.incremental-7=534 +nexus.index.incremental-10=531 +nexus.index.incremental-6=535 +nexus.index.incremental-5=536 +nexus.index.incremental-4=537 +nexus.index.incremental-3=538 +nexus.index.incremental-2=539 +nexus.index.last-incremental=541 +nexus.index.incremental-1=540 +nexus.index.incremental-0=541 +nexus.index.incremental-29=512 +nexus.index.incremental-28=513 +nexus.index.incremental-27=514 +nexus.index.incremental-26=515 +nexus.index.incremental-25=516 +nexus.index.incremental-24=517 +nexus.index.time=20120615133728.952 +0000 +nexus.index.incremental-23=518 +nexus.index.incremental-22=519 +nexus.index.incremental-21=520 +nexus.index.incremental-20=521 diff --git a/minecode_pipelines/tests/data/maven/index/increment2/expected_mini_package.json b/minecode_pipelines/tests/data/maven/index/increment2/expected_mini_package.json new file mode 100644 index 00000000..74c0cb67 --- /dev/null +++ b/minecode_pipelines/tests/data/maven/index/increment2/expected_mini_package.json @@ -0,0 +1,136 @@ +[ + { + "type":"maven", + "namespace":"systems.uom", + "name":"systems-unicode-java8", + "version":"0.7.2", + "qualifiers":{}, + "subpath":null, + "primary_language":null, + "description":null, + "release_date":"2017-09-03", + "parties":[], + "keywords":[], + "homepage_url":null, + "download_url":"https://repo1.maven.org/maven2/systems/uom/systems-unicode-java8/0.7.2/systems-unicode-java8-0.7.2.jar", + "size":12978, + "sha1":"bf8ef403c6ec0e767da0dc289c382aad0a42943d", + "md5":null, + "sha256":null, + "sha512":null, + "bug_tracking_url":null, + "code_view_url":null, + "vcs_url":null, + "copyright":null, + "holder":null, + "declared_license_expression":null, + "declared_license_expression_spdx":null, + "license_detections":[], + "other_license_expression":null, + "other_license_expression_spdx":null, + "other_license_detections":[], + "extracted_license_statement":null, + "notice_text":null, + "source_packages":[], + "file_references":[], + "is_private":false, + "is_virtual":false, + "extra_data":{}, + "dependencies":[], + "repository_homepage_url":null, + "repository_download_url":null, + "api_data_url":null, + "datasource_id":null, + "purl":"pkg:maven/systems.uom/systems-unicode-java8@0.7.2" + }, + { + "type":"maven", + "namespace":"kr.bydelta", + "name":"koalanlp-core_2.12", + "version":"1.8.2", + "qualifiers":{ + "classifier":"sources" + }, + "subpath":null, + "primary_language":null, + "description":"koalaNLP-core", + "release_date":"2017-09-03", + "parties":[], + "keywords":[], + "homepage_url":null, + "download_url":"https://repo1.maven.org/maven2/kr/bydelta/koalanlp-core_2.12/1.8.2/koalanlp-core_2.12-1.8.2-sources.jar", + "size":30075, + "sha1":"6e386fdceb534c28194175706c099c20faff8e54", + "md5":null, + "sha256":null, + "sha512":null, + "bug_tracking_url":null, + "code_view_url":null, + "vcs_url":null, + "copyright":null, + "holder":null, + "declared_license_expression":null, + "declared_license_expression_spdx":null, + "license_detections":[], + "other_license_expression":null, + "other_license_expression_spdx":null, + "other_license_detections":[], + "extracted_license_statement":null, + "notice_text":null, + "source_packages":[], + "file_references":[], + "is_private":false, + "is_virtual":false, + "extra_data":{}, + "dependencies":[], + "repository_homepage_url":null, + "repository_download_url":null, + "api_data_url":null, + "datasource_id":null, + "purl":"pkg:maven/kr.bydelta/koalanlp-core_2.12@1.8.2?classifier=sources" + }, + { + "type":"maven", + "namespace":"com.bbossgroups.plugins", + "name":"bboss-plugin-dubbo", + "version":"5.0.3.6.2", + "qualifiers":{}, + "subpath":null, + "primary_language":null, + "description":"hibernate plugin,word/pdf plugin", + "release_date":"2017-09-04", + "parties":[], + "keywords":[], + "homepage_url":null, + "download_url":"https://repo1.maven.org/maven2/com/bbossgroups/plugins/bboss-plugin-dubbo/5.0.3.6.2/bboss-plugin-dubbo-5.0.3.6.2.jar", + "size":7210, + "sha1":"e332c5ac0ee0847177488a127f33849463806a5b", + "md5":null, + "sha256":null, + "sha512":null, + "bug_tracking_url":null, + "code_view_url":null, + "vcs_url":null, + "copyright":null, + "holder":null, + "declared_license_expression":null, + "declared_license_expression_spdx":null, + "license_detections":[], + "other_license_expression":null, + "other_license_expression_spdx":null, + "other_license_detections":[], + "extracted_license_statement":null, + "notice_text":null, + "source_packages":[], + "file_references":[], + "is_private":false, + "is_virtual":false, + "extra_data":{}, + "dependencies":[], + "repository_homepage_url":null, + "repository_download_url":null, + "api_data_url":null, + "datasource_id":null, + "purl":"pkg:maven/com.bbossgroups.plugins/bboss-plugin-dubbo@5.0.3.6.2" + } +] \ No newline at end of file diff --git a/minecode_pipelines/tests/data/maven/index/increment2/expected_uris.json b/minecode_pipelines/tests/data/maven/index/increment2/expected_uris.json new file mode 100644 index 00000000..8321d57e --- /dev/null +++ b/minecode_pipelines/tests/data/maven/index/increment2/expected_uris.json @@ -0,0 +1,98 @@ +[ + { + "uri":"maven-index://repo1.maven.org/systems/uom/systems-unicode-java8/0.7.2/systems-unicode-java8-0.7.2.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.457.gz", + "package_url":"pkg:maven/systems.uom/systems-unicode-java8@0.7.2", + "file_name":"systems-unicode-java8-0.7.2.jar", + "size":12978, + "date":"2017-09-03T02:06:55+00:00", + "md5":null, + "sha1":"bf8ef403c6ec0e767da0dc289c382aad0a42943d", + "sha256":null, + "priority":0, + "data":{ + "group_id":"systems.uom", + "artifact_id":"systems-unicode-java8", + "version":"0.7.2", + "packaging":"bundle", + "classifier":null, + "extension":"jar", + "last_modified":"2017-09-03T02:06:55+00:00", + "size":12978, + "sha1":"bf8ef403c6ec0e767da0dc289c382aad0a42943d", + "name":"Units of Measurement Unicode CLDR System for Java SE 8", + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/systems/uom/systems-unicode-java8/0.7.2/systems-unicode-java8-0.7.2.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/kr/bydelta/koalanlp-core_2.12/1.8.2/koalanlp-core_2.12-1.8.2-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.457.gz", + "package_url":"pkg:maven/kr.bydelta/koalanlp-core_2.12@1.8.2?classifier=sources", + "file_name":"koalanlp-core_2.12-1.8.2-sources.jar", + "size":30075, + "date":"2017-09-03T11:58:36+00:00", + "md5":null, + "sha1":"6e386fdceb534c28194175706c099c20faff8e54", + "sha256":null, + "priority":0, + "data":{ + "group_id":"kr.bydelta", + "artifact_id":"koalanlp-core_2.12", + "version":"1.8.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-09-03T11:58:36+00:00", + "size":30075, + "sha1":"6e386fdceb534c28194175706c099c20faff8e54", + "name":"koalaNLP-core", + "description":"koalaNLP-core", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/kr/bydelta/koalanlp-core_2.12/1.8.2/koalanlp-core_2.12-1.8.2-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/bbossgroups/plugins/bboss-plugin-dubbo/5.0.3.6.2/bboss-plugin-dubbo-5.0.3.6.2.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.457.gz", + "package_url":"pkg:maven/com.bbossgroups.plugins/bboss-plugin-dubbo@5.0.3.6.2", + "file_name":"bboss-plugin-dubbo-5.0.3.6.2.jar", + "size":7210, + "date":"2017-09-04T06:39:02+00:00", + "md5":null, + "sha1":"e332c5ac0ee0847177488a127f33849463806a5b", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.bbossgroups.plugins", + "artifact_id":"bboss-plugin-dubbo", + "version":"5.0.3.6.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-09-04T06:39:02+00:00", + "size":7210, + "sha1":"e332c5ac0ee0847177488a127f33849463806a5b", + "name":"bboss-plugin-dubbo", + "description":"hibernate plugin,word/pdf plugin", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/bbossgroups/plugins/bboss-plugin-dubbo/5.0.3.6.2/bboss-plugin-dubbo-5.0.3.6.2.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + } +] \ No newline at end of file diff --git a/minecode_pipelines/tests/data/maven/index/increment2/nexus-maven-repository-index.457.gz b/minecode_pipelines/tests/data/maven/index/increment2/nexus-maven-repository-index.457.gz new file mode 100644 index 00000000..09fb8705 Binary files /dev/null and b/minecode_pipelines/tests/data/maven/index/increment2/nexus-maven-repository-index.457.gz differ 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 00000000..72d5cef8 Binary files /dev/null and b/minecode_pipelines/tests/data/maven/index/nexus-maven-repository-index.gz differ diff --git a/minecode_pipelines/tests/pipes/test_maven.py b/minecode_pipelines/tests/pipes/test_maven.py new file mode 100644 index 00000000..61b1785a --- /dev/null +++ b/minecode_pipelines/tests/pipes/test_maven.py @@ -0,0 +1,230 @@ +# +# 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. +# + +import os + +from minecode_pipelines.pipes import maven +from commoncode.testcase import FileBasedTesting + + +class MavenMiscTest(FileBasedTesting): + test_data_dir = os.path.join(os.path.dirname(os.path.dirname(__file__)), "data") + + def test_get_entries(self): + index = self.get_test_loc("maven/index/nexus-maven-repository-index.gz") + fields = ( + list(maven.ENTRY_FIELDS.keys()) + + list(maven.ENTRY_FIELDS_OTHER.keys()) + + list(maven.ENTRY_FIELDS_IGNORED.keys()) + ) + fields = set(fields) + result = list(maven.get_entries(index, fields=fields)) + expected_loc = self.get_test_loc("maven/index/expected_entries.json") + self.check_expected_results(result, expected_loc, regen=False) + + def test_get_entries_increment(self): + index = self.get_test_loc("maven/index/increment/nexus-maven-repository-index.445.gz") + fields = ( + list(maven.ENTRY_FIELDS.keys()) + + list(maven.ENTRY_FIELDS_OTHER.keys()) + + list(maven.ENTRY_FIELDS_IGNORED.keys()) + ) + fields = set(fields) + result = list(maven.get_entries(index, fields=fields)) + expected_loc = self.get_test_loc("maven/index/increment/expected_entries.json") + self.check_expected_results(result, expected_loc, regen=False) + + def test_get_entries_buggy(self): + index = self.get_test_loc("maven/index/buggy/nexus-maven-repository-index.gz") + fields = ( + list(maven.ENTRY_FIELDS.keys()) + + list(maven.ENTRY_FIELDS_OTHER.keys()) + + list(maven.ENTRY_FIELDS_IGNORED.keys()) + ) + fields = set(fields) + result = list(maven.get_entries(index, fields=fields)) + expected_loc = self.get_test_loc("maven/index/buggy/expected_entries.json") + self.check_expected_results(result, expected_loc, regen=False) + + def test_get_artifacts_full(self): + index = self.get_test_loc("maven/index/nexus-maven-repository-index.gz") + + fields = ( + list(maven.ENTRY_FIELDS) + + list(maven.ENTRY_FIELDS_OTHER) + + list(maven.ENTRY_FIELDS_IGNORED) + ) + fields = set(fields) + + result = [a.to_dict() for a in maven.get_artifacts(index, fields, include_all=True)] + expected_loc = self.get_test_loc("maven/index/expected_artifacts.json") + self.check_expected_results(result, expected_loc, regen=False) + + def test_get_artifacts_increment(self): + index = self.get_test_loc("maven/index/increment/nexus-maven-repository-index.445.gz") + fields = ( + list(maven.ENTRY_FIELDS.keys()) + + list(maven.ENTRY_FIELDS_OTHER.keys()) + + list(maven.ENTRY_FIELDS_IGNORED.keys()) + ) + fields = set(fields) + result = [a.to_dict() for a in maven.get_artifacts(index, fields, include_all=True)] + expected_loc = self.get_test_loc("maven/index/increment/expected_artifacts.json") + self.check_expected_results(result, expected_loc, regen=False) + + def test_get_artifacts_buggy(self): + index = self.get_test_loc("maven/index/buggy/nexus-maven-repository-index.gz") + fields = ( + list(maven.ENTRY_FIELDS.keys()) + + list(maven.ENTRY_FIELDS_OTHER.keys()) + + list(maven.ENTRY_FIELDS_IGNORED.keys()) + ) + fields = set(fields) + result = [a.to_dict() for a in maven.get_artifacts(index, fields, include_all=True)] + expected_loc = self.get_test_loc("maven/index/buggy/expected_artifacts.json") + self.check_expected_results(result, expected_loc, regen=False) + + def test_get_artifacts_defaults(self): + index = self.get_test_loc("maven/index/nexus-maven-repository-index.gz") + result = [a.to_dict() for a in maven.get_artifacts(index)] + expected_loc = self.get_test_loc("maven/index/expected_artifacts-defaults.json") + self.check_expected_results(result, expected_loc) + + def test_get_artifacts_no_worthyness(self): + index = self.get_test_loc("maven/index/nexus-maven-repository-index.gz") + + def worth(a): + return True + + result = [a.to_dict() for a in maven.get_artifacts(index, worthyness=worth)] + expected_loc = self.get_test_loc("maven/index/expected_artifacts-all-worthy.json") + self.check_expected_results(result, expected_loc) + + def test_get_artifacts_defaults_increment(self): + index = self.get_test_loc("maven/index/increment/nexus-maven-repository-index.445.gz") + result = [a.to_dict() for a in maven.get_artifacts(index)] + expected_loc = self.get_test_loc("maven/index/increment/expected_artifacts-defaults.json") + self.check_expected_results(result, expected_loc) + + def test_get_artifacts_defaults_buggy(self): + index = self.get_test_loc("maven/index/buggy/nexus-maven-repository-index.gz") + result = [a.to_dict() for a in maven.get_artifacts(index)] + expected_loc = self.get_test_loc("maven/index/buggy/expected_artifacts-defaults.json") + self.check_expected_results(result, expected_loc) + + def test_build_artifact(self): + entry = { + "i": "0-alpha-1-20050407.154541-1.pom|1131488721000|-1|2|2|0|pom", + "m": "1318447185654", + "u": "org.apache|maven|archetypes|1|0-alpha-1-20050407.154541-1.pom", + } + + result = maven.build_artifact(entry, include_all=True) + result = result.to_dict() + expected = dict( + [ + ("group_id", "org.apache"), + ("artifact_id", "maven"), + ("version", "archetypes"), + ("packaging", "0-alpha-1-20050407.154541-1.pom"), + ("classifier", "1"), + ("extension", "pom"), + ("last_modified", "2005-11-08T22:25:21+00:00"), + ("size", None), + ("sha1", None), + ("name", None), + ("description", None), + ("src_exist", False), + ("jdoc_exist", False), + ("sig_exist", False), + ("sha256", None), + ("osgi", dict()), + ("classes", []), + ] + ) + + self.assertEqual(expected.items(), result.items()) + + def test_build_url_and_filename_1(self): + test = { + "group_id": "de.alpharogroup", + "artifact_id": "address-book-domain", + "version": "3.12.0", + "classifier": None, + "extension": "jar", + } + expected = ( + "https://repo1.maven.org/maven2/de/alpharogroup/address-book-domain/3.12.0/address-book-domain-3.12.0.jar", + "address-book-domain-3.12.0.jar", + ) + self.assertEqual(expected, maven.build_url_and_filename(**test)) + + def test_build_url_and_filename_2(self): + test = { + "group_id": "de.alpharogroup", + "artifact_id": "address-book-data", + "version": "3.12.0", + "classifier": None, + "extension": "pom", + } + expected = ( + "https://repo1.maven.org/maven2/de/alpharogroup/address-book-data/3.12.0/address-book-data-3.12.0.pom", + "address-book-data-3.12.0.pom", + ) + self.assertEqual(expected, maven.build_url_and_filename(**test)) + + def test_build_url_and_filename_3(self): + test = { + "group_id": "de.alpharogroup", + "artifact_id": "address-book-rest-web", + "version": "3.12.0", + "classifier": None, + "extension": "war", + } + expected = ( + "https://repo1.maven.org/maven2/de/alpharogroup/address-book-rest-web/3.12.0/address-book-rest-web-3.12.0.war", + "address-book-rest-web-3.12.0.war", + ) + self.assertEqual(expected, maven.build_url_and_filename(**test)) + + def test_build_url_and_filename_4(self): + test = { + "group_id": "uk.com.robust-it", + "artifact_id": "cloning", + "version": "1.9.5", + "classifier": "sources", + "extension": "jar", + } + expected = ( + "https://repo1.maven.org/maven2/uk/com/robust-it/cloning/1.9.5/cloning-1.9.5-sources.jar", + "cloning-1.9.5-sources.jar", + ) + self.assertEqual(expected, maven.build_url_and_filename(**test)) + + def test_build_url_and_filename_with_alternate_base(self): + test = { + "group_id": "uk.com.robust-it", + "artifact_id": "cloning", + "version": "1.9.5", + "classifier": "sources", + "extension": "jar", + "base_repo_url": "maven-index://", + } + expected = ( + "maven-index:///uk/com/robust-it/cloning/1.9.5/cloning-1.9.5-sources.jar", + "cloning-1.9.5-sources.jar", + ) + self.assertEqual(expected, maven.build_url_and_filename(**test)) + + def test_build_maven_xml_url(self): + test = {"group_id": "de.alpharogroup", "artifact_id": "address-book-domain"} + expected = ( + "https://repo1.maven.org/maven2/de/alpharogroup/address-book-domain/maven-metadata.xml" + ) + self.assertEqual(expected, maven.build_maven_xml_url(**test)) diff --git a/pyproject-minecode_pipeline.toml b/pyproject-minecode_pipeline.toml index 061b4f15..abcd37ee 100644 --- a/pyproject-minecode_pipeline.toml +++ b/pyproject-minecode_pipeline.toml @@ -45,7 +45,8 @@ 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] current_version = "0.0.1b1"