diff --git a/README.md b/README.md index aec6964..a3eed70 100644 --- a/README.md +++ b/README.md @@ -155,11 +155,14 @@ Monitoring depGraph via Snyk API ... ``` ### Pruning -If you encounter a HTTP 500 when performing `test` or `monitor` commands, then try to enable pruning. +If you encounter a HTTP 422 when performing `test` or `monitor` commands, with the accompaying error message: +`Retrying: {"error":"Failed to generate snapshot. Please contact support on support@snyk.io"}` + then try to enable pruning. + What is likely happening is that there are too many vulnerable paths for the system (>100,000), so pruning the repeated sub-dependencies will alleviate this. -You may run with `--prune` all the time to avoid this error. +You may run with `--prune` or `--prune-all` to avoid this error. ## Currently supported package types * maven (tested with rules_jvm_external) diff --git a/bazel2snyk/bazel.py b/bazel2snyk/bazel.py index f245c84..dfaee3d 100644 --- a/bazel2snyk/bazel.py +++ b/bazel2snyk/bazel.py @@ -62,7 +62,7 @@ def get_coordinates_from_bazel_dep(self, bazel_dep, package_source): logger.debug(f"{re_match_string=}") for rule in bazel_rules.findall("rule"): - logger.debug(f"processing {rule.attrib['name']=}") + # logger.debug(f"processing {rule.attrib['name']=}") if ( re.match( r".*/BUILD(\.bzl|\.bazel)?\:\d+\:\d+$", rule.attrib["location"] @@ -133,15 +133,16 @@ def maven_bazel_dep_to_snyk_dep(self, dep_coordinates: str): def pip_bazel_dep_to_snyk_dep(self, dep_coordinates: str): snyk_dep = dep_coordinates logger.debug(f"PYTHON TEST: {snyk_dep=}") - # match = re.search(r"\@.*\/\/pypi__.*\:(.*).dist\-info.*\/", dep_coordinates) match = re.search( r"\@.*_.*\:site-packages\/(.*).dist\-info.*\/.*", dep_coordinates ) + if not match: + match = re.search(r"\@.*\/\/pypi__.*\:(.*).dist\-info.*\/", dep_coordinates) if match: snyk_dep = match.group(1) k = snyk_dep.rfind("-") snyk_dep = snyk_dep[:k] + "@" + snyk_dep[k + 1 :] - logger.debug(f"PYTHON TEST: {snyk_dep=}") + logger.debug(f"{snyk_dep=}") return snyk_dep diff --git a/bazel2snyk/cli.py b/bazel2snyk/cli.py index 0b90653..9d9d76f 100755 --- a/bazel2snyk/cli.py +++ b/bazel2snyk/cli.py @@ -1,6 +1,5 @@ import requests import typer -import math import time import sys import traceback @@ -42,16 +41,13 @@ def __init__( self.dep_graph = dep_graph self._visited = [] self._visited_temp = [] - self._dep_path_counts = {} - self._target_path_counts = {} + self._oss_deps_count = 0 def bazel_to_depgraph(self, parent_node_id: str, depth: int): """ Recursive function that will walk the bazel dep tree. """ logger.debug(f"{parent_node_id=},{depth=}") - - # global visited_temp, bazel_xml_parser logger.debug(f"{self._visited_temp=}") children = self.bazel_xml_parser.get_children_from_rule( @@ -63,9 +59,15 @@ def bazel_to_depgraph(self, parent_node_id: str, depth: int): parent_node_id, self.bazel_xml_parser.pkg_manager_name ) + if parent_dep_snyk != parent_node_id and not parent_dep_snyk.endswith( + f"{BAZEL_TARGET_VERSION_STRING}" + ): + self._oss_deps_count += 1 + logger.debug(f"{self._oss_deps_count=}") + # special entry for the root node of the dep graph if depth == 0: - self.dep_graph.set_root_node_package(f"{parent_dep_snyk}") + self.dep_graph.set_root_node_package(parent_dep_snyk) for child in children: child_dep_for_snyk = self.snyk_dep_from_bazel_dep( @@ -87,16 +89,6 @@ def bazel_to_depgraph(self, parent_node_id: str, depth: int): logger.debug(f"adding pkg {child_dep_for_snyk=}") self.dep_graph.add_pkg(child_dep_for_snyk) - # keep track of how many times each dep is encountered - if self.bazel_xml_parser.get_node_type(child) in [BazelNodeType.DEPENDENCY]: - self.increment_dep_path_count(child_dep_for_snyk) - - elif self.bazel_xml_parser.get_node_type(child) in [ - BazelNodeType.INTERNAL_TARGET, - BazelNodeType.EXTERNAL_TARGET, - ]: - self.increment_target_path_count(child_dep_for_snyk) - logger.debug(f"adding dep {child_dep_for_snyk=} for {parent_dep_snyk=}") self.dep_graph.add_dep(child_dep_for_snyk, parent_dep_snyk) @@ -104,6 +96,7 @@ def bazel_to_depgraph(self, parent_node_id: str, depth: int): # if we've already processed this subtree, then just return if child not in self._visited: + logger.debug(f"{child} not yet visited, traversing...") self.bazel_to_depgraph(child, depth=depth + 1) # else: # future use for smarter pruning @@ -137,62 +130,6 @@ def snyk_dep_from_bazel_dep( else: return f"{bazel_dep_id}@{BAZEL_TARGET_VERSION_STRING}" - def increment_dep_path_count(self, dep: str): - """ - Increment global dep path counts which is later - used if the dep graph needs to be pruned - """ - self._dep_path_counts[dep] = self._dep_path_counts.get(dep, 0) + 1 - - def increment_target_path_count(self, dep: str): - """ - Increment global target path counts which is later - used if the dep graph needs to be pruned - """ - self._target_path_counts[dep] = self._target_path_counts.get(dep, 0) + 1 - - def prune_graph_all(self): - """ - Prune graph whenever OSS dependencies are repeated more than 2x - or when bazel target dependencies are repeated more than 10x - """ - for dep, instances in self.dep_path_counts.items(): - if instances > 2: - logger.info(f"pruning {dep} ({instances=})") - self.dep_graph.prune_dep(dep) - - for dep, instances in self.target_path_counts.items(): - if instances > 10: - logger.info(f"pruning {dep} ({instances=})") - self.dep_graph.prune_dep(dep) - - def prune_graph( - self, instance_count_threshold: int, instance_percentage_threshold: int - ): - """ - Prune graph according to threshold of duplicated transitive dependencies - """ - self._dep_path_counts.update(self._target_path_counts) - combined_path_counts = self._dep_path_counts - - total_item_count = 0 - - for dep, instances in combined_path_counts.items(): - total_item_count += instances - logger.debug(f"{total_item_count=}") - - for dep, instances in combined_path_counts.items(): - if instances > 1: - instance_percentage = math.ceil((instances / total_item_count) * 100) - if ( - instances > instance_count_threshold - or instance_percentage > instance_percentage_threshold - ): - logger.info( - f"pruning {dep} ({instances=}/{instance_count_threshold},{instance_percentage=}/{instance_percentage_threshold})" - ) - self.dep_graph.prune_dep(dep) - def load_file(file_path: str) -> str: """ @@ -284,7 +221,7 @@ def main( bazel2snyk.bazel_to_depgraph(parent_node_id=bazel_target, depth=0) - if len(bazel2snyk.dep_graph.graph()["depGraph"]["graph"]["nodes"]) <= 1: + if len(bazel2snyk.dep_graph.graph().depGraph.graph.nodes) <= 1: logger.error( f"No {package_source} dependencies found for given target, please verify --bazel-target exists in the source data" ) @@ -293,11 +230,13 @@ def main( if prune_all: logger.info("Pruning graph ...") time.sleep(2) - bazel2snyk.prune_graph_all() + # bazel2snyk.prune_graph_all() + bazel2snyk.dep_graph.prune_graph_all() elif prune: time.sleep(2) logger.info("Smart pruning graph (experimental) ...") - bazel2snyk.prune_graph(20, 5) + # bazel2snyk.prune_graph(20, 5) + bazel2snyk.dep_graph.prune_graph(20, 5) return @@ -306,7 +245,9 @@ def print_graph(): """ Print the Snyk depGraph representation of the dependency graph """ - print(f"{json.dumps(bazel2snyk.dep_graph.graph(), indent=4)}") + # print(f"{json.dumps(bazel2snyk.dep_graph.graph(), indent=4)}") + # print({bazel2snyk.dep_graph.graph().model_dump_json(indent=4)}) + print(json.dumps(bazel2snyk.dep_graph.graph().model_dump(), indent=4)) @cli.command() @@ -329,7 +270,8 @@ def test( typer.echo("Testing depGraph via Snyk API ...", file=sys.stderr) response: requests.Response = snyk_client.post( - f"{DEPGRAPH_BASE_TEST_URL}{snyk_org_id}", body=bazel2snyk.dep_graph.graph() + f"{DEPGRAPH_BASE_TEST_URL}{snyk_org_id}", + body=bazel2snyk.dep_graph.graph().model_dump(), ) json_response = response.json() @@ -372,7 +314,8 @@ def monitor( typer.echo("Monitoring depGraph via Snyk API ...", file=sys.stderr) response: requests.Response = snyk_client.post( - f"{DEPGRAPH_BASE_MONITOR_URL}{snyk_org_id}", body=bazel2snyk.dep_graph.graph() + f"{DEPGRAPH_BASE_MONITOR_URL}{snyk_org_id}", + body=bazel2snyk.dep_graph.graph().model_dump(), ) json_response = response.json() diff --git a/bazel2snyk/depgraph.py b/bazel2snyk/depgraph.py index 07bc528..ba838a7 100644 --- a/bazel2snyk/depgraph.py +++ b/bazel2snyk/depgraph.py @@ -1,4 +1,47 @@ +import math from bazel2snyk import logger +from pydantic import BaseModel +from typing import List + + +class Info(BaseModel): + name: str + version: str + + +class Pkg(BaseModel): + id: str + info: Info + + +class Dep(BaseModel): + nodeId: str + + +class Node(BaseModel): + nodeId: str + pkgId: str + deps: List[Dep] + + +class Graph(BaseModel): + rootNodeId: str + nodes: List[Node] + + +class PkgManager(BaseModel): + name: str + + +class DepGraphData(BaseModel): + schemaVersion: str = "1.2.0" + pkgManager: PkgManager + pkgs: List[Pkg] + graph: Graph + + +class DepGraphRoot(BaseModel): + depGraph: DepGraphData class DepGraph(object): @@ -8,28 +51,43 @@ def __init__( ): self.pkg_manager_name = pkg_manager_name self.meta_pkg_id = "meta-common-packages@meta" - self.dep_graph = { - "depGraph": { - "schemaVersion": "1.2.0", - "pkgManager": {"name": self.pkg_manager_name}, - "pkgs": [ - {"id": "app@1.0.0", "info": {"name": "app", "version": "1.0.0"}} - ], - "graph": { - "rootNodeId": "root-node", - "nodes": [ - {"nodeId": "root-node", "pkgId": "app@1.0.0", "deps": []} - ], - }, - } - } + self.dep_graph = DepGraphRoot( + depGraph=DepGraphData( + pkgManager=PkgManager(name=self.pkg_manager_name), + pkgs=[Pkg(id="app@1.0.0", info=Info(name="app", version="1.0.0"))], + graph=Graph( + rootNodeId="root-node", + nodes=[Node(nodeId="root-node", pkgId="app@1.0.0", deps=[])], + ), + ) + ) + self._dep_path_counts = {} + self._target_path_counts = {} def graph(self): return self.dep_graph + def set_dep_graph(self, dep_graph): + # self.dep_graph = dep_graph + self.dep_graph: DepGraphRoot = dep_graph + def get_root_node(self): - graph = self.dep_graph["depGraph"]["graph"] - return graph["rootNodeId"] + graph = self.dep_graph.depGraph.graph + return graph.rootNodeId + + def _increment_dep_path_count(self, dep: str): + """ + Increment dep path counts which is later + used if the dep graph needs to be pruned + """ + self._dep_path_counts[dep] = self._dep_path_counts.get(dep, 0) + 1 + + def _increment_target_path_count(self, dep: str): + """ + Increment target path counts which is later + used if the dep graph needs to be pruned + """ + self._target_path_counts[dep] = self._target_path_counts.get(dep, 0) + 1 def has_pkg(self, pkg_id: str) -> bool: # pkg_id should be in the form of name@version @@ -40,12 +98,9 @@ def has_pkg(self, pkg_id: str) -> bool: name = pkg_id[:k] version = pkg_id[k + 1 :] - pkg_entry = { - "id": f"{name}@{version}", - "info": {"name": name, "version": version}, - } + pkg_entry = Pkg(id=f"{name}@{version}", info=Info(name=name, version=version)) - if pkg_entry in self.dep_graph["depGraph"]["pkgs"]: + if pkg_entry in self.dep_graph.depGraph.pkgs: return True return False @@ -57,13 +112,10 @@ def add_pkg(self, pkg_id: str) -> bool: name = pkg_id[:k] version = pkg_id[k + 1 :] - pkg_entry = { - "id": f"{name}@{version}", - "info": {"name": name, "version": version}, - } + pkg_entry = Pkg(id=f"{name}@{version}", info=Info(name=name, version=version)) if not self.has_pkg(pkg_id): - self.dep_graph["depGraph"]["pkgs"].append(pkg_entry) + self.dep_graph.depGraph.pkgs.append(pkg_entry) return True return False @@ -72,30 +124,38 @@ def add_dep(self, child_node_id: str, parent_node_id: str = None): logger.debug(f"{parent_node_id=}") parent_node = None - graph_subtree = self.dep_graph["depGraph"]["graph"]["nodes"] + if ( + child_node_id + and parent_node_id != self.meta_pkg_id + and child_node_id != self.meta_pkg_id + ): + if not child_node_id.startswith("//"): + self._increment_dep_path_count(child_node_id) + else: + self._increment_target_path_count(child_node_id) + + graph_subtree = self.dep_graph.depGraph.graph.nodes # first check if element already exists at the specified parent_node_id if not parent_node_id: logger.debug( - f"root node, checking for {self.get_root_node()=} in {self.dep_graph['depGraph']['graph']['nodes']}" + f"root node, checking for {self.get_root_node()=} in {self.dep_graph.depGraph.graph.nodes}" ) parent_node = [ x - for x in self.dep_graph["depGraph"]["graph"]["nodes"] - if self.get_root_node() == x["nodeId"] + for x in self.dep_graph.depGraph.graph.nodes + if self.get_root_node() == x.nodeId ] else: - # logger.debug(f"not root-node, looking for subtree match for {parent_node_id=} in {self.dep_graph['depGraph']['graph']['nodes']=}") logger.debug( - f"not root-node, looking for subtree match for {parent_node_id=} in {graph_subtree=}" + f"not root-node, looking for subtree match for {parent_node_id=} in graph_subtree" ) - # for subtree_node in self.dep_graph['depGraph']['graph']['nodes'][0]['deps']: for subtree_node in graph_subtree: logger.debug(f"{subtree_node=}") logger.debug( - f"checking if parent_node: {parent_node_id} == {subtree_node['nodeId']}" + f"checking if parent_node: {parent_node_id} == {subtree_node.nodeId}" ) - if parent_node_id == subtree_node["nodeId"]: + if parent_node_id == subtree_node.nodeId: parent_node = [subtree_node] break @@ -104,32 +164,30 @@ def add_dep(self, child_node_id: str, parent_node_id: str = None): if parent_node: if child_node_id: - # append the dep,only if it doesn't already exist as a child - dep_entry = {"nodeId": child_node_id} - if "deps" not in parent_node[0]: - parent_node[0]["deps"] = [dep_entry] + dep_entry = Dep(nodeId=child_node_id) - elif dep_entry not in parent_node[0]["deps"]: - parent_node[0]["deps"].append(dep_entry) + # append the dep, only if it doesn't already exist as a child + if dep_entry not in parent_node[0].deps: + parent_node[0].deps.append(dep_entry) - else: # parent node not found, so add a new entry with empty deps + else: # parent node not found logger.debug(f"parent_node not found for {parent_node_id=}") if child_node_id: - graph_entry = { - "nodeId": parent_node_id, - "pkgId": parent_node_id, - "deps": [{"nodeId": child_node_id}], - } + graph_entry = Node( + nodeId=parent_node_id, + pkgId=parent_node_id, + deps=[Dep(nodeId=child_node_id)], + ) logger.debug(f"setting graph entry with child to {graph_entry}") else: - graph_entry = { - "nodeId": parent_node_id, - "pkgId": parent_node_id, - "deps": [], - } + graph_entry = Node( + nodeId=parent_node_id, + pkgId=parent_node_id, + deps=[], + ) logger.debug(f"setting graph entry with no children to {graph_entry}") - self.dep_graph["depGraph"]["graph"]["nodes"].append(graph_entry) + self.dep_graph.depGraph.graph.nodes.append(graph_entry) def remove_dep(self, child_node_id: str, parent_node_id: str = None): logger.debug(f"removing dep {child_node_id}") @@ -138,36 +196,38 @@ def remove_dep(self, child_node_id: str, parent_node_id: str = None): # if parent_node_id: # raise Exception("Not implemented") - graph_subtree = self.dep_graph["depGraph"]["graph"]["nodes"] + graph_subtree = self.dep_graph.depGraph.graph.nodes - # print(f"{graph_subtree=}") + # logger.debug(f"{graph_subtree=}") for subtree_node in graph_subtree: logger.debug(f"{subtree_node=}") logger.debug( - f"checking if {subtree_node['nodeId']} has child dep {child_node_id}" + f"checking if {subtree_node.nodeId} has child dep {child_node_id}" ) - child_node_entry = {"nodeId": f"{child_node_id}"} + child_node_entry = Dep(nodeId=child_node_id) logger.debug(f"deps entry to remove: {child_node_entry}") - if child_node_entry in subtree_node["deps"]: + if child_node_entry in subtree_node.deps: logger.debug(f"removing {child_node_entry} from subtree") - subtree_node["deps"].remove(child_node_entry) + subtree_node.deps.remove(child_node_entry) def set_root_node_package(self, root_node: str): logger.debug(f"{root_node=}") - root_pkg = self.dep_graph["depGraph"]["pkgs"][0] - root_pkg["id"] = f"{root_node}" + + # root_pkg = self.dep_graph.depGraph.pkgs[0] + root_pkg = self.dep_graph.depGraph.pkgs[0] + root_pkg.id = root_node root_node_split = root_node.split("@") - root_pkg["info"]["name"] = f"{root_node_split[0]}" - root_pkg["info"]["version"] = f"{root_node_split[1]}" + root_pkg.info.name = root_node_split[0] + root_pkg.info.version = root_node_split[1] - graph = self.dep_graph["depGraph"]["graph"] - graph["rootNodeId"] = root_node - graph["nodes"][0]["nodeId"] = root_node - graph["nodes"][0]["pkgId"] = root_node + graph = self.dep_graph.depGraph.graph + graph.rootNodeId = root_node + graph.nodes[0].nodeId = root_node + graph.nodes[0].pkgId = root_node def prune_dep(self, node_id: str): # create meta-common-packages@meta pkg if does not already exist @@ -180,45 +240,86 @@ def prune_dep(self, node_id: str): # add to meta-common-packages@meta self.add_dep(node_id, self.meta_pkg_id) + def prune_graph( + self, instance_count_threshold: int, instance_percentage_threshold: int + ): + """ + Prune graph according to threshold of duplicated transitive dependencies + """ + self._dep_path_counts.update(self._target_path_counts) + combined_path_counts = self._dep_path_counts + + total_item_count = 0 + + for dep, instances in combined_path_counts.items(): + total_item_count += instances + logger.debug(f"{total_item_count=}") + + for dep, instances in combined_path_counts.items(): + if instances > 1: + instance_percentage = math.ceil((instances / total_item_count) * 100) + if ( + instances > instance_count_threshold + or instance_percentage > instance_percentage_threshold + ): + logger.info( + f"pruning {dep} ({instances=}/{instance_count_threshold},{instance_percentage=}/{instance_percentage_threshold})" + ) + self.prune_dep(dep) + + def prune_graph_all(self): + """ + Prune graph whenever OSS dependencies are repeated more than 2x + or when bazel target dependencies are repeated more than 10x + """ + for dep, instances in self._dep_path_counts.items(): + if instances > 2: + logger.info(f"pruning {dep} ({instances=})") + self.prune_dep(dep) + + for dep, instances in self._target_path_counts.items(): + if instances > 10: + logger.info(f"pruning {dep} ({instances=})") + self.prune_dep(dep) + def rename_depgraph(self, new_name): - root_node_id = self.dep_graph["depGraph"]["graph"]["rootNodeId"] + root_node_id = self.dep_graph.depGraph.graph.rootNodeId root_node_index = self._find_node_index( - self.dep_graph["depGraph"]["graph"], root_node_id + self.dep_graph.depGraph.graph, root_node_id ) - old_package_name, package_version = self.dep_graph["depGraph"]["graph"][ - "nodes" - ][root_node_index]["pkgId"].split("@") + old_package_name, package_version = self.dep_graph.depGraph.graph.nodes[ + root_node_index + ].pkgId.split("@") # Rename the root note - self.dep_graph["depGraph"]["graph"]["nodes"][root_node_index]["nodeId"] = ( - new_name - ) - self.dep_graph["depGraph"]["graph"]["nodes"][root_node_index]["pkgId"] = ( - f"{new_name}@{package_version}" - ) + self.dep_graph.depGraph.graph.nodes[root_node_index].nodeId = new_name + self.dep_graph.depGraph.graph.nodes[ + root_node_index + ].pkgId = f"{new_name}@{package_version}" # Rename the packages target_package_index = self._find_pkg_index( - self.dep_graph["depGraph"]["pkgs"], f"{old_package_name}@{package_version}" - ) - self.dep_graph["depGraph"]["pkgs"][target_package_index]["id"] = ( - f"{new_name}@{package_version}" - ) - self.dep_graph["depGraph"]["pkgs"][target_package_index]["info"]["name"] = ( - new_name + self.dep_graph.depGraph.pkgs, f"{old_package_name}@{package_version}" ) + self.dep_graph.depGraph.pkgs[ + target_package_index + ].id = f"{new_name}@{package_version}" + self.dep_graph.depGraph.pkgs[target_package_index].info.name = new_name # Finally, rename the rootNodeId - self.dep_graph["depGraph"]["graph"]["rootNodeId"] = new_name - - def _find_node_index(self, graph, search_node_id): - for node in graph.get("nodes", []): - if node.get("nodeId") == search_node_id: - return graph.get("nodes", []).index(node) + self.dep_graph.depGraph.graph.rootNodeId = new_name + + def _find_node_index(self, graph: Graph, search_node_id): + # for node in graph.get("nodes", []): + for node in graph.nodes: + # if node.get("nodeId") == search_node_id: + if node.nodeId == search_node_id: + # return graph.get("nodes", []).index(node) + return graph.nodes.index(node) return -1 - def _find_pkg_index(self, pkgs, search_id): + def _find_pkg_index(self, pkgs: List[Pkg], search_id): for pkg in pkgs: - if pkg["id"] == search_id: + if pkg.id == search_id: return pkgs.index(pkg) return -1 diff --git a/bazel2snyk/test/__init__.py b/bazel2snyk/test/__init__.py index e42f7eb..e8fe068 100644 --- a/bazel2snyk/test/__init__.py +++ b/bazel2snyk/test/__init__.py @@ -1,5 +1,20 @@ from bazel2snyk import BASE_PATH +from bazel2snyk.cli import BazelPackageSource FIXTURES_PATH = f"{BASE_PATH}/test/fixtures" + +PIP_PACKAGE_SOURCE: BazelPackageSource = "pip" +MAVEN_PACKAGE_SOURCE: BazelPackageSource = "maven" + PIP_FIXTURES_PATH = f"{FIXTURES_PATH}/pip" +PIP_BAZEL_XML_FILE = f"{PIP_FIXTURES_PATH}/pip.xml" +PIP_BAZEL_ALT_XML_FILE = f"{PIP_FIXTURES_PATH}/pip_alt_repo_name.xml" + MAVEN_FIXTURES_PATH = f"{FIXTURES_PATH}/maven" +MAVEN_BAZEL_XML_FILE = f"{MAVEN_FIXTURES_PATH}/maven.xml" +MAVEN_BAZEL_ALT_XML_FILE = f"{MAVEN_FIXTURES_PATH}/maven_alt_repo_name.xml" +MAVEN_BAZEL_MULTIPLE_XML_FILE = f"{MAVEN_FIXTURES_PATH}/maven_multiple_targets.xml" + +MAVEN_DEPGRAPH = f"{MAVEN_FIXTURES_PATH}/maven_depgraph.json" +MAVEN_DEPGRAPH_PRUNED = f"{MAVEN_FIXTURES_PATH}/maven_depgraph_pruned.json" +MAVEN_DEPGRAPH_PRUNED_ALL = f"{MAVEN_FIXTURES_PATH}/maven_depgraph_pruned_all.json" diff --git a/bazel2snyk/test/fixtures/maven/maven_depgraph.json b/bazel2snyk/test/fixtures/maven/maven_depgraph.json new file mode 100644 index 0000000..ff8828a --- /dev/null +++ b/bazel2snyk/test/fixtures/maven/maven_depgraph.json @@ -0,0 +1,40558 @@ +{ + "depGraph": { + "schemaVersion": "1.2.0", + "pkgManager": { + "name": "maven" + }, + "pkgs": [ + { + "id": "//app:main@bazel", + "info": { + "name": "//app:main", + "version": "bazel" + } + }, + { + "id": "//app/config:main@bazel", + "info": { + "name": "//app/config:main", + "version": "bazel" + } + }, + { + "id": "//core_interfaces:main@bazel", + "info": { + "name": "//core_interfaces:main", + "version": "bazel" + } + }, + { + "id": "//crypto:pojos@bazel", + "info": { + "name": "//crypto:pojos", + "version": "bazel" + } + }, + { + "id": "//database:enums@bazel", + "info": { + "name": "//database:enums", + "version": "bazel" + } + }, + { + "id": "com.google.code.findbugs:jsr305@3.0.2", + "info": { + "name": "com.google.code.findbugs:jsr305", + "version": "3.0.2" + } + }, + { + "id": "//database:schema_migration_model@bazel", + "info": { + "name": "//database:schema_migration_model", + "version": "bazel" + } + }, + { + "id": "//schema_migration:enum_types@bazel", + "info": { + "name": "//schema_migration:enum_types", + "version": "bazel" + } + }, + { + "id": "com.fasterxml.jackson.core:jackson-databind@2.9.8", + "info": { + "name": "com.fasterxml.jackson.core:jackson-databind", + "version": "2.9.8" + } + }, + { + "id": "com.fasterxml.jackson.core:jackson-annotations@2.9.8", + "info": { + "name": "com.fasterxml.jackson.core:jackson-annotations", + "version": "2.9.8" + } + }, + { + "id": "com.fasterxml.jackson.core:jackson-core@2.9.8", + "info": { + "name": "com.fasterxml.jackson.core:jackson-core", + "version": "2.9.8" + } + }, + { + "id": "//events:event_hub@bazel", + "info": { + "name": "//events:event_hub", + "version": "bazel" + } + }, + { + "id": "//logger:main@bazel", + "info": { + "name": "//logger:main", + "version": "bazel" + } + }, + { + "id": "//crypto:main@bazel", + "info": { + "name": "//crypto:main", + "version": "bazel" + } + }, + { + "id": "//json:main@bazel", + "info": { + "name": "//json:main", + "version": "bazel" + } + }, + { + "id": "@com_fasterxml_jackson_dataformat_jackson_dataformat_csv//:main@bazel", + "info": { + "name": "@com_fasterxml_jackson_dataformat_jackson_dataformat_csv//:main", + "version": "bazel" + } + }, + { + "id": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8", + "info": { + "name": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8", + "version": "2.9.8" + } + }, + { + "id": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8", + "info": { + "name": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310", + "version": "2.9.8" + } + }, + { + "id": "com.google.guava:guava@25.1-jre", + "info": { + "name": "com.google.guava:guava", + "version": "25.1-jre" + } + }, + { + "id": "com.google.errorprone:error_prone_annotations@2.13.1", + "info": { + "name": "com.google.errorprone:error_prone_annotations", + "version": "2.13.1" + } + }, + { + "id": "com.google.j2objc:j2objc-annotations@1.3", + "info": { + "name": "com.google.j2objc:j2objc-annotations", + "version": "1.3" + } + }, + { + "id": "org.checkerframework:checker-qual@3.22.0", + "info": { + "name": "org.checkerframework:checker-qual", + "version": "3.22.0" + } + }, + { + "id": "org.codehaus.mojo:animal-sniffer-annotations@1.21", + "info": { + "name": "org.codehaus.mojo:animal-sniffer-annotations", + "version": "1.21" + } + }, + { + "id": "//jwt:main@bazel", + "info": { + "name": "//jwt:main", + "version": "bazel" + } + }, + { + "id": "commons-codec:commons-codec@1.10", + "info": { + "name": "commons-codec:commons-codec", + "version": "1.10" + } + }, + { + "id": "//logger:acmecorp_logger@bazel", + "info": { + "name": "//logger:acmecorp_logger", + "version": "bazel" + } + }, + { + "id": "//utils/time:main@bazel", + "info": { + "name": "//utils/time:main", + "version": "bazel" + } + }, + { + "id": "//utils/exceptions:main@bazel", + "info": { + "name": "//utils/exceptions:main", + "version": "bazel" + } + }, + { + "id": "com.amazonaws:aws-encryption-sdk-java@1.6.1", + "info": { + "name": "com.amazonaws:aws-encryption-sdk-java", + "version": "1.6.1" + } + }, + { + "id": "org.apache.commons:commons-lang3@3.12.0", + "info": { + "name": "org.apache.commons:commons-lang3", + "version": "3.12.0" + } + }, + { + "id": "org.bouncycastle:bcprov-ext-jdk15on@1.70", + "info": { + "name": "org.bouncycastle:bcprov-ext-jdk15on", + "version": "1.70" + } + }, + { + "id": "com.google.api:gax@2.3.0", + "info": { + "name": "com.google.api:gax", + "version": "2.3.0" + } + }, + { + "id": "com.google.auth:google-auth-library-oauth2-http@0.22.0", + "info": { + "name": "com.google.auth:google-auth-library-oauth2-http", + "version": "0.22.0" + } + }, + { + "id": "com.google.http-client:google-http-client@1.39.2", + "info": { + "name": "com.google.http-client:google-http-client", + "version": "1.39.2" + } + }, + { + "id": "org.apache.httpcomponents:httpcore@4.4.13", + "info": { + "name": "org.apache.httpcomponents:httpcore", + "version": "4.4.13" + } + }, + { + "id": "org.apache.httpcomponents:httpclient@4.5.13", + "info": { + "name": "org.apache.httpcomponents:httpclient", + "version": "4.5.13" + } + }, + { + "id": "commons-logging:commons-logging@1.2", + "info": { + "name": "commons-logging:commons-logging", + "version": "1.2" + } + }, + { + "id": "io.opencensus:opencensus-contrib-http-util@0.11.1", + "info": { + "name": "io.opencensus:opencensus-contrib-http-util", + "version": "0.11.1" + } + }, + { + "id": "io.opencensus:opencensus-api@0.12.3", + "info": { + "name": "io.opencensus:opencensus-api", + "version": "0.12.3" + } + }, + { + "id": "io.grpc:grpc-context@1.32.2", + "info": { + "name": "io.grpc:grpc-context", + "version": "1.32.2" + } + }, + { + "id": "com.google.auto.value:auto-value-annotations@1.9", + "info": { + "name": "com.google.auto.value:auto-value-annotations", + "version": "1.9" + } + }, + { + "id": "com.google.http-client:google-http-client-jackson2@1.35.0", + "info": { + "name": "com.google.http-client:google-http-client-jackson2", + "version": "1.35.0" + } + }, + { + "id": "com.google.auth:google-auth-library-credentials@0.9.1", + "info": { + "name": "com.google.auth:google-auth-library-credentials", + "version": "0.9.1" + } + }, + { + "id": "com.google.api:api-common@1.9.0", + "info": { + "name": "com.google.api:api-common", + "version": "1.9.0" + } + }, + { + "id": "javax.annotation:javax.annotation-api@1.3.2", + "info": { + "name": "javax.annotation:javax.annotation-api", + "version": "1.3.2" + } + }, + { + "id": "org.threeten:threetenbp@1.3.3", + "info": { + "name": "org.threeten:threetenbp", + "version": "1.3.3" + } + }, + { + "id": "com.google.api:gax-grpc@2.3.0", + "info": { + "name": "com.google.api:gax-grpc", + "version": "2.3.0" + } + }, + { + "id": "io.grpc:grpc-stub@1.32.2", + "info": { + "name": "io.grpc:grpc-stub", + "version": "1.32.2" + } + }, + { + "id": "io.grpc:grpc-api@1.32.2", + "info": { + "name": "io.grpc:grpc-api", + "version": "1.32.2" + } + }, + { + "id": "io.grpc:grpc-auth@1.32.2", + "info": { + "name": "io.grpc:grpc-auth", + "version": "1.32.2" + } + }, + { + "id": "com.google.api.grpc:proto-google-common-protos@1.15.0", + "info": { + "name": "com.google.api.grpc:proto-google-common-protos", + "version": "1.15.0" + } + }, + { + "id": "com.google.protobuf:protobuf-java@3.18.2", + "info": { + "name": "com.google.protobuf:protobuf-java", + "version": "3.18.2" + } + }, + { + "id": "io.grpc:grpc-alts@1.46.0", + "info": { + "name": "io.grpc:grpc-alts", + "version": "1.46.0" + } + }, + { + "id": "org.conscrypt:conscrypt-openjdk-uber@2.5.1", + "info": { + "name": "org.conscrypt:conscrypt-openjdk-uber", + "version": "2.5.1" + } + }, + { + "id": "io.grpc:grpc-netty-shaded@1.32.2", + "info": { + "name": "io.grpc:grpc-netty-shaded", + "version": "1.32.2" + } + }, + { + "id": "io.grpc:grpc-core@1.32.2", + "info": { + "name": "io.grpc:grpc-core", + "version": "1.32.2" + } + }, + { + "id": "com.google.android:annotations@4.1.1.4", + "info": { + "name": "com.google.android:annotations", + "version": "4.1.1.4" + } + }, + { + "id": "com.google.code.gson:gson@2.9.0", + "info": { + "name": "com.google.code.gson:gson", + "version": "2.9.0" + } + }, + { + "id": "io.perfmark:perfmark-api@0.25.0", + "info": { + "name": "io.perfmark:perfmark-api", + "version": "0.25.0" + } + }, + { + "id": "io.grpc:grpc-grpclb@1.46.0", + "info": { + "name": "io.grpc:grpc-grpclb", + "version": "1.46.0" + } + }, + { + "id": "com.google.protobuf:protobuf-java-util@3.18.2", + "info": { + "name": "com.google.protobuf:protobuf-java-util", + "version": "3.18.2" + } + }, + { + "id": "io.grpc:grpc-protobuf@1.32.2", + "info": { + "name": "io.grpc:grpc-protobuf", + "version": "1.32.2" + } + }, + { + "id": "io.grpc:grpc-protobuf-lite@1.32.2", + "info": { + "name": "io.grpc:grpc-protobuf-lite", + "version": "1.32.2" + } + }, + { + "id": "com.google.protobuf:protobuf-javalite@3.12.0", + "info": { + "name": "com.google.protobuf:protobuf-javalite", + "version": "3.12.0" + } + }, + { + "id": "com.google.api.grpc:proto-google-cloud-kms-v1@0.61.0", + "info": { + "name": "com.google.api.grpc:proto-google-cloud-kms-v1", + "version": "0.61.0" + } + }, + { + "id": "com.google.api.grpc:proto-google-iam-v1@0.13.0", + "info": { + "name": "com.google.api.grpc:proto-google-iam-v1", + "version": "0.13.0" + } + }, + { + "id": "com.google.cloud:google-cloud-kms@1.13.0", + "info": { + "name": "com.google.cloud:google-cloud-kms", + "version": "1.13.0" + } + }, + { + "id": "com.google.cloud:google-cloud-core-grpc@1.19.0", + "info": { + "name": "com.google.cloud:google-cloud-core-grpc", + "version": "1.19.0" + } + }, + { + "id": "com.google.cloud:google-cloud-core@1.48.0", + "info": { + "name": "com.google.cloud:google-cloud-core", + "version": "1.48.0" + } + }, + { + "id": "joda-time:joda-time@2.9.2", + "info": { + "name": "joda-time:joda-time", + "version": "2.9.2" + } + }, + { + "id": "com.sun.xml.bind:jaxb-core@2.2.11", + "info": { + "name": "com.sun.xml.bind:jaxb-core", + "version": "2.2.11" + } + }, + { + "id": "com.sun.xml.bind:jaxb-impl@2.2.11", + "info": { + "name": "com.sun.xml.bind:jaxb-impl", + "version": "2.2.11" + } + }, + { + "id": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6", + "info": { + "name": "jakarta.ws.rs:jakarta.ws.rs-api", + "version": "2.1.6" + } + }, + { + "id": "javax.xml.bind:jaxb-api@2.2.2", + "info": { + "name": "javax.xml.bind:jaxb-api", + "version": "2.2.2" + } + }, + { + "id": "javax.activation:activation@1.1", + "info": { + "name": "javax.activation:activation", + "version": "1.1" + } + }, + { + "id": "javax.xml.stream:stax-api@1.0-2", + "info": { + "name": "javax.xml.stream:stax-api", + "version": "1.0-2" + } + }, + { + "id": "org.glassfish.hk2.external:jakarta.inject@2.6.1", + "info": { + "name": "org.glassfish.hk2.external:jakarta.inject", + "version": "2.6.1" + } + }, + { + "id": "//feature_flag:details@bazel", + "info": { + "name": "//feature_flag:details", + "version": "bazel" + } + }, + { + "id": "//globals:main@bazel", + "info": { + "name": "//globals:main", + "version": "bazel" + } + }, + { + "id": "//lambda:main@bazel", + "info": { + "name": "//lambda:main", + "version": "bazel" + } + }, + { + "id": "//warehouses/common:warehouse_type@bazel", + "info": { + "name": "//warehouses/common:warehouse_type", + "version": "bazel" + } + }, + { + "id": "//secred/client:main@bazel", + "info": { + "name": "//secred/client:main", + "version": "bazel" + } + }, + { + "id": "//secred/common:main@bazel", + "info": { + "name": "//secred/common:main", + "version": "bazel" + } + }, + { + "id": "//secrets/common:main@bazel", + "info": { + "name": "//secrets/common:main", + "version": "bazel" + } + }, + { + "id": "com.amazonaws:aws-java-sdk-core@1.12.84", + "info": { + "name": "com.amazonaws:aws-java-sdk-core", + "version": "1.12.84" + } + }, + { + "id": "com.fasterxml.jackson.dataformat:jackson-dataformat-cbor@2.9.8", + "info": { + "name": "com.fasterxml.jackson.dataformat:jackson-dataformat-cbor", + "version": "2.9.8" + } + }, + { + "id": "software.amazon.ion:ion-java@1.0.2", + "info": { + "name": "software.amazon.ion:ion-java", + "version": "1.0.2" + } + }, + { + "id": "//util:main@bazel", + "info": { + "name": "//util:main", + "version": "bazel" + } + }, + { + "id": "com.fasterxml.jackson.dataformat:jackson-dataformat-yaml@2.9.8", + "info": { + "name": "com.fasterxml.jackson.dataformat:jackson-dataformat-yaml", + "version": "2.9.8" + } + }, + { + "id": "org.yaml:snakeyaml@1.23", + "info": { + "name": "org.yaml:snakeyaml", + "version": "1.23" + } + }, + { + "id": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8", + "info": { + "name": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider", + "version": "2.9.8" + } + }, + { + "id": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-base@2.9.8", + "info": { + "name": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-base", + "version": "2.9.8" + } + }, + { + "id": "com.fasterxml.jackson.module:jackson-module-jaxb-annotations@2.9.8", + "info": { + "name": "com.fasterxml.jackson.module:jackson-module-jaxb-annotations", + "version": "2.9.8" + } + }, + { + "id": "com.intellij:annotations@12.0", + "info": { + "name": "com.intellij:annotations", + "version": "12.0" + } + }, + { + "id": "io.netty:netty-buffer@4.1.50.Final", + "info": { + "name": "io.netty:netty-buffer", + "version": "4.1.50.Final" + } + }, + { + "id": "io.netty:netty-common@4.1.45.Final", + "info": { + "name": "io.netty:netty-common", + "version": "4.1.45.Final" + } + }, + { + "id": "javax.xml.soap:javax.xml.soap-api@1.4.0", + "info": { + "name": "javax.xml.soap:javax.xml.soap-api", + "version": "1.4.0" + } + }, + { + "id": "org.bouncycastle:bcpkix-jdk15on@1.70", + "info": { + "name": "org.bouncycastle:bcpkix-jdk15on", + "version": "1.70" + } + }, + { + "id": "org.bouncycastle:bcprov-jdk15on@1.70", + "info": { + "name": "org.bouncycastle:bcprov-jdk15on", + "version": "1.70" + } + }, + { + "id": "org.bouncycastle:bcutil-jdk15on:jar@1.70", + "info": { + "name": "org.bouncycastle:bcutil-jdk15on:jar", + "version": "1.70" + } + }, + { + "id": "org.bouncycastle:bcprov-jdk15to18@1.70", + "info": { + "name": "org.bouncycastle:bcprov-jdk15to18", + "version": "1.70" + } + }, + { + "id": "org.glassfish.jersey.core:jersey-client@2.31", + "info": { + "name": "org.glassfish.jersey.core:jersey-client", + "version": "2.31" + } + }, + { + "id": "org.glassfish.jersey.core:jersey-common@2.31", + "info": { + "name": "org.glassfish.jersey.core:jersey-common", + "version": "2.31" + } + }, + { + "id": "org.glassfish.hk2:osgi-resource-locator@1.0.3", + "info": { + "name": "org.glassfish.hk2:osgi-resource-locator", + "version": "1.0.3" + } + }, + { + "id": "jakarta.annotation:jakarta.annotation-api@1.3.5", + "info": { + "name": "jakarta.annotation:jakarta.annotation-api", + "version": "1.3.5" + } + }, + { + "id": "com.sun.activation:jakarta.activation@2.0.1", + "info": { + "name": "com.sun.activation:jakarta.activation", + "version": "2.0.1" + } + }, + { + "id": "org.jooq:jool-java-8@0.9.14", + "info": { + "name": "org.jooq:jool-java-8", + "version": "0.9.14" + } + }, + { + "id": "commons-configuration:commons-configuration@1.10", + "info": { + "name": "commons-configuration:commons-configuration", + "version": "1.10" + } + }, + { + "id": "commons-lang:commons-lang@2.6", + "info": { + "name": "commons-lang:commons-lang", + "version": "2.6" + } + }, + { + "id": "org.glassfish.jersey.connectors:jersey-apache-connector@2.31", + "info": { + "name": "org.glassfish.jersey.connectors:jersey-apache-connector", + "version": "2.31" + } + }, + { + "id": "//secred/util:main@bazel", + "info": { + "name": "//secred/util:main", + "version": "bazel" + } + }, + { + "id": "//database:credential_models@bazel", + "info": { + "name": "//database:credential_models", + "version": "bazel" + } + }, + { + "id": "//secrets/services:main@bazel", + "info": { + "name": "//secrets/services:main", + "version": "bazel" + } + }, + { + "id": "org.json:json@20171018", + "info": { + "name": "org.json:json", + "version": "20171018" + } + }, + { + "id": "//feature_flag:main@bazel", + "info": { + "name": "//feature_flag:main", + "version": "bazel" + } + }, + { + "id": "//database:flags@bazel", + "info": { + "name": "//database:flags", + "version": "bazel" + } + }, + { + "id": "//database:postgresql_jdbc_fix@bazel", + "info": { + "name": "//database:postgresql_jdbc_fix", + "version": "bazel" + } + }, + { + "id": "org.postgresql:postgresql@42.3.3", + "info": { + "name": "org.postgresql:postgresql", + "version": "42.3.3" + } + }, + { + "id": "//api/db:api_production_datasource@bazel", + "info": { + "name": "//api/db:api_production_datasource", + "version": "bazel" + } + }, + { + "id": "com.zaxxer:HikariCP@3.4.1", + "info": { + "name": "com.zaxxer:HikariCP", + "version": "3.4.1" + } + }, + { + "id": "org.slf4j:slf4j-api@1.7.13", + "info": { + "name": "org.slf4j:slf4j-api", + "version": "1.7.13" + } + }, + { + "id": "commons-io:commons-io@2.4", + "info": { + "name": "commons-io:commons-io", + "version": "2.4" + } + }, + { + "id": "//database:data_sources@bazel", + "info": { + "name": "//database:data_sources", + "version": "bazel" + } + }, + { + "id": "com.mchange:c3p0@0.9.5.1", + "info": { + "name": "com.mchange:c3p0", + "version": "0.9.5.1" + } + }, + { + "id": "com.mchange:mchange-commons-java@0.2.10", + "info": { + "name": "com.mchange:mchange-commons-java", + "version": "0.2.10" + } + }, + { + "id": "//database/exceptions:main@bazel", + "info": { + "name": "//database/exceptions:main", + "version": "bazel" + } + }, + { + "id": "//utils/nullability:main@bazel", + "info": { + "name": "//utils/nullability:main", + "version": "bazel" + } + }, + { + "id": "//dockerized/postgres:main@bazel", + "info": { + "name": "//dockerized/postgres:main", + "version": "bazel" + } + }, + { + "id": "//dockerized/common:main@bazel", + "info": { + "name": "//dockerized/common:main", + "version": "bazel" + } + }, + { + "id": "//metal:main@bazel", + "info": { + "name": "//metal:main", + "version": "bazel" + } + }, + { + "id": "com.amazonaws:aws-java-sdk-logs@1.12.84", + "info": { + "name": "com.amazonaws:aws-java-sdk-logs", + "version": "1.12.84" + } + }, + { + "id": "com.amazonaws:jmespath-java@1.11.91", + "info": { + "name": "com.amazonaws:jmespath-java", + "version": "1.11.91" + } + }, + { + "id": "com.amazonaws:aws-java-sdk-resourcegroupstaggingapi@1.12.84", + "info": { + "name": "com.amazonaws:aws-java-sdk-resourcegroupstaggingapi", + "version": "1.12.84" + } + }, + { + "id": "com.amazonaws:aws-java-sdk-s3@1.12.84", + "info": { + "name": "com.amazonaws:aws-java-sdk-s3", + "version": "1.12.84" + } + }, + { + "id": "com.amazonaws:aws-java-sdk-kms@1.12.84", + "info": { + "name": "com.amazonaws:aws-java-sdk-kms", + "version": "1.12.84" + } + }, + { + "id": "//newrelic_utils:donkey_logs_url_builder@bazel", + "info": { + "name": "//newrelic_utils:donkey_logs_url_builder", + "version": "bazel" + } + }, + { + "id": "//slack:main@bazel", + "info": { + "name": "//slack:main", + "version": "bazel" + } + }, + { + "id": "//http:main@bazel", + "info": { + "name": "//http:main", + "version": "bazel" + } + }, + { + "id": "javax.servlet:javax.servlet-api@3.1.0", + "info": { + "name": "javax.servlet:javax.servlet-api", + "version": "3.1.0" + } + }, + { + "id": "org.eclipse.jetty:jetty-server@9.4.40.v20210413", + "info": { + "name": "org.eclipse.jetty:jetty-server", + "version": "9.4.40.v20210413" + } + }, + { + "id": "org.eclipse.jetty:jetty-http@9.4.40.v20210413", + "info": { + "name": "org.eclipse.jetty:jetty-http", + "version": "9.4.40.v20210413" + } + }, + { + "id": "org.eclipse.jetty:jetty-io@9.4.40.v20210413", + "info": { + "name": "org.eclipse.jetty:jetty-io", + "version": "9.4.40.v20210413" + } + }, + { + "id": "org.eclipse.jetty:jetty-util@9.4.40.v20210413", + "info": { + "name": "org.eclipse.jetty:jetty-util", + "version": "9.4.40.v20210413" + } + }, + { + "id": "org.glassfish.hk2:hk2-api@2.6.1", + "info": { + "name": "org.glassfish.hk2:hk2-api", + "version": "2.6.1" + } + }, + { + "id": "org.glassfish.hk2:hk2-utils@2.6.1", + "info": { + "name": "org.glassfish.hk2:hk2-utils", + "version": "2.6.1" + } + }, + { + "id": "org.glassfish.hk2.external:aopalliance-repackaged@2.6.1", + "info": { + "name": "org.glassfish.hk2.external:aopalliance-repackaged", + "version": "2.6.1" + } + }, + { + "id": "org.glassfish.jersey.core:jersey-server@2.31", + "info": { + "name": "org.glassfish.jersey.core:jersey-server", + "version": "2.31" + } + }, + { + "id": "org.glassfish.jersey.media:jersey-media-jaxb@2.31", + "info": { + "name": "org.glassfish.jersey.media:jersey-media-jaxb", + "version": "2.31" + } + }, + { + "id": "jakarta.validation:jakarta.validation-api@2.0.2", + "info": { + "name": "jakarta.validation:jakarta.validation-api", + "version": "2.0.2" + } + }, + { + "id": "jakarta.xml.bind:jakarta.xml.bind-api@3.0.1", + "info": { + "name": "jakarta.xml.bind:jakarta.xml.bind-api", + "version": "3.0.1" + } + }, + { + "id": "org.glassfish.jersey.inject:jersey-hk2@2.31", + "info": { + "name": "org.glassfish.jersey.inject:jersey-hk2", + "version": "2.31" + } + }, + { + "id": "org.glassfish.hk2:hk2-locator@2.6.1", + "info": { + "name": "org.glassfish.hk2:hk2-locator", + "version": "2.6.1" + } + }, + { + "id": "org.javassist:javassist@3.21.0-GA", + "info": { + "name": "org.javassist:javassist", + "version": "3.21.0-GA" + } + }, + { + "id": "//forms:main@bazel", + "info": { + "name": "//forms:main", + "version": "bazel" + } + }, + { + "id": "//app:docs_deps@bazel", + "info": { + "name": "//app:docs_deps", + "version": "bazel" + } + }, + { + "id": "//heartbeat:main@bazel", + "info": { + "name": "//heartbeat:main", + "version": "bazel" + } + }, + { + "id": "//markdown:main@bazel", + "info": { + "name": "//markdown:main", + "version": "bazel" + } + }, + { + "id": "org.apache.velocity:velocity@1.7", + "info": { + "name": "org.apache.velocity:velocity", + "version": "1.7" + } + }, + { + "id": "commons-collections:commons-collections@3.2.2", + "info": { + "name": "commons-collections:commons-collections", + "version": "3.2.2" + } + }, + { + "id": "org.pegdown:pegdown@1.5.0", + "info": { + "name": "org.pegdown:pegdown", + "version": "1.5.0" + } + }, + { + "id": "org.parboiled:parboiled-java@1.2.0", + "info": { + "name": "org.parboiled:parboiled-java", + "version": "1.2.0" + } + }, + { + "id": "org.ow2.asm:asm-tree@8.0.1", + "info": { + "name": "org.ow2.asm:asm-tree", + "version": "8.0.1" + } + }, + { + "id": "org.ow2.asm:asm@8.0.1", + "info": { + "name": "org.ow2.asm:asm", + "version": "8.0.1" + } + }, + { + "id": "org.ow2.asm:asm-analysis@8.0.1", + "info": { + "name": "org.ow2.asm:asm-analysis", + "version": "8.0.1" + } + }, + { + "id": "org.ow2.asm:asm-util@8.0.1", + "info": { + "name": "org.ow2.asm:asm-util", + "version": "8.0.1" + } + }, + { + "id": "org.parboiled:parboiled-core@1.2.0", + "info": { + "name": "org.parboiled:parboiled-core", + "version": "1.2.0" + } + }, + { + "id": "//schema_migration:schema_migration_info@bazel", + "info": { + "name": "//schema_migration:schema_migration_info", + "version": "bazel" + } + }, + { + "id": "//core_interfaces:names_dep_to_avoid_cyclic_core_dep@bazel", + "info": { + "name": "//core_interfaces:names_dep_to_avoid_cyclic_core_dep", + "version": "bazel" + } + }, + { + "id": "com.ibm.icu:icu4j@62.1", + "info": { + "name": "com.ibm.icu:icu4j", + "version": "62.1" + } + }, + { + "id": "//sources/types:main@bazel", + "info": { + "name": "//sources/types:main", + "version": "bazel" + } + }, + { + "id": "//utils/validations:main@bazel", + "info": { + "name": "//utils/validations:main", + "version": "bazel" + } + }, + { + "id": "com.fasterxml.jackson.datatype:jackson-datatype-joda@2.9.8", + "info": { + "name": "com.fasterxml.jackson.datatype:jackson-datatype-joda", + "version": "2.9.8" + } + }, + { + "id": "org.glassfish.jersey.security:oauth1-client@2.31", + "info": { + "name": "org.glassfish.jersey.security:oauth1-client", + "version": "2.31" + } + }, + { + "id": "org.glassfish.jersey.security:oauth1-signature@2.31", + "info": { + "name": "org.glassfish.jersey.security:oauth1-signature", + "version": "2.31" + } + }, + { + "id": "//database:hikari@bazel", + "info": { + "name": "//database:hikari", + "version": "bazel" + } + }, + { + "id": "//database:main@bazel", + "info": { + "name": "//database:main", + "version": "bazel" + } + }, + { + "id": "//dbt/manifest:main@bazel", + "info": { + "name": "//dbt/manifest:main", + "version": "bazel" + } + }, + { + "id": "//dynamo:main@bazel", + "info": { + "name": "//dynamo:main", + "version": "bazel" + } + }, + { + "id": "//aws:main@bazel", + "info": { + "name": "//aws:main", + "version": "bazel" + } + }, + { + "id": "//cloud_storage:main@bazel", + "info": { + "name": "//cloud_storage:main", + "version": "bazel" + } + }, + { + "id": "//emails:core@bazel", + "info": { + "name": "//emails:core", + "version": "bazel" + } + }, + { + "id": "//secrets/system:main@bazel", + "info": { + "name": "//secrets/system:main", + "version": "bazel" + } + }, + { + "id": "com.amazonaws:aws-java-sdk-cloudtrail@1.12.84", + "info": { + "name": "com.amazonaws:aws-java-sdk-cloudtrail", + "version": "1.12.84" + } + }, + { + "id": "com.amazonaws:aws-java-sdk-config@1.12.84", + "info": { + "name": "com.amazonaws:aws-java-sdk-config", + "version": "1.12.84" + } + }, + { + "id": "com.amazonaws:aws-java-sdk-dynamodb@1.12.84", + "info": { + "name": "com.amazonaws:aws-java-sdk-dynamodb", + "version": "1.12.84" + } + }, + { + "id": "com.amazonaws:aws-java-sdk-ec2@1.12.84", + "info": { + "name": "com.amazonaws:aws-java-sdk-ec2", + "version": "1.12.84" + } + }, + { + "id": "com.amazonaws:aws-java-sdk-elasticloadbalancingv2@1.12.84", + "info": { + "name": "com.amazonaws:aws-java-sdk-elasticloadbalancingv2", + "version": "1.12.84" + } + }, + { + "id": "com.amazonaws:aws-java-sdk-glue@1.12.84", + "info": { + "name": "com.amazonaws:aws-java-sdk-glue", + "version": "1.12.84" + } + }, + { + "id": "com.amazonaws:aws-java-sdk-iam@1.12.84", + "info": { + "name": "com.amazonaws:aws-java-sdk-iam", + "version": "1.12.84" + } + }, + { + "id": "com.amazonaws:aws-java-sdk-route53@1.12.84", + "info": { + "name": "com.amazonaws:aws-java-sdk-route53", + "version": "1.12.84" + } + }, + { + "id": "com.amazonaws:aws-java-sdk-ses@1.12.84", + "info": { + "name": "com.amazonaws:aws-java-sdk-ses", + "version": "1.12.84" + } + }, + { + "id": "com.amazonaws:aws-java-sdk-sts@1.12.84", + "info": { + "name": "com.amazonaws:aws-java-sdk-sts", + "version": "1.12.84" + } + }, + { + "id": "//jackson_module_json_schema:main@bazel", + "info": { + "name": "//jackson_module_json_schema:main", + "version": "bazel" + } + }, + { + "id": "javax.validation:validation-api@1.1.0.Final", + "info": { + "name": "javax.validation:validation-api", + "version": "1.1.0.Final" + } + }, + { + "id": "//partners:main@bazel", + "info": { + "name": "//partners:main", + "version": "bazel" + } + }, + { + "id": "//webhook:main@bazel", + "info": { + "name": "//webhook:main", + "version": "bazel" + } + }, + { + "id": "//words:main@bazel", + "info": { + "name": "//words:main", + "version": "bazel" + } + }, + { + "id": "com.fasterxml.jackson.dataformat:jackson-dataformat-smile@2.9.8", + "info": { + "name": "com.fasterxml.jackson.dataformat:jackson-dataformat-smile", + "version": "2.9.8" + } + }, + { + "id": "com.google.api-client:google-api-client@1.31.1", + "info": { + "name": "com.google.api-client:google-api-client", + "version": "1.31.1" + } + }, + { + "id": "com.google.http-client:google-http-client-apache-v2@1.39.2", + "info": { + "name": "com.google.http-client:google-http-client-apache-v2", + "version": "1.39.2" + } + }, + { + "id": "com.google.oauth-client:google-oauth-client@1.23.0", + "info": { + "name": "com.google.oauth-client:google-oauth-client", + "version": "1.23.0" + } + }, + { + "id": "io.micrometer:micrometer-core@1.5.3", + "info": { + "name": "io.micrometer:micrometer-core", + "version": "1.5.3" + } + }, + { + "id": "org.hdrhistogram:HdrHistogram@2.1.12", + "info": { + "name": "org.hdrhistogram:HdrHistogram", + "version": "2.1.12" + } + }, + { + "id": "org.latencyutils:LatencyUtils@2.0.3", + "info": { + "name": "org.latencyutils:LatencyUtils", + "version": "2.0.3" + } + }, + { + "id": "//common:main@bazel", + "info": { + "name": "//common:main", + "version": "bazel" + } + }, + { + "id": "//utils/threading:main@bazel", + "info": { + "name": "//utils/threading:main", + "version": "bazel" + } + }, + { + "id": "//core_interfaces/cursor:main@bazel", + "info": { + "name": "//core_interfaces/cursor:main", + "version": "bazel" + } + }, + { + "id": "//database/resilience:main@bazel", + "info": { + "name": "//database/resilience:main", + "version": "bazel" + } + }, + { + "id": "//database:ssh_verify@bazel", + "info": { + "name": "//database:ssh_verify", + "version": "bazel" + } + }, + { + "id": "//database:tls_verify@bazel", + "info": { + "name": "//database:tls_verify", + "version": "bazel" + } + }, + { + "id": "//dbt/api/client:main@bazel", + "info": { + "name": "//dbt/api/client:main", + "version": "bazel" + } + }, + { + "id": "//http:basic_auth_credentials@bazel", + "info": { + "name": "//http:basic_auth_credentials", + "version": "bazel" + } + }, + { + "id": "//http:curl_request@bazel", + "info": { + "name": "//http:curl_request", + "version": "bazel" + } + }, + { + "id": "//utils/uri:main@bazel", + "info": { + "name": "//utils/uri:main", + "version": "bazel" + } + }, + { + "id": "//dbt/services:main@bazel", + "info": { + "name": "//dbt/services:main", + "version": "bazel" + } + }, + { + "id": "//dbt/git:main@bazel", + "info": { + "name": "//dbt/git:main", + "version": "bazel" + } + }, + { + "id": "org.eclipse.jgit:org.eclipse.jgit@6.2.0.202206071550-r", + "info": { + "name": "org.eclipse.jgit:org.eclipse.jgit", + "version": "6.2.0.202206071550-r" + } + }, + { + "id": "com.googlecode.javaewah:JavaEWAH@1.1.13", + "info": { + "name": "com.googlecode.javaewah:JavaEWAH", + "version": "1.1.13" + } + }, + { + "id": "org.eclipse.jgit:org.eclipse.jgit.ssh.apache@6.2.0.202206071550-r", + "info": { + "name": "org.eclipse.jgit:org.eclipse.jgit.ssh.apache", + "version": "6.2.0.202206071550-r" + } + }, + { + "id": "net.i2p.crypto:eddsa@0.3.0", + "info": { + "name": "net.i2p.crypto:eddsa", + "version": "0.3.0" + } + }, + { + "id": "org.apache.sshd:sshd-sftp@2.8.0", + "info": { + "name": "org.apache.sshd:sshd-sftp", + "version": "2.8.0" + } + }, + { + "id": "org.apache.sshd:sshd-core@2.8.0", + "info": { + "name": "org.apache.sshd:sshd-core", + "version": "2.8.0" + } + }, + { + "id": "org.apache.sshd:sshd-common@2.8.0", + "info": { + "name": "org.apache.sshd:sshd-common", + "version": "2.8.0" + } + }, + { + "id": "org.slf4j:jcl-over-slf4j@1.7.32", + "info": { + "name": "org.slf4j:jcl-over-slf4j", + "version": "1.7.32" + } + }, + { + "id": "org.apache.sshd:sshd-osgi@2.8.0", + "info": { + "name": "org.apache.sshd:sshd-osgi", + "version": "2.8.0" + } + }, + { + "id": "//emails:main@bazel", + "info": { + "name": "//emails:main", + "version": "bazel" + } + }, + { + "id": "//feature_flag:flags@bazel", + "info": { + "name": "//feature_flag:flags", + "version": "bazel" + } + }, + { + "id": "//feature_flag/service:main@bazel", + "info": { + "name": "//feature_flag/service:main", + "version": "bazel" + } + }, + { + "id": "com.hubspot.jinjava:jinjava@2.5.6", + "info": { + "name": "com.hubspot.jinjava:jinjava", + "version": "2.5.6" + } + }, + { + "id": "org.jsoup:jsoup@1.8.2", + "info": { + "name": "org.jsoup:jsoup", + "version": "1.8.2" + } + }, + { + "id": "ch.obermuhlner:big-math@2.0.0", + "info": { + "name": "ch.obermuhlner:big-math", + "version": "2.0.0" + } + }, + { + "id": "com.google.code.findbugs:annotations@3.0.1", + "info": { + "name": "com.google.code.findbugs:annotations", + "version": "3.0.1" + } + }, + { + "id": "com.google.re2j:re2j@1.5", + "info": { + "name": "com.google.re2j:re2j", + "version": "1.5" + } + }, + { + "id": "com.googlecode.java-ipv6:java-ipv6@0.17", + "info": { + "name": "com.googlecode.java-ipv6:java-ipv6", + "version": "0.17" + } + }, + { + "id": "commons-net:commons-net@3.3", + "info": { + "name": "commons-net:commons-net", + "version": "3.3" + } + }, + { + "id": "//services:main@bazel", + "info": { + "name": "//services:main", + "version": "bazel" + } + }, + { + "id": "//core_implementation:main@bazel", + "info": { + "name": "//core_implementation:main", + "version": "bazel" + } + }, + { + "id": "//core_implementation:operation_java_proto@bazel", + "info": { + "name": "//core_implementation:operation_java_proto", + "version": "bazel" + } + }, + { + "id": "//core_implementation:operation_proto@bazel", + "info": { + "name": "//core_implementation:operation_proto", + "version": "bazel" + } + }, + { + "id": "//core_implementation/proto:row_proto@bazel", + "info": { + "name": "//core_implementation/proto:row_proto", + "version": "bazel" + } + }, + { + "id": "//cloudwatch_metrics:main@bazel", + "info": { + "name": "//cloudwatch_metrics:main", + "version": "bazel" + } + }, + { + "id": "//google_cloud:main@bazel", + "info": { + "name": "//google_cloud:main", + "version": "bazel" + } + }, + { + "id": "@com_google_cloud_google_cloud_bigquerydatatransfer//:main@bazel", + "info": { + "name": "@com_google_cloud_google_cloud_bigquerydatatransfer//:main", + "version": "bazel" + } + }, + { + "id": "com.google.api.grpc:proto-google-cloud-monitoring-v3@1.75.0", + "info": { + "name": "com.google.api.grpc:proto-google-cloud-monitoring-v3", + "version": "1.75.0" + } + }, + { + "id": "com.google.api.grpc:proto-google-cloud-pubsub-v1@1.101.1", + "info": { + "name": "com.google.api.grpc:proto-google-cloud-pubsub-v1", + "version": "1.101.1" + } + }, + { + "id": "com.google.guava:listenablefuture@9999.0-empty-to-avoid-conflict-with-guava", + "info": { + "name": "com.google.guava:listenablefuture", + "version": "9999.0-empty-to-avoid-conflict-with-guava" + } + }, + { + "id": "com.google.guava:failureaccess@1.0.1", + "info": { + "name": "com.google.guava:failureaccess", + "version": "1.0.1" + } + }, + { + "id": "com.google.apis:google-api-services-bigquery@v2-rev459-1.25.0", + "info": { + "name": "com.google.apis:google-api-services-bigquery", + "version": "v2-rev459-1.25.0" + } + }, + { + "id": "com.google.apis:google-api-services-cloudresourcemanager@v1-rev495-1.23.0", + "info": { + "name": "com.google.apis:google-api-services-cloudresourcemanager", + "version": "v1-rev495-1.23.0" + } + }, + { + "id": "com.google.apis:google-api-services-iam@v1-rev193-1.22.0", + "info": { + "name": "com.google.apis:google-api-services-iam", + "version": "v1-rev193-1.22.0" + } + }, + { + "id": "com.google.apis:google-api-services-storage@v1-rev20200326-1.30.9", + "info": { + "name": "com.google.apis:google-api-services-storage", + "version": "v1-rev20200326-1.30.9" + } + }, + { + "id": "com.google.cloud:google-cloud-datastore@1.70.0", + "info": { + "name": "com.google.cloud:google-cloud-datastore", + "version": "1.70.0" + } + }, + { + "id": "com.google.cloud.datastore:datastore-v1-proto-client@1.6.0", + "info": { + "name": "com.google.cloud.datastore:datastore-v1-proto-client", + "version": "1.6.0" + } + }, + { + "id": "com.google.api.grpc:proto-google-cloud-datastore-v1@0.54.0", + "info": { + "name": "com.google.api.grpc:proto-google-cloud-datastore-v1", + "version": "0.54.0" + } + }, + { + "id": "com.google.http-client:google-http-client-protobuf@1.29.1", + "info": { + "name": "com.google.http-client:google-http-client-protobuf", + "version": "1.29.1" + } + }, + { + "id": "com.google.http-client:google-http-client-jackson@1.23.0", + "info": { + "name": "com.google.http-client:google-http-client-jackson", + "version": "1.23.0" + } + }, + { + "id": "org.codehaus.jackson:jackson-core-asl@1.9.13", + "info": { + "name": "org.codehaus.jackson:jackson-core-asl", + "version": "1.9.13" + } + }, + { + "id": "com.google.cloud:google-cloud-core-http@1.48.0", + "info": { + "name": "com.google.cloud:google-cloud-core-http", + "version": "1.48.0" + } + }, + { + "id": "com.google.http-client:google-http-client-appengine@1.23.0", + "info": { + "name": "com.google.http-client:google-http-client-appengine", + "version": "1.23.0" + } + }, + { + "id": "com.google.api:gax-httpjson@0.42.0", + "info": { + "name": "com.google.api:gax-httpjson", + "version": "0.42.0" + } + }, + { + "id": "com.google.cloud:google-cloud-monitoring@1.93.0", + "info": { + "name": "com.google.cloud:google-cloud-monitoring", + "version": "1.93.0" + } + }, + { + "id": "com.google.cloud:google-cloud-pubsub@1.119.1", + "info": { + "name": "com.google.cloud:google-cloud-pubsub", + "version": "1.119.1" + } + }, + { + "id": "io.opencensus:opencensus-proto@0.2.0", + "info": { + "name": "io.opencensus:opencensus-proto", + "version": "0.2.0" + } + }, + { + "id": "io.grpc:grpc-xds@1.46.0", + "info": { + "name": "io.grpc:grpc-xds", + "version": "1.46.0" + } + }, + { + "id": "io.grpc:grpc-services@1.46.0", + "info": { + "name": "io.grpc:grpc-services", + "version": "1.46.0" + } + }, + { + "id": "io.grpc:grpc-googleapis@1.46.0", + "info": { + "name": "io.grpc:grpc-googleapis", + "version": "1.46.0" + } + }, + { + "id": "com.google.http-client:google-http-client-gson@1.41.8", + "info": { + "name": "com.google.http-client:google-http-client-gson", + "version": "1.41.8" + } + }, + { + "id": "com.google.cloud:google-cloud-storage@1.108.0", + "info": { + "name": "com.google.cloud:google-cloud-storage", + "version": "1.108.0" + } + }, + { + "id": "io.jsonwebtoken:jjwt@0.9.0", + "info": { + "name": "io.jsonwebtoken:jjwt", + "version": "0.9.0" + } + }, + { + "id": "com.amazonaws:aws-java-sdk-cloudwatch@1.12.84", + "info": { + "name": "com.amazonaws:aws-java-sdk-cloudwatch", + "version": "1.12.84" + } + }, + { + "id": "//core_implementation/column_blocking:main@bazel", + "info": { + "name": "//core_implementation/column_blocking:main", + "version": "bazel" + } + }, + { + "id": "//core_implementation/proto:main@bazel", + "info": { + "name": "//core_implementation/proto:main", + "version": "bazel" + } + }, + { + "id": "//core_implementation/proto:row_java_proto@bazel", + "info": { + "name": "//core_implementation/proto:row_java_proto", + "version": "bazel" + } + }, + { + "id": "//utils/jdk:main@bazel", + "info": { + "name": "//utils/jdk:main", + "version": "bazel" + } + }, + { + "id": "//utils/serializers:main@bazel", + "info": { + "name": "//utils/serializers:main", + "version": "bazel" + } + }, + { + "id": "org.apache.commons:commons-pool2@2.8.0", + "info": { + "name": "org.apache.commons:commons-pool2", + "version": "2.8.0" + } + }, + { + "id": "//core_implementation/transform:main@bazel", + "info": { + "name": "//core_implementation/transform:main", + "version": "bazel" + } + }, + { + "id": "//utils/serialization:main@bazel", + "info": { + "name": "//utils/serialization:main", + "version": "bazel" + } + }, + { + "id": "//core_interfaces:warning@bazel", + "info": { + "name": "//core_interfaces:warning", + "version": "bazel" + } + }, + { + "id": "//logging:main@bazel", + "info": { + "name": "//logging:main", + "version": "bazel" + } + }, + { + "id": "//log_appender/cloudwatch:main@bazel", + "info": { + "name": "//log_appender/cloudwatch:main", + "version": "bazel" + } + }, + { + "id": "//log_appender/gcs_appender:main@bazel", + "info": { + "name": "//log_appender/gcs_appender:main", + "version": "bazel" + } + }, + { + "id": "//utils/hook:main@bazel", + "info": { + "name": "//utils/hook:main", + "version": "bazel" + } + }, + { + "id": "//log_appender/stackdriver:main@bazel", + "info": { + "name": "//log_appender/stackdriver:main", + "version": "bazel" + } + }, + { + "id": "com.google.cloud:google-cloud-logging@1.19.0", + "info": { + "name": "com.google.cloud:google-cloud-logging", + "version": "1.19.0" + } + }, + { + "id": "com.google.api.grpc:proto-google-cloud-logging-v2@0.2.1", + "info": { + "name": "com.google.api.grpc:proto-google-cloud-logging-v2", + "version": "0.2.1" + } + }, + { + "id": "//micrometer:main@bazel", + "info": { + "name": "//micrometer:main", + "version": "bazel" + } + }, + { + "id": "com.newrelic.telemetry:micrometer-registry-new-relic@0.6.0", + "info": { + "name": "com.newrelic.telemetry:micrometer-registry-new-relic", + "version": "0.6.0" + } + }, + { + "id": "com.newrelic.telemetry:telemetry@0.7.0", + "info": { + "name": "com.newrelic.telemetry:telemetry", + "version": "0.7.0" + } + }, + { + "id": "com.newrelic.telemetry:telemetry-core@0.7.0", + "info": { + "name": "com.newrelic.telemetry:telemetry-core", + "version": "0.7.0" + } + }, + { + "id": "io.micrometer:micrometer-registry-stackdriver@1.5.3", + "info": { + "name": "io.micrometer:micrometer-registry-stackdriver", + "version": "1.5.3" + } + }, + { + "id": "//pipeline_queue:main@bazel", + "info": { + "name": "//pipeline_queue:main", + "version": "bazel" + } + }, + { + "id": "//shaded_dependencies/azure:azure_identity_shaded@bazel", + "info": { + "name": "//shaded_dependencies/azure:azure_identity_shaded", + "version": "bazel" + } + }, + { + "id": "//shaded_dependencies/azure:azure_storage_blob_shaded@bazel", + "info": { + "name": "//shaded_dependencies/azure:azure_storage_blob_shaded", + "version": "bazel" + } + }, + { + "id": "//utils/network_monitor:main@bazel", + "info": { + "name": "//utils/network_monitor:main", + "version": "bazel" + } + }, + { + "id": "//utils/os:main@bazel", + "info": { + "name": "//utils/os:main", + "version": "bazel" + } + }, + { + "id": "//schema_migration:main@bazel", + "info": { + "name": "//schema_migration:main", + "version": "bazel" + } + }, + { + "id": "//schema_migration:service@bazel", + "info": { + "name": "//schema_migration:service", + "version": "bazel" + } + }, + { + "id": "//utils/sync_statistics:main@bazel", + "info": { + "name": "//utils/sync_statistics:main", + "version": "bazel" + } + }, + { + "id": "//benchmarking:stats@bazel", + "info": { + "name": "//benchmarking:stats", + "version": "bazel" + } + }, + { + "id": "com.fasterxml.jackson.dataformat:jackson-dataformat-xml@2.9.8", + "info": { + "name": "com.fasterxml.jackson.dataformat:jackson-dataformat-xml", + "version": "2.9.8" + } + }, + { + "id": "org.codehaus.woodstox:stax2-api@3.1.4", + "info": { + "name": "org.codehaus.woodstox:stax2-api", + "version": "3.1.4" + } + }, + { + "id": "com.fasterxml.woodstox:woodstox-core@5.0.3", + "info": { + "name": "com.fasterxml.woodstox:woodstox-core", + "version": "5.0.3" + } + }, + { + "id": "io.apptik.json:json-core@1.0.4", + "info": { + "name": "io.apptik.json:json-core", + "version": "1.0.4" + } + }, + { + "id": "//warehouses/common:observability@bazel", + "info": { + "name": "//warehouses/common:observability", + "version": "bazel" + } + }, + { + "id": "//warehouses/common:events@bazel", + "info": { + "name": "//warehouses/common:events", + "version": "bazel" + } + }, + { + "id": "//warehouses/common:feature_flags@bazel", + "info": { + "name": "//warehouses/common:feature_flags", + "version": "bazel" + } + }, + { + "id": "//heartbeat:lite@bazel", + "info": { + "name": "//heartbeat:lite", + "version": "bazel" + } + }, + { + "id": "com.github.alexandrnikitin:bloom-filter_2.11@0.11.0", + "info": { + "name": "com.github.alexandrnikitin:bloom-filter_2.11", + "version": "0.11.0" + } + }, + { + "id": "org.scala-lang:scala-library@2.11.1", + "info": { + "name": "org.scala-lang:scala-library", + "version": "2.11.1" + } + }, + { + "id": "io.projectreactor:reactor-core@3.4.11", + "info": { + "name": "io.projectreactor:reactor-core", + "version": "3.4.11" + } + }, + { + "id": "org.reactivestreams:reactive-streams@1.0.3", + "info": { + "name": "org.reactivestreams:reactive-streams", + "version": "1.0.3" + } + }, + { + "id": "net.agkn:hll@1.6.0", + "info": { + "name": "net.agkn:hll", + "version": "1.6.0" + } + }, + { + "id": "it.unimi.dsi:fastutil@8.1.0", + "info": { + "name": "it.unimi.dsi:fastutil", + "version": "8.1.0" + } + }, + { + "id": "org.jetbrains.kotlin:kotlin-stdlib@1.3.50", + "info": { + "name": "org.jetbrains.kotlin:kotlin-stdlib", + "version": "1.3.50" + } + }, + { + "id": "org.jetbrains:annotations@17.0.0", + "info": { + "name": "org.jetbrains:annotations", + "version": "17.0.0" + } + }, + { + "id": "org.jetbrains.kotlin:kotlin-stdlib-common@1.3.71", + "info": { + "name": "org.jetbrains.kotlin:kotlin-stdlib-common", + "version": "1.3.71" + } + }, + { + "id": "org.openjdk.jmh:jmh-core@1.19", + "info": { + "name": "org.openjdk.jmh:jmh-core", + "version": "1.19" + } + }, + { + "id": "net.sf.jopt-simple:jopt-simple@5.0.4", + "info": { + "name": "net.sf.jopt-simple:jopt-simple", + "version": "5.0.4" + } + }, + { + "id": "org.apache.commons:commons-math3@3.6.1", + "info": { + "name": "org.apache.commons:commons-math3", + "version": "3.6.1" + } + }, + { + "id": "org.rocksdb:rocksdbjni@6.8.1", + "info": { + "name": "org.rocksdb:rocksdbjni", + "version": "6.8.1" + } + }, + { + "id": "org.xerial.snappy:snappy-java@1.1.8.4", + "info": { + "name": "org.xerial.snappy:snappy-java", + "version": "1.1.8.4" + } + }, + { + "id": "//refine:main@bazel", + "info": { + "name": "//refine:main", + "version": "bazel" + } + }, + { + "id": "//schema_service:main@bazel", + "info": { + "name": "//schema_service:main", + "version": "bazel" + } + }, + { + "id": "//services/cmk_encryption:main@bazel", + "info": { + "name": "//services/cmk_encryption:main", + "version": "bazel" + } + }, + { + "id": "javax.ws.rs:javax.ws.rs-api@2.1.1", + "info": { + "name": "javax.ws.rs:javax.ws.rs-api", + "version": "2.1.1" + } + }, + { + "id": "//services/logging:main@bazel", + "info": { + "name": "//services/logging:main", + "version": "bazel" + } + }, + { + "id": "//ssh:main@bazel", + "info": { + "name": "//ssh:main", + "version": "bazel" + } + }, + { + "id": "//secrets/db:main@bazel", + "info": { + "name": "//secrets/db:main", + "version": "bazel" + } + }, + { + "id": "//kms:main@bazel", + "info": { + "name": "//kms:main", + "version": "bazel" + } + }, + { + "id": "@jsch_patched//:main@bazel", + "info": { + "name": "@jsch_patched//:main", + "version": "bazel" + } + }, + { + "id": "com.jcraft:jzlib@1.1.3", + "info": { + "name": "com.jcraft:jzlib", + "version": "1.1.3" + } + }, + { + "id": "//warehouses/big_query:main@bazel", + "info": { + "name": "//warehouses/big_query:main", + "version": "bazel" + } + }, + { + "id": "//json:default_object_mapper@bazel", + "info": { + "name": "//json:default_object_mapper", + "version": "bazel" + } + }, + { + "id": "//warehouses/common:main@bazel", + "info": { + "name": "//warehouses/common:main", + "version": "bazel" + } + }, + { + "id": "//port_forwarder:tunnel_data_source@bazel", + "info": { + "name": "//port_forwarder:tunnel_data_source", + "version": "bazel" + } + }, + { + "id": "//aws:instance_id@bazel", + "info": { + "name": "//aws:instance_id", + "version": "bazel" + } + }, + { + "id": "org.eclipse.jetty:jetty-servlet@9.4.40.v20210413", + "info": { + "name": "org.eclipse.jetty:jetty-servlet", + "version": "9.4.40.v20210413" + } + }, + { + "id": "org.eclipse.jetty:jetty-security@9.4.40.v20210413", + "info": { + "name": "org.eclipse.jetty:jetty-security", + "version": "9.4.40.v20210413" + } + }, + { + "id": "org.eclipse.jetty:jetty-util-ajax@9.4.40.v20210413", + "info": { + "name": "org.eclipse.jetty:jetty-util-ajax", + "version": "9.4.40.v20210413" + } + }, + { + "id": "org.glassfish.jersey.containers:jersey-container-servlet-core@2.31", + "info": { + "name": "org.glassfish.jersey.containers:jersey-container-servlet-core", + "version": "2.31" + } + }, + { + "id": "//warehouses/common:staging_s3@bazel", + "info": { + "name": "//warehouses/common:staging_s3", + "version": "bazel" + } + }, + { + "id": "//warehouses/common-local:writer_file@bazel", + "info": { + "name": "//warehouses/common-local:writer_file", + "version": "bazel" + } + }, + { + "id": "com.github.luben:zstd-jni@1.4.9-1", + "info": { + "name": "com.github.luben:zstd-jni", + "version": "1.4.9-1" + } + }, + { + "id": "//warehouses/common-local:writer_base@bazel", + "info": { + "name": "//warehouses/common-local:writer_base", + "version": "bazel" + } + }, + { + "id": "//warehouses/common:staging_azure@bazel", + "info": { + "name": "//warehouses/common:staging_azure", + "version": "bazel" + } + }, + { + "id": "com.microsoft.azure:azure-keyvault-cryptography@1.2.4", + "info": { + "name": "com.microsoft.azure:azure-keyvault-cryptography", + "version": "1.2.4" + } + }, + { + "id": "com.microsoft.azure:azure-keyvault-webkey@1.2.4", + "info": { + "name": "com.microsoft.azure:azure-keyvault-webkey", + "version": "1.2.4" + } + }, + { + "id": "com.microsoft.azure:azure-keyvault-core@1.2.4", + "info": { + "name": "com.microsoft.azure:azure-keyvault-core", + "version": "1.2.4" + } + }, + { + "id": "com.microsoft.azure:azure-storage@8.6.3", + "info": { + "name": "com.microsoft.azure:azure-storage", + "version": "8.6.3" + } + }, + { + "id": "//warehouses/common:staging_gcs@bazel", + "info": { + "name": "//warehouses/common:staging_gcs", + "version": "bazel" + } + }, + { + "id": "//warehouses/common-local:writer_csv@bazel", + "info": { + "name": "//warehouses/common-local:writer_csv", + "version": "bazel" + } + }, + { + "id": "//warehouses/common-local:writer_avro@bazel", + "info": { + "name": "//warehouses/common-local:writer_avro", + "version": "bazel" + } + }, + { + "id": "//warehouses/common-local:writer_avro_base@bazel", + "info": { + "name": "//warehouses/common-local:writer_avro_base", + "version": "bazel" + } + }, + { + "id": "org.apache.avro:avro@1.11.0", + "info": { + "name": "org.apache.avro:avro", + "version": "1.11.0" + } + }, + { + "id": "org.apache.commons:commons-compress@1.16", + "info": { + "name": "org.apache.commons:commons-compress", + "version": "1.16" + } + }, + { + "id": "org.objenesis:objenesis@2.6", + "info": { + "name": "org.objenesis:objenesis", + "version": "2.6" + } + }, + { + "id": "//warehouses/common-local:writer_json@bazel", + "info": { + "name": "//warehouses/common-local:writer_json", + "version": "bazel" + } + }, + { + "id": "com.google.api.grpc:proto-google-cloud-billingbudgets-v1@1.1.0", + "info": { + "name": "com.google.api.grpc:proto-google-cloud-billingbudgets-v1", + "version": "1.1.0" + } + }, + { + "id": "org.checkerframework:checker-compat-qual@2.5.5", + "info": { + "name": "org.checkerframework:checker-compat-qual", + "version": "2.5.5" + } + }, + { + "id": "com.google.apis:google-api-services-cloudbilling@v1-rev9-1.22.0", + "info": { + "name": "com.google.apis:google-api-services-cloudbilling", + "version": "v1-rev9-1.22.0" + } + }, + { + "id": "com.google.apis:google-api-services-servicemanagement@v1-rev435-1.23.0", + "info": { + "name": "com.google.apis:google-api-services-servicemanagement", + "version": "v1-rev435-1.23.0" + } + }, + { + "id": "com.google.apis:google-api-services-serviceusage@v1beta1-rev20210427-1.31.0", + "info": { + "name": "com.google.apis:google-api-services-serviceusage", + "version": "v1beta1-rev20210427-1.31.0" + } + }, + { + "id": "com.google.cloud:google-cloud-billingbudgets@1.1.0", + "info": { + "name": "com.google.cloud:google-cloud-billingbudgets", + "version": "1.1.0" + } + }, + { + "id": "com.google.api.grpc:proto-google-cloud-billingbudgets-v1beta1@0.7.0", + "info": { + "name": "com.google.api.grpc:proto-google-cloud-billingbudgets-v1beta1", + "version": "0.7.0" + } + }, + { + "id": "com.stripe:stripe-java@19.20.0", + "info": { + "name": "com.stripe:stripe-java", + "version": "19.20.0" + } + }, + { + "id": "io.swagger.core.v3:swagger-annotations@2.1.11", + "info": { + "name": "io.swagger.core.v3:swagger-annotations", + "version": "2.1.11" + } + }, + { + "id": "//utils/bootstrap:main@bazel", + "info": { + "name": "//utils/bootstrap:main", + "version": "bazel" + } + }, + { + "id": "//integrations/braze:main@bazel", + "info": { + "name": "//integrations/braze:main", + "version": "bazel" + } + }, + { + "id": "//services/resync:main@bazel", + "info": { + "name": "//services/resync:main", + "version": "bazel" + } + }, + { + "id": "//services:exceptions@bazel", + "info": { + "name": "//services:exceptions", + "version": "bazel" + } + }, + { + "id": "//services:integration_control@bazel", + "info": { + "name": "//services:integration_control", + "version": "bazel" + } + }, + { + "id": "//utils/fsort:main@bazel", + "info": { + "name": "//utils/fsort:main", + "version": "bazel" + } + }, + { + "id": "info.picocli:picocli@4.5.1", + "info": { + "name": "info.picocli:picocli", + "version": "4.5.1" + } + }, + { + "id": "com.cronutils:cron-utils@9.0.2", + "info": { + "name": "com.cronutils:cron-utils", + "version": "9.0.2" + } + }, + { + "id": "org.hibernate:hibernate-validator@5.4.3.Final", + "info": { + "name": "org.hibernate:hibernate-validator", + "version": "5.4.3.Final" + } + }, + { + "id": "com.fasterxml:classmate@1.3.4", + "info": { + "name": "com.fasterxml:classmate", + "version": "1.3.4" + } + }, + { + "id": "org.jboss.logging:jboss-logging@3.3.2.Final", + "info": { + "name": "org.jboss.logging:jboss-logging", + "version": "3.3.2.Final" + } + }, + { + "id": "//donkey:main@bazel", + "info": { + "name": "//donkey:main", + "version": "bazel" + } + }, + { + "id": "//event_bus:main@bazel", + "info": { + "name": "//event_bus:main", + "version": "bazel" + } + }, + { + "id": "com.github.f4b6a3:ulid-creator@4.0.0", + "info": { + "name": "com.github.f4b6a3:ulid-creator", + "version": "4.0.0" + } + }, + { + "id": "//integrated_scheduler/scheduler:pubsub@bazel", + "info": { + "name": "//integrated_scheduler/scheduler:pubsub", + "version": "bazel" + } + }, + { + "id": "//integrated_scheduler/scheduler:messages@bazel", + "info": { + "name": "//integrated_scheduler/scheduler:messages", + "version": "bazel" + } + }, + { + "id": "com.google.apis:google-api-services-pubsub@v1-rev452-1.25.0", + "info": { + "name": "com.google.apis:google-api-services-pubsub", + "version": "v1-rev452-1.25.0" + } + }, + { + "id": "//integrations/netsuite:main@bazel", + "info": { + "name": "//integrations/netsuite:main", + "version": "bazel" + } + }, + { + "id": "//core_utils:main@bazel", + "info": { + "name": "//core_utils:main", + "version": "bazel" + } + }, + { + "id": "//dblike:main@bazel", + "info": { + "name": "//dblike:main", + "version": "bazel" + } + }, + { + "id": "//integrations/db:main@bazel", + "info": { + "name": "//integrations/db:main", + "version": "bazel" + } + }, + { + "id": "//integrations/hvr/hvr_tool:main@bazel", + "info": { + "name": "//integrations/hvr/hvr_tool:main", + "version": "bazel" + } + }, + { + "id": "//utils/cipher_adapter:main@bazel", + "info": { + "name": "//utils/cipher_adapter:main", + "version": "bazel" + } + }, + { + "id": "//utils/run_shell:main@bazel", + "info": { + "name": "//utils/run_shell:main", + "version": "bazel" + } + }, + { + "id": "//utils/sleep_control:main@bazel", + "info": { + "name": "//utils/sleep_control:main", + "version": "bazel" + } + }, + { + "id": "//utils/segmented_input_stream:main@bazel", + "info": { + "name": "//utils/segmented_input_stream:main", + "version": "bazel" + } + }, + { + "id": "//utils/socket_receiver:main@bazel", + "info": { + "name": "//utils/socket_receiver:main", + "version": "bazel" + } + }, + { + "id": "//integrations/isolated_endpoint_sync:main@bazel", + "info": { + "name": "//integrations/isolated_endpoint_sync:main", + "version": "bazel" + } + }, + { + "id": "//integrations/speed_test:main@bazel", + "info": { + "name": "//integrations/speed_test:main", + "version": "bazel" + } + }, + { + "id": "//integrations/speed_test:utils@bazel", + "info": { + "name": "//integrations/speed_test:utils", + "version": "bazel" + } + }, + { + "id": "//ip_utils:main@bazel", + "info": { + "name": "//ip_utils:main", + "version": "bazel" + } + }, + { + "id": "//port_forwarder:main@bazel", + "info": { + "name": "//port_forwarder:main", + "version": "bazel" + } + }, + { + "id": "//:databricks_jdbc@bazel", + "info": { + "name": "//:databricks_jdbc", + "version": "bazel" + } + }, + { + "id": "//:netsuite_jdbc_connector@bazel", + "info": { + "name": "//:netsuite_jdbc_connector", + "version": "bazel" + } + }, + { + "id": "//:sap_s4hana_jdbc_connector@bazel", + "info": { + "name": "//:sap_s4hana_jdbc_connector", + "version": "bazel" + } + }, + { + "id": "//utils/oracle:main@bazel", + "info": { + "name": "//utils/oracle:main", + "version": "bazel" + } + }, + { + "id": "//verification:main@bazel", + "info": { + "name": "//verification:main", + "version": "bazel" + } + }, + { + "id": "mysql:mysql-connector-java@8.0.13", + "info": { + "name": "mysql:mysql-connector-java", + "version": "8.0.13" + } + }, + { + "id": "org.mariadb.jdbc:mariadb-java-client@2.5.4", + "info": { + "name": "org.mariadb.jdbc:mariadb-java-client", + "version": "2.5.4" + } + }, + { + "id": "@mysql_binlog_connector//:main@bazel", + "info": { + "name": "@mysql_binlog_connector//:main", + "version": "bazel" + } + }, + { + "id": "com.amazonaws:aws-java-sdk-redshift@1.12.84", + "info": { + "name": "com.amazonaws:aws-java-sdk-redshift", + "version": "1.12.84" + } + }, + { + "id": "com.ibm.db2:jcc@11.5.0.0", + "info": { + "name": "com.ibm.db2:jcc", + "version": "11.5.0.0" + } + }, + { + "id": "com.microsoft.sqlserver:mssql-jdbc@9.4.0.jre11", + "info": { + "name": "com.microsoft.sqlserver:mssql-jdbc", + "version": "9.4.0.jre11" + } + }, + { + "id": "net.snowflake:snowflake-jdbc@3.13.18", + "info": { + "name": "net.snowflake:snowflake-jdbc", + "version": "3.13.18" + } + }, + { + "id": "//testing:main@bazel", + "info": { + "name": "//testing:main", + "version": "bazel" + } + }, + { + "id": "//core_mocks:main@bazel", + "info": { + "name": "//core_mocks:main", + "version": "bazel" + } + }, + { + "id": "com.jayway.jsonpath:json-path@2.4.0", + "info": { + "name": "com.jayway.jsonpath:json-path", + "version": "2.4.0" + } + }, + { + "id": "net.minidev:json-smart@2.3", + "info": { + "name": "net.minidev:json-smart", + "version": "2.3" + } + }, + { + "id": "net.minidev:accessors-smart@1.2", + "info": { + "name": "net.minidev:accessors-smart", + "version": "1.2" + } + }, + { + "id": "com.github.tomakehurst:wiremock-jre8-standalone@2.27.2", + "info": { + "name": "com.github.tomakehurst:wiremock-jre8-standalone", + "version": "2.27.2" + } + }, + { + "id": "javax.websocket:javax.websocket-api@1.1", + "info": { + "name": "javax.websocket:javax.websocket-api", + "version": "1.1" + } + }, + { + "id": "junit:junit@4.13", + "info": { + "name": "junit:junit", + "version": "4.13" + } + }, + { + "id": "org.hamcrest:hamcrest-core@2.2", + "info": { + "name": "org.hamcrest:hamcrest-core", + "version": "2.2" + } + }, + { + "id": "org.hamcrest:hamcrest@2.2", + "info": { + "name": "org.hamcrest:hamcrest", + "version": "2.2" + } + }, + { + "id": "org.mockito:mockito-core@2.28.2", + "info": { + "name": "org.mockito:mockito-core", + "version": "2.28.2" + } + }, + { + "id": "net.bytebuddy:byte-buddy@1.10.14", + "info": { + "name": "net.bytebuddy:byte-buddy", + "version": "1.10.14" + } + }, + { + "id": "net.bytebuddy:byte-buddy-agent@1.10.14", + "info": { + "name": "net.bytebuddy:byte-buddy-agent", + "version": "1.10.14" + } + }, + { + "id": "//utils/beans:main@bazel", + "info": { + "name": "//utils/beans:main", + "version": "bazel" + } + }, + { + "id": "com.github.jsqlparser:jsqlparser@4.2", + "info": { + "name": "com.github.jsqlparser:jsqlparser", + "version": "4.2" + } + }, + { + "id": "com.walkmind.extensions:collections@1.20", + "info": { + "name": "com.walkmind.extensions:collections", + "version": "1.20" + } + }, + { + "id": "//integrations/db_like_standardization:main@bazel", + "info": { + "name": "//integrations/db_like_standardization:main", + "version": "bazel" + } + }, + { + "id": "//secrets/group:main@bazel", + "info": { + "name": "//secrets/group:main", + "version": "bazel" + } + }, + { + "id": "//services/setup_test_runner:main@bazel", + "info": { + "name": "//services/setup_test_runner:main", + "version": "bazel" + } + }, + { + "id": "//setup_test_runner:client@bazel", + "info": { + "name": "//setup_test_runner:client", + "version": "bazel" + } + }, + { + "id": "//http:exception_mappers@bazel", + "info": { + "name": "//http:exception_mappers", + "version": "bazel" + } + }, + { + "id": "//http:json@bazel", + "info": { + "name": "//http:json", + "version": "bazel" + } + }, + { + "id": "//transformation_runner:client@bazel", + "info": { + "name": "//transformation_runner:client", + "version": "bazel" + } + }, + { + "id": "org.slf4j:slf4j-jdk14@1.7.13", + "info": { + "name": "org.slf4j:slf4j-jdk14", + "version": "1.7.13" + } + }, + { + "id": "//events:main@bazel", + "info": { + "name": "//events:main", + "version": "bazel" + } + }, + { + "id": "//feature_flag/sandbox:main@bazel", + "info": { + "name": "//feature_flag/sandbox:main", + "version": "bazel" + } + }, + { + "id": "//feature_flag/json:main@bazel", + "info": { + "name": "//feature_flag/json:main", + "version": "bazel" + } + }, + { + "id": "//integrated_scheduler/dag:main@bazel", + "info": { + "name": "//integrated_scheduler/dag:main", + "version": "bazel" + } + }, + { + "id": "//integrated_scheduler/pipeline:main@bazel", + "info": { + "name": "//integrated_scheduler/pipeline:main", + "version": "bazel" + } + }, + { + "id": "//dbt/runner:main@bazel", + "info": { + "name": "//dbt/runner:main", + "version": "bazel" + } + }, + { + "id": "//dbt/agent:common@bazel", + "info": { + "name": "//dbt/agent:common", + "version": "bazel" + } + }, + { + "id": "//log_appender/datadog:main@bazel", + "info": { + "name": "//log_appender/datadog:main", + "version": "bazel" + } + }, + { + "id": "//log_appender/log_analytics:main@bazel", + "info": { + "name": "//log_appender/log_analytics:main", + "version": "bazel" + } + }, + { + "id": "//log_appender/splunk:main@bazel", + "info": { + "name": "//log_appender/splunk:main", + "version": "bazel" + } + }, + { + "id": "//logging:ufl@bazel", + "info": { + "name": "//logging:ufl", + "version": "bazel" + } + }, + { + "id": "//warehouses/big_query:locations@bazel", + "info": { + "name": "//warehouses/big_query:locations", + "version": "bazel" + } + }, + { + "id": "//warehouses/redshift:redshift_cluster_service@bazel", + "info": { + "name": "//warehouses/redshift:redshift_cluster_service", + "version": "bazel" + } + }, + { + "id": "//log_tailer:main@bazel", + "info": { + "name": "//log_tailer:main", + "version": "bazel" + } + }, + { + "id": "//integrations/zuora:main@bazel", + "info": { + "name": "//integrations/zuora:main", + "version": "bazel" + } + }, + { + "id": "//secrets/integration:main@bazel", + "info": { + "name": "//secrets/integration:main", + "version": "bazel" + } + }, + { + "id": "//logging:fluent_bit@bazel", + "info": { + "name": "//logging:fluent_bit", + "version": "bazel" + } + }, + { + "id": "//service_registry:main@bazel", + "info": { + "name": "//service_registry:main", + "version": "bazel" + } + }, + { + "id": "//coil:main@bazel", + "info": { + "name": "//coil:main", + "version": "bazel" + } + }, + { + "id": "//coil:coil_framework_java@bazel", + "info": { + "name": "//coil:coil_framework_java", + "version": "bazel" + } + }, + { + "id": "//coil:coil_framework_clojure@bazel", + "info": { + "name": "//coil:coil_framework_clojure", + "version": "bazel" + } + }, + { + "id": "//integrations/coil_connectors:main@bazel", + "info": { + "name": "//integrations/coil_connectors:main", + "version": "bazel" + } + }, + { + "id": "org.clojure:clojure@1.10.1", + "info": { + "name": "org.clojure:clojure", + "version": "1.10.1" + } + }, + { + "id": "org.clojure:core.specs.alpha@0.2.56", + "info": { + "name": "org.clojure:core.specs.alpha", + "version": "0.2.56" + } + }, + { + "id": "org.clojure:data.json@1.1.0", + "info": { + "name": "org.clojure:data.json", + "version": "1.1.0" + } + }, + { + "id": "//webhook/client:main@bazel", + "info": { + "name": "//webhook/client:main", + "version": "bazel" + } + }, + { + "id": "//webhook/storage:main@bazel", + "info": { + "name": "//webhook/storage:main", + "version": "bazel" + } + }, + { + "id": "//webhook/utils:main@bazel", + "info": { + "name": "//webhook/utils:main", + "version": "bazel" + } + }, + { + "id": "//core_interfaces:pojos@bazel", + "info": { + "name": "//core_interfaces:pojos", + "version": "bazel" + } + }, + { + "id": "io.kubernetes:client-java@3.0.0-beta2", + "info": { + "name": "io.kubernetes:client-java", + "version": "3.0.0-beta2" + } + }, + { + "id": "io.kubernetes:client-java-api@3.0.0-beta2", + "info": { + "name": "io.kubernetes:client-java-api", + "version": "3.0.0-beta2" + } + }, + { + "id": "com.squareup.okhttp:okhttp@2.7.5", + "info": { + "name": "com.squareup.okhttp:okhttp", + "version": "2.7.5" + } + }, + { + "id": "com.squareup.okio:okio@1.13.0", + "info": { + "name": "com.squareup.okio:okio", + "version": "1.13.0" + } + }, + { + "id": "org.joda:joda-convert@1.2", + "info": { + "name": "org.joda:joda-convert", + "version": "1.2" + } + }, + { + "id": "com.squareup.okhttp:logging-interceptor@2.7.5", + "info": { + "name": "com.squareup.okhttp:logging-interceptor", + "version": "2.7.5" + } + }, + { + "id": "io.sundr:builder-annotations@0.8.0", + "info": { + "name": "io.sundr:builder-annotations", + "version": "0.8.0" + } + }, + { + "id": "io.sundr:sundr-codegen@0.8.0", + "info": { + "name": "io.sundr:sundr-codegen", + "version": "0.8.0" + } + }, + { + "id": "io.sundr:sundr-core@0.8.0", + "info": { + "name": "io.sundr:sundr-core", + "version": "0.8.0" + } + }, + { + "id": "io.swagger:swagger-annotations@1.6.0", + "info": { + "name": "io.swagger:swagger-annotations", + "version": "1.6.0" + } + }, + { + "id": "com.microsoft.azure:adal4j@1.6.3", + "info": { + "name": "com.microsoft.azure:adal4j", + "version": "1.6.3" + } + }, + { + "id": "com.nimbusds:oauth2-oidc-sdk@5.64.4", + "info": { + "name": "com.nimbusds:oauth2-oidc-sdk", + "version": "5.64.4" + } + }, + { + "id": "com.github.stephenc.jcip:jcip-annotations@1.0-1", + "info": { + "name": "com.github.stephenc.jcip:jcip-annotations", + "version": "1.0-1" + } + }, + { + "id": "com.sun.mail:javax.mail@1.5.4", + "info": { + "name": "com.sun.mail:javax.mail", + "version": "1.5.4" + } + }, + { + "id": "com.nimbusds:nimbus-jose-jwt@5.5", + "info": { + "name": "com.nimbusds:nimbus-jose-jwt", + "version": "5.5" + } + }, + { + "id": "com.nimbusds:lang-tag@1.4.3", + "info": { + "name": "com.nimbusds:lang-tag", + "version": "1.4.3" + } + }, + { + "id": "com.squareup.okhttp:okhttp-ws@2.7.5", + "info": { + "name": "com.squareup.okhttp:okhttp-ws", + "version": "2.7.5" + } + }, + { + "id": "io.kubernetes:client-java-proto@3.0.0", + "info": { + "name": "io.kubernetes:client-java-proto", + "version": "3.0.0" + } + }, + { + "id": "lambdaisland:deep-diff2@2.0.108", + "info": { + "name": "lambdaisland:deep-diff2", + "version": "2.0.108" + } + }, + { + "id": "fipp:fipp@0.6.23", + "info": { + "name": "fipp:fipp", + "version": "0.6.23" + } + }, + { + "id": "org.clojure:core.rrb-vector@0.1.1", + "info": { + "name": "org.clojure:core.rrb-vector", + "version": "0.1.1" + } + }, + { + "id": "lambdaisland:clj-diff@1.1.58", + "info": { + "name": "lambdaisland:clj-diff", + "version": "1.1.58" + } + }, + { + "id": "mvxcvi:arrangement@1.2.1", + "info": { + "name": "mvxcvi:arrangement", + "version": "1.2.1" + } + }, + { + "id": "org.apache.commons:commons-collections4@4.1", + "info": { + "name": "org.apache.commons:commons-collections4", + "version": "4.1" + } + }, + { + "id": "//integrations/chartio:main@bazel", + "info": { + "name": "//integrations/chartio:main", + "version": "bazel" + } + }, + { + "id": "//integrations/google_data_studio:main@bazel", + "info": { + "name": "//integrations/google_data_studio:main", + "version": "bazel" + } + }, + { + "id": "//integrations/periscope:main@bazel", + "info": { + "name": "//integrations/periscope:main", + "version": "bazel" + } + }, + { + "id": "//warehouses/common:tasks@bazel", + "info": { + "name": "//warehouses/common:tasks", + "version": "bazel" + } + }, + { + "id": "//integrations/sigma_computing:main@bazel", + "info": { + "name": "//integrations/sigma_computing:main", + "version": "bazel" + } + }, + { + "id": "//integrations/sisense:main@bazel", + "info": { + "name": "//integrations/sisense:main", + "version": "bazel" + } + }, + { + "id": "//integrations/tableau:main@bazel", + "info": { + "name": "//integrations/tableau:main", + "version": "bazel" + } + }, + { + "id": "//integrations/looker:main@bazel", + "info": { + "name": "//integrations/looker:main", + "version": "bazel" + } + }, + { + "id": "//integrations/postgres2020:main@bazel", + "info": { + "name": "//integrations/postgres2020:main", + "version": "bazel" + } + }, + { + "id": "//geo:main@bazel", + "info": { + "name": "//geo:main", + "version": "bazel" + } + }, + { + "id": "//utils/binary:main@bazel", + "info": { + "name": "//utils/binary:main", + "version": "bazel" + } + }, + { + "id": "//integrations/configuration_tracker:main@bazel", + "info": { + "name": "//integrations/configuration_tracker:main", + "version": "bazel" + } + }, + { + "id": "com.google.cloud:google-cloud-bigquery@1.48.0", + "info": { + "name": "com.google.cloud:google-cloud-bigquery", + "version": "1.48.0" + } + }, + { + "id": "com.google.auto.value:auto-value@1.5.3", + "info": { + "name": "com.google.auto.value:auto-value", + "version": "1.5.3" + } + }, + { + "id": "org.jeasy:easy-rules-core@4.1.0", + "info": { + "name": "org.jeasy:easy-rules-core", + "version": "4.1.0" + } + }, + { + "id": "//services:ab_tests@bazel", + "info": { + "name": "//services:ab_tests", + "version": "bazel" + } + }, + { + "id": "//teleport:main@bazel", + "info": { + "name": "//teleport:main", + "version": "bazel" + } + }, + { + "id": "//utils/operations:main@bazel", + "info": { + "name": "//utils/operations:main", + "version": "bazel" + } + }, + { + "id": "//sources/bridge:main@bazel", + "info": { + "name": "//sources/bridge:main", + "version": "bazel" + } + }, + { + "id": "//api:connector_config_formatter@bazel", + "info": { + "name": "//api:connector_config_formatter", + "version": "bazel" + } + }, + { + "id": "//sources/form:main@bazel", + "info": { + "name": "//sources/form:main", + "version": "bazel" + } + }, + { + "id": "//warehouses/azure:main@bazel", + "info": { + "name": "//warehouses/azure:main", + "version": "bazel" + } + }, + { + "id": "//port_forwarder:azure@bazel", + "info": { + "name": "//port_forwarder:azure", + "version": "bazel" + } + }, + { + "id": "//warehouses/common-local:writer_parquet@bazel", + "info": { + "name": "//warehouses/common-local:writer_parquet", + "version": "bazel" + } + }, + { + "id": "org.apache.hadoop:hadoop-common@2.7.7", + "info": { + "name": "org.apache.hadoop:hadoop-common", + "version": "2.7.7" + } + }, + { + "id": "org.apache.htrace:htrace-core@3.1.0-incubating", + "info": { + "name": "org.apache.htrace:htrace-core", + "version": "3.1.0-incubating" + } + }, + { + "id": "xmlenc:xmlenc@0.52", + "info": { + "name": "xmlenc:xmlenc", + "version": "0.52" + } + }, + { + "id": "org.mortbay.jetty:jetty@6.1.26", + "info": { + "name": "org.mortbay.jetty:jetty", + "version": "6.1.26" + } + }, + { + "id": "org.mortbay.jetty:jetty-util@6.1.26", + "info": { + "name": "org.mortbay.jetty:jetty-util", + "version": "6.1.26" + } + }, + { + "id": "org.mortbay.jetty:servlet-api@2.5-20081211", + "info": { + "name": "org.mortbay.jetty:servlet-api", + "version": "2.5-20081211" + } + }, + { + "id": "net.java.dev.jets3t:jets3t@0.9.0", + "info": { + "name": "net.java.dev.jets3t:jets3t", + "version": "0.9.0" + } + }, + { + "id": "com.jamesmurty.utils:java-xmlbuilder@0.4", + "info": { + "name": "com.jamesmurty.utils:java-xmlbuilder", + "version": "0.4" + } + }, + { + "id": "org.codehaus.jackson:jackson-mapper-asl@1.9.13", + "info": { + "name": "org.codehaus.jackson:jackson-mapper-asl", + "version": "1.9.13" + } + }, + { + "id": "org.apache.curator:curator-client@2.7.1", + "info": { + "name": "org.apache.curator:curator-client", + "version": "2.7.1" + } + }, + { + "id": "org.apache.zookeeper:zookeeper@3.4.6", + "info": { + "name": "org.apache.zookeeper:zookeeper", + "version": "3.4.6" + } + }, + { + "id": "io.netty:netty@3.7.0.Final", + "info": { + "name": "io.netty:netty", + "version": "3.7.0.Final" + } + }, + { + "id": "log4j:log4j@1.2.17", + "info": { + "name": "log4j:log4j", + "version": "1.2.17" + } + }, + { + "id": "com.jcraft:jsch@0.1.54", + "info": { + "name": "com.jcraft:jsch", + "version": "0.1.54" + } + }, + { + "id": "com.sun.jersey:jersey-json@1.13", + "info": { + "name": "com.sun.jersey:jersey-json", + "version": "1.13" + } + }, + { + "id": "org.codehaus.jackson:jackson-xc@1.9.13", + "info": { + "name": "org.codehaus.jackson:jackson-xc", + "version": "1.9.13" + } + }, + { + "id": "org.codehaus.jettison:jettison@1.1", + "info": { + "name": "org.codehaus.jettison:jettison", + "version": "1.1" + } + }, + { + "id": "stax:stax-api@1.0.1", + "info": { + "name": "stax:stax-api", + "version": "1.0.1" + } + }, + { + "id": "org.codehaus.jackson:jackson-jaxrs@1.9.13", + "info": { + "name": "org.codehaus.jackson:jackson-jaxrs", + "version": "1.9.13" + } + }, + { + "id": "com.sun.jersey:jersey-core@1.13", + "info": { + "name": "com.sun.jersey:jersey-core", + "version": "1.13" + } + }, + { + "id": "org.mortbay.jetty:jetty-sslengine@6.1.26", + "info": { + "name": "org.mortbay.jetty:jetty-sslengine", + "version": "6.1.26" + } + }, + { + "id": "commons-cli:commons-cli@1.3.1", + "info": { + "name": "commons-cli:commons-cli", + "version": "1.3.1" + } + }, + { + "id": "org.apache.hadoop:hadoop-auth@2.7.7", + "info": { + "name": "org.apache.hadoop:hadoop-auth", + "version": "2.7.7" + } + }, + { + "id": "org.apache.directory.server:apacheds-kerberos-codec@2.0.0-M15", + "info": { + "name": "org.apache.directory.server:apacheds-kerberos-codec", + "version": "2.0.0-M15" + } + }, + { + "id": "org.apache.directory.api:api-asn1-api@1.0.0-M20", + "info": { + "name": "org.apache.directory.api:api-asn1-api", + "version": "1.0.0-M20" + } + }, + { + "id": "org.apache.directory.api:api-util@1.0.0-M20", + "info": { + "name": "org.apache.directory.api:api-util", + "version": "1.0.0-M20" + } + }, + { + "id": "org.apache.directory.server:apacheds-i18n@2.0.0-M15", + "info": { + "name": "org.apache.directory.server:apacheds-i18n", + "version": "2.0.0-M15" + } + }, + { + "id": "org.apache.curator:curator-framework@2.7.1", + "info": { + "name": "org.apache.curator:curator-framework", + "version": "2.7.1" + } + }, + { + "id": "javax.servlet.jsp:jsp-api@2.1", + "info": { + "name": "javax.servlet.jsp:jsp-api", + "version": "2.1" + } + }, + { + "id": "org.apache.curator:curator-recipes@2.7.1", + "info": { + "name": "org.apache.curator:curator-recipes", + "version": "2.7.1" + } + }, + { + "id": "commons-httpclient:commons-httpclient@3.1", + "info": { + "name": "commons-httpclient:commons-httpclient", + "version": "3.1" + } + }, + { + "id": "javax.servlet:servlet-api@2.5", + "info": { + "name": "javax.servlet:servlet-api", + "version": "2.5" + } + }, + { + "id": "com.sun.jersey:jersey-server@1.9", + "info": { + "name": "com.sun.jersey:jersey-server", + "version": "1.9" + } + }, + { + "id": "asm:asm@3.1", + "info": { + "name": "asm:asm", + "version": "3.1" + } + }, + { + "id": "org.apache.hadoop:hadoop-annotations@2.7.7", + "info": { + "name": "org.apache.hadoop:hadoop-annotations", + "version": "2.7.7" + } + }, + { + "id": "org.apache.hadoop:hadoop-mapreduce-client-core@2.7.7", + "info": { + "name": "org.apache.hadoop:hadoop-mapreduce-client-core", + "version": "2.7.7" + } + }, + { + "id": "com.google.inject.extensions:guice-servlet@3.0", + "info": { + "name": "com.google.inject.extensions:guice-servlet", + "version": "3.0" + } + }, + { + "id": "com.google.inject:guice@4.2.2", + "info": { + "name": "com.google.inject:guice", + "version": "4.2.2" + } + }, + { + "id": "aopalliance:aopalliance@1.0", + "info": { + "name": "aopalliance:aopalliance", + "version": "1.0" + } + }, + { + "id": "javax.inject:javax.inject@1", + "info": { + "name": "javax.inject:javax.inject", + "version": "1" + } + }, + { + "id": "org.apache.hadoop:hadoop-yarn-common@2.7.7", + "info": { + "name": "org.apache.hadoop:hadoop-yarn-common", + "version": "2.7.7" + } + }, + { + "id": "org.apache.hadoop:hadoop-yarn-api@2.7.7", + "info": { + "name": "org.apache.hadoop:hadoop-yarn-api", + "version": "2.7.7" + } + }, + { + "id": "com.sun.jersey:jersey-client@1.13", + "info": { + "name": "com.sun.jersey:jersey-client", + "version": "1.13" + } + }, + { + "id": "com.sun.jersey.contribs:jersey-guice@1.9", + "info": { + "name": "com.sun.jersey.contribs:jersey-guice", + "version": "1.9" + } + }, + { + "id": "org.apache.parquet:parquet-avro@1.12.2", + "info": { + "name": "org.apache.parquet:parquet-avro", + "version": "1.12.2" + } + }, + { + "id": "org.apache.parquet:parquet-column@1.12.2", + "info": { + "name": "org.apache.parquet:parquet-column", + "version": "1.12.2" + } + }, + { + "id": "org.apache.parquet:parquet-common@1.12.2", + "info": { + "name": "org.apache.parquet:parquet-common", + "version": "1.12.2" + } + }, + { + "id": "org.apache.parquet:parquet-format-structures@1.12.2", + "info": { + "name": "org.apache.parquet:parquet-format-structures", + "version": "1.12.2" + } + }, + { + "id": "org.apache.yetus:audience-annotations@0.12.0", + "info": { + "name": "org.apache.yetus:audience-annotations", + "version": "0.12.0" + } + }, + { + "id": "org.apache.parquet:parquet-encoding@1.12.2", + "info": { + "name": "org.apache.parquet:parquet-encoding", + "version": "1.12.2" + } + }, + { + "id": "org.apache.parquet:parquet-hadoop@1.12.2", + "info": { + "name": "org.apache.parquet:parquet-hadoop", + "version": "1.12.2" + } + }, + { + "id": "org.apache.parquet:parquet-jackson@1.12.2", + "info": { + "name": "org.apache.parquet:parquet-jackson", + "version": "1.12.2" + } + }, + { + "id": "commons-pool:commons-pool@1.6", + "info": { + "name": "commons-pool:commons-pool", + "version": "1.6" + } + }, + { + "id": "//warehouses/databricks:main@bazel", + "info": { + "name": "//warehouses/databricks:main", + "version": "bazel" + } + }, + { + "id": "//port_forwarder:databricks@bazel", + "info": { + "name": "//port_forwarder:databricks", + "version": "bazel" + } + }, + { + "id": "//warehouses/mysql:main@bazel", + "info": { + "name": "//warehouses/mysql:main", + "version": "bazel" + } + }, + { + "id": "//port_forwarder:mysql@bazel", + "info": { + "name": "//port_forwarder:mysql", + "version": "bazel" + } + }, + { + "id": "//warehouses/panoply:main@bazel", + "info": { + "name": "//warehouses/panoply:main", + "version": "bazel" + } + }, + { + "id": "//warehouses/redshift:main@bazel", + "info": { + "name": "//warehouses/redshift:main", + "version": "bazel" + } + }, + { + "id": "io.netty:netty-all@4.1.45.Final", + "info": { + "name": "io.netty:netty-all", + "version": "4.1.45.Final" + } + }, + { + "id": "@redshift_jdbc42//jar:jar@bazel", + "info": { + "name": "@redshift_jdbc42//jar:jar", + "version": "bazel" + } + }, + { + "id": "//warehouses/periscope:main@bazel", + "info": { + "name": "//warehouses/periscope:main", + "version": "bazel" + } + }, + { + "id": "//warehouses/postgres:main@bazel", + "info": { + "name": "//warehouses/postgres:main", + "version": "bazel" + } + }, + { + "id": "//integrations/db:setup_form_utils@bazel", + "info": { + "name": "//integrations/db:setup_form_utils", + "version": "bazel" + } + }, + { + "id": "//port_forwarder:postgres@bazel", + "info": { + "name": "//port_forwarder:postgres", + "version": "bazel" + } + }, + { + "id": "//warehouses/s3_data_lake:main@bazel", + "info": { + "name": "//warehouses/s3_data_lake:main", + "version": "bazel" + } + }, + { + "id": "org.apache.iceberg:iceberg-api@0.13.1", + "info": { + "name": "org.apache.iceberg:iceberg-api", + "version": "0.13.1" + } + }, + { + "id": "com.github.stephenc.findbugs:findbugs-annotations@1.3.9-1", + "info": { + "name": "com.github.stephenc.findbugs:findbugs-annotations", + "version": "1.3.9-1" + } + }, + { + "id": "org.apache.iceberg:iceberg-bundled-guava@0.13.1", + "info": { + "name": "org.apache.iceberg:iceberg-bundled-guava", + "version": "0.13.1" + } + }, + { + "id": "org.apache.iceberg:iceberg-core@0.13.1", + "info": { + "name": "org.apache.iceberg:iceberg-core", + "version": "0.13.1" + } + }, + { + "id": "org.roaringbitmap:RoaringBitmap@0.9.22", + "info": { + "name": "org.roaringbitmap:RoaringBitmap", + "version": "0.9.22" + } + }, + { + "id": "org.roaringbitmap:shims@0.9.22", + "info": { + "name": "org.roaringbitmap:shims", + "version": "0.9.22" + } + }, + { + "id": "com.github.ben-manes.caffeine:caffeine@2.8.4", + "info": { + "name": "com.github.ben-manes.caffeine:caffeine", + "version": "2.8.4" + } + }, + { + "id": "org.apache.iceberg:iceberg-common@0.13.1", + "info": { + "name": "org.apache.iceberg:iceberg-common", + "version": "0.13.1" + } + }, + { + "id": "org.apache.iceberg:iceberg-data@0.13.1", + "info": { + "name": "org.apache.iceberg:iceberg-data", + "version": "0.13.1" + } + }, + { + "id": "org.apache.orc:orc-core:jar:nohive@1.7.2", + "info": { + "name": "org.apache.orc:orc-core:jar:nohive", + "version": "1.7.2" + } + }, + { + "id": "io.airlift:aircompressor@0.9", + "info": { + "name": "io.airlift:aircompressor", + "version": "0.9" + } + }, + { + "id": "io.airlift:slice@0.10", + "info": { + "name": "io.airlift:slice", + "version": "0.10" + } + }, + { + "id": "org.apache.orc:orc-shims@1.7.2", + "info": { + "name": "org.apache.orc:orc-shims", + "version": "1.7.2" + } + }, + { + "id": "org.threeten:threeten-extra@0.9", + "info": { + "name": "org.threeten:threeten-extra", + "version": "0.9" + } + }, + { + "id": "org.apache.iceberg:iceberg-parquet@0.13.1", + "info": { + "name": "org.apache.iceberg:iceberg-parquet", + "version": "0.13.1" + } + }, + { + "id": "//warehouses/snowflake:main@bazel", + "info": { + "name": "//warehouses/snowflake:main", + "version": "bazel" + } + }, + { + "id": "//port_forwarder:snowflake@bazel", + "info": { + "name": "//port_forwarder:snowflake", + "version": "bazel" + } + }, + { + "id": "//warehouses/sql_server:main@bazel", + "info": { + "name": "//warehouses/sql_server:main", + "version": "bazel" + } + }, + { + "id": "//port_forwarder:sqlserver@bazel", + "info": { + "name": "//port_forwarder:sqlserver", + "version": "bazel" + } + }, + { + "id": "//integrations/adjust:main@bazel", + "info": { + "name": "//integrations/adjust:main", + "version": "bazel" + } + }, + { + "id": "//integrations/adobe_analytics:main@bazel", + "info": { + "name": "//integrations/adobe_analytics:main", + "version": "bazel" + } + }, + { + "id": "//integrations/bidirectional_cube:main@bazel", + "info": { + "name": "//integrations/bidirectional_cube:main", + "version": "bazel" + } + }, + { + "id": "//integrations/priority_sync:main@bazel", + "info": { + "name": "//integrations/priority_sync:main", + "version": "bazel" + } + }, + { + "id": "com.google.api-ads:ads-lib@4.4.0", + "info": { + "name": "com.google.api-ads:ads-lib", + "version": "4.4.0" + } + }, + { + "id": "com.google.inject.extensions:guice-multibindings@4.0", + "info": { + "name": "com.google.inject.extensions:guice-multibindings", + "version": "4.0" + } + }, + { + "id": "com.google.inject.extensions:guice-assistedinject@4.0", + "info": { + "name": "com.google.inject.extensions:guice-assistedinject", + "version": "4.0" + } + }, + { + "id": "net.sf.opencsv:opencsv@1.8", + "info": { + "name": "net.sf.opencsv:opencsv", + "version": "1.8" + } + }, + { + "id": "commons-beanutils:commons-beanutils@1.9.2", + "info": { + "name": "commons-beanutils:commons-beanutils", + "version": "1.9.2" + } + }, + { + "id": "com.beust:jcommander@1.82", + "info": { + "name": "com.beust:jcommander", + "version": "1.82" + } + }, + { + "id": "com.google.api-ads:adwords-axis@4.4.0", + "info": { + "name": "com.google.api-ads:adwords-axis", + "version": "4.4.0" + } + }, + { + "id": "com.google.api-ads:ads-lib-axis@4.4.0", + "info": { + "name": "com.google.api-ads:ads-lib-axis", + "version": "4.4.0" + } + }, + { + "id": "javax.xml:jaxrpc-api@1.1", + "info": { + "name": "javax.xml:jaxrpc-api", + "version": "1.1" + } + }, + { + "id": "wsdl4j:wsdl4j@1.6.2", + "info": { + "name": "wsdl4j:wsdl4j", + "version": "1.6.2" + } + }, + { + "id": "commons-discovery:commons-discovery@0.5", + "info": { + "name": "commons-discovery:commons-discovery", + "version": "0.5" + } + }, + { + "id": "org.apache.axis:axis@1.4", + "info": { + "name": "org.apache.axis:axis", + "version": "1.4" + } + }, + { + "id": "//integrations/adobe_analytics_data_feed:main@bazel", + "info": { + "name": "//integrations/adobe_analytics_data_feed:main", + "version": "bazel" + } + }, + { + "id": "//integrations/ftp:main@bazel", + "info": { + "name": "//integrations/ftp:main", + "version": "bazel" + } + }, + { + "id": "//integrations/file:main@bazel", + "info": { + "name": "//integrations/file:main", + "version": "bazel" + } + }, + { + "id": "com.fasterxml.util:java-merge-sort@1.0.0", + "info": { + "name": "com.fasterxml.util:java-merge-sort", + "version": "1.0.0" + } + }, + { + "id": "com.monitorjbl:xlsx-streamer@1.2.1", + "info": { + "name": "com.monitorjbl:xlsx-streamer", + "version": "1.2.1" + } + }, + { + "id": "org.apache.poi:ooxml-schemas@1.3", + "info": { + "name": "org.apache.poi:ooxml-schemas", + "version": "1.3" + } + }, + { + "id": "org.apache.xmlbeans:xmlbeans@2.6.0", + "info": { + "name": "org.apache.xmlbeans:xmlbeans", + "version": "2.6.0" + } + }, + { + "id": "org.apache.poi:poi-ooxml@3.17", + "info": { + "name": "org.apache.poi:poi-ooxml", + "version": "3.17" + } + }, + { + "id": "com.github.virtuald:curvesapi@1.04", + "info": { + "name": "com.github.virtuald:curvesapi", + "version": "1.04" + } + }, + { + "id": "org.apache.poi:poi@3.17", + "info": { + "name": "org.apache.poi:poi", + "version": "3.17" + } + }, + { + "id": "org.apache.poi:poi-ooxml-schemas@3.17", + "info": { + "name": "org.apache.poi:poi-ooxml-schemas", + "version": "3.17" + } + }, + { + "id": "com.rackspace.apache:xerces2-xsd11@2.11.1", + "info": { + "name": "com.rackspace.apache:xerces2-xsd11", + "version": "2.11.1" + } + }, + { + "id": "com.rackspace.eclipse.webtools.sourceediting:org.eclipse.wst.xml.xpath2.processor@2.1.100", + "info": { + "name": "com.rackspace.eclipse.webtools.sourceediting:org.eclipse.wst.xml.xpath2.processor", + "version": "2.1.100" + } + }, + { + "id": "edu.princeton.cup:java-cup@10k", + "info": { + "name": "edu.princeton.cup:java-cup", + "version": "10k" + } + }, + { + "id": "xml-resolver:xml-resolver@1.2", + "info": { + "name": "xml-resolver:xml-resolver", + "version": "1.2" + } + }, + { + "id": "xml-apis:xml-apis@1.4.01", + "info": { + "name": "xml-apis:xml-apis", + "version": "1.4.01" + } + }, + { + "id": "org.awaitility:awaitility@4.0.3", + "info": { + "name": "org.awaitility:awaitility", + "version": "4.0.3" + } + }, + { + "id": "//integrations/adp_workforce_now:main@bazel", + "info": { + "name": "//integrations/adp_workforce_now:main", + "version": "bazel" + } + }, + { + "id": "//ecomm:main@bazel", + "info": { + "name": "//ecomm:main", + "version": "bazel" + } + }, + { + "id": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-xml-provider@2.9.8", + "info": { + "name": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-xml-provider", + "version": "2.9.8" + } + }, + { + "id": "org.codehaus.woodstox:woodstox-core-asl@4.2.0", + "info": { + "name": "org.codehaus.woodstox:woodstox-core-asl", + "version": "4.2.0" + } + }, + { + "id": "//integrations/adroll:main@bazel", + "info": { + "name": "//integrations/adroll:main", + "version": "bazel" + } + }, + { + "id": "//integrations/adwords:main@bazel", + "info": { + "name": "//integrations/adwords:main", + "version": "bazel" + } + }, + { + "id": "//integrations/cube:main@bazel", + "info": { + "name": "//integrations/cube:main", + "version": "bazel" + } + }, + { + "id": "com.google.api-ads:google-ads@19.0.0", + "info": { + "name": "com.google.api-ads:google-ads", + "version": "19.0.0" + } + }, + { + "id": "com.google.auto.service:auto-service@1.0-rc2", + "info": { + "name": "com.google.auto.service:auto-service", + "version": "1.0-rc2" + } + }, + { + "id": "com.google.auto:auto-common@0.10", + "info": { + "name": "com.google.auto:auto-common", + "version": "0.10" + } + }, + { + "id": "com.google.api-ads:google-ads-codegen@19.0.0", + "info": { + "name": "com.google.api-ads:google-ads-codegen", + "version": "19.0.0" + } + }, + { + "id": "com.google.api-ads:google-ads-stubs-v11@19.0.0", + "info": { + "name": "com.google.api-ads:google-ads-stubs-v11", + "version": "19.0.0" + } + }, + { + "id": "com.google.api-ads:google-ads-stubs-lib@19.0.0", + "info": { + "name": "com.google.api-ads:google-ads-stubs-lib", + "version": "19.0.0" + } + }, + { + "id": "com.google.api-ads:google-ads-stubs-v10@19.0.0", + "info": { + "name": "com.google.api-ads:google-ads-stubs-v10", + "version": "19.0.0" + } + }, + { + "id": "com.google.api-ads:google-ads-stubs-v9@19.0.0", + "info": { + "name": "com.google.api-ads:google-ads-stubs-v9", + "version": "19.0.0" + } + }, + { + "id": "com.squareup:javapoet@1.11.1", + "info": { + "name": "com.squareup:javapoet", + "version": "1.11.1" + } + }, + { + "id": "org.reflections:reflections@0.9.12", + "info": { + "name": "org.reflections:reflections", + "version": "0.9.12" + } + }, + { + "id": "//integrations/google_ads:main@bazel", + "info": { + "name": "//integrations/google_ads:main", + "version": "bazel" + } + }, + { + "id": "//integrations/airtable:main@bazel", + "info": { + "name": "//integrations/airtable:main", + "version": "bazel" + } + }, + { + "id": "//integrations/amazon_ads:main@bazel", + "info": { + "name": "//integrations/amazon_ads:main", + "version": "bazel" + } + }, + { + "id": "//integrations/amplitude:main@bazel", + "info": { + "name": "//integrations/amplitude:main", + "version": "bazel" + } + }, + { + "id": "//integrations/anaplan:main@bazel", + "info": { + "name": "//integrations/anaplan:main", + "version": "bazel" + } + }, + { + "id": "//integrations/apple_search_ads:main@bazel", + "info": { + "name": "//integrations/apple_search_ads:main", + "version": "bazel" + } + }, + { + "id": "//integrations/appsflyer:main@bazel", + "info": { + "name": "//integrations/appsflyer:main", + "version": "bazel" + } + }, + { + "id": "//integrations/asana:main@bazel", + "info": { + "name": "//integrations/asana:main", + "version": "bazel" + } + }, + { + "id": "//integrations/aws_cloudtrail:main@bazel", + "info": { + "name": "//integrations/aws_cloudtrail:main", + "version": "bazel" + } + }, + { + "id": "//integrations/aws_inventory:main@bazel", + "info": { + "name": "//integrations/aws_inventory:main", + "version": "bazel" + } + }, + { + "id": "//integrations/azure_blob_storage:main@bazel", + "info": { + "name": "//integrations/azure_blob_storage:main", + "version": "bazel" + } + }, + { + "id": "//integrations/azure_consumer_file:main@bazel", + "info": { + "name": "//integrations/azure_consumer_file:main", + "version": "bazel" + } + }, + { + "id": "//integrations/azure_service_bus:main@bazel", + "info": { + "name": "//integrations/azure_service_bus:main", + "version": "bazel" + } + }, + { + "id": "//integrations/kafka:main@bazel", + "info": { + "name": "//integrations/kafka:main", + "version": "bazel" + } + }, + { + "id": "//shaded_dependencies/azure:azure_messaging_eventhubs_shaded@bazel", + "info": { + "name": "//shaded_dependencies/azure:azure_messaging_eventhubs_shaded", + "version": "bazel" + } + }, + { + "id": "io.confluent:kafka-protobuf-serializer@5.5.1", + "info": { + "name": "io.confluent:kafka-protobuf-serializer", + "version": "5.5.1" + } + }, + { + "id": "io.confluent:kafka-schema-serializer@5.5.1", + "info": { + "name": "io.confluent:kafka-schema-serializer", + "version": "5.5.1" + } + }, + { + "id": "io.confluent:common-config@5.5.1", + "info": { + "name": "io.confluent:common-config", + "version": "5.5.1" + } + }, + { + "id": "io.confluent:common-utils@5.5.1", + "info": { + "name": "io.confluent:common-utils", + "version": "5.5.1" + } + }, + { + "id": "io.confluent:kafka-schema-registry-client@5.5.1", + "info": { + "name": "io.confluent:kafka-schema-registry-client", + "version": "5.5.1" + } + }, + { + "id": "org.apache.kafka:kafka-clients@2.1.0", + "info": { + "name": "org.apache.kafka:kafka-clients", + "version": "2.1.0" + } + }, + { + "id": "org.lz4:lz4-java@1.8.0", + "info": { + "name": "org.lz4:lz4-java", + "version": "1.8.0" + } + }, + { + "id": "io.confluent:kafka-protobuf-provider@5.5.1", + "info": { + "name": "io.confluent:kafka-protobuf-provider", + "version": "5.5.1" + } + }, + { + "id": "com.squareup.wire:wire-schema@3.2.2", + "info": { + "name": "com.squareup.wire:wire-schema", + "version": "3.2.2" + } + }, + { + "id": "com.squareup.wire:wire-runtime@3.2.2", + "info": { + "name": "com.squareup.wire:wire-runtime", + "version": "3.2.2" + } + }, + { + "id": "org.jetbrains.kotlin:kotlin-stdlib-jdk8@1.3.71", + "info": { + "name": "org.jetbrains.kotlin:kotlin-stdlib-jdk8", + "version": "1.3.71" + } + }, + { + "id": "org.jetbrains.kotlin:kotlin-stdlib-jdk7@1.3.71", + "info": { + "name": "org.jetbrains.kotlin:kotlin-stdlib-jdk7", + "version": "1.3.71" + } + }, + { + "id": "//shaded_dependencies/azure:azure_core_shaded@bazel", + "info": { + "name": "//shaded_dependencies/azure:azure_core_shaded", + "version": "bazel" + } + }, + { + "id": "//shaded_dependencies/azure:azure_messaging_servicebus_shaded@bazel", + "info": { + "name": "//shaded_dependencies/azure:azure_messaging_servicebus_shaded", + "version": "bazel" + } + }, + { + "id": "//shaded_dependencies/azure:microsoft_azure_servicebus_shaded@bazel", + "info": { + "name": "//shaded_dependencies/azure:microsoft_azure_servicebus_shaded", + "version": "bazel" + } + }, + { + "id": "com.azure:azure-core-amqp@2.3.3", + "info": { + "name": "com.azure:azure-core-amqp", + "version": "2.3.3" + } + }, + { + "id": "com.azure:azure-core@1.21.0", + "info": { + "name": "com.azure:azure-core", + "version": "1.21.0" + } + }, + { + "id": "io.projectreactor:reactor-core@3.4.10", + "info": { + "name": "io.projectreactor:reactor-core", + "version": "3.4.10" + } + }, + { + "id": "com.fasterxml.jackson.core:jackson-annotations@2.12.5", + "info": { + "name": "com.fasterxml.jackson.core:jackson-annotations", + "version": "2.12.5" + } + }, + { + "id": "com.fasterxml.jackson.core:jackson-databind@2.12.5", + "info": { + "name": "com.fasterxml.jackson.core:jackson-databind", + "version": "2.12.5" + } + }, + { + "id": "com.fasterxml.jackson.core:jackson-core@2.12.5", + "info": { + "name": "com.fasterxml.jackson.core:jackson-core", + "version": "2.12.5" + } + }, + { + "id": "io.netty:netty-tcnative-boringssl-static@2.0.43.Final", + "info": { + "name": "io.netty:netty-tcnative-boringssl-static", + "version": "2.0.43.Final" + } + }, + { + "id": "org.slf4j:slf4j-api@1.7.32", + "info": { + "name": "org.slf4j:slf4j-api", + "version": "1.7.32" + } + }, + { + "id": "com.fasterxml.jackson.dataformat:jackson-dataformat-xml@2.12.5", + "info": { + "name": "com.fasterxml.jackson.dataformat:jackson-dataformat-xml", + "version": "2.12.5" + } + }, + { + "id": "com.fasterxml.jackson.module:jackson-module-jaxb-annotations@2.12.5", + "info": { + "name": "com.fasterxml.jackson.module:jackson-module-jaxb-annotations", + "version": "2.12.5" + } + }, + { + "id": "jakarta.activation:jakarta.activation-api@1.2.2", + "info": { + "name": "jakarta.activation:jakarta.activation-api", + "version": "1.2.2" + } + }, + { + "id": "jakarta.xml.bind:jakarta.xml.bind-api@2.3.3", + "info": { + "name": "jakarta.xml.bind:jakarta.xml.bind-api", + "version": "2.3.3" + } + }, + { + "id": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.12.5", + "info": { + "name": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310", + "version": "2.12.5" + } + }, + { + "id": "com.microsoft.azure:qpid-proton-j-extensions@1.2.4", + "info": { + "name": "com.microsoft.azure:qpid-proton-j-extensions", + "version": "1.2.4" + } + }, + { + "id": "org.apache.qpid:proton-j@0.33.8", + "info": { + "name": "org.apache.qpid:proton-j", + "version": "0.33.8" + } + }, + { + "id": "com.azure:azure-core-http-netty@1.11.1", + "info": { + "name": "com.azure:azure-core-http-netty", + "version": "1.11.1" + } + }, + { + "id": "io.netty:netty-handler-proxy@4.1.68.Final", + "info": { + "name": "io.netty:netty-handler-proxy", + "version": "4.1.68.Final" + } + }, + { + "id": "io.netty:netty-common@4.1.68.Final", + "info": { + "name": "io.netty:netty-common", + "version": "4.1.68.Final" + } + }, + { + "id": "io.netty:netty-codec@4.1.68.Final", + "info": { + "name": "io.netty:netty-codec", + "version": "4.1.68.Final" + } + }, + { + "id": "io.netty:netty-buffer@4.1.68.Final", + "info": { + "name": "io.netty:netty-buffer", + "version": "4.1.68.Final" + } + }, + { + "id": "io.netty:netty-transport@4.1.68.Final", + "info": { + "name": "io.netty:netty-transport", + "version": "4.1.68.Final" + } + }, + { + "id": "io.netty:netty-resolver@4.1.68.Final", + "info": { + "name": "io.netty:netty-resolver", + "version": "4.1.68.Final" + } + }, + { + "id": "io.netty:netty-codec-socks@4.1.68.Final", + "info": { + "name": "io.netty:netty-codec-socks", + "version": "4.1.68.Final" + } + }, + { + "id": "io.netty:netty-codec-http@4.1.68.Final", + "info": { + "name": "io.netty:netty-codec-http", + "version": "4.1.68.Final" + } + }, + { + "id": "io.netty:netty-handler@4.1.68.Final", + "info": { + "name": "io.netty:netty-handler", + "version": "4.1.68.Final" + } + }, + { + "id": "io.projectreactor.netty:reactor-netty-http@1.0.11", + "info": { + "name": "io.projectreactor.netty:reactor-netty-http", + "version": "1.0.11" + } + }, + { + "id": "io.projectreactor.netty:reactor-netty-core@1.0.11", + "info": { + "name": "io.projectreactor.netty:reactor-netty-core", + "version": "1.0.11" + } + }, + { + "id": "io.netty:netty-resolver-dns@4.1.68.Final", + "info": { + "name": "io.netty:netty-resolver-dns", + "version": "4.1.68.Final" + } + }, + { + "id": "io.netty:netty-codec-dns@4.1.68.Final", + "info": { + "name": "io.netty:netty-codec-dns", + "version": "4.1.68.Final" + } + }, + { + "id": "io.netty:netty-transport-native-epoll:jar:linux-x86_64@4.1.68.Final", + "info": { + "name": "io.netty:netty-transport-native-epoll:jar:linux-x86_64", + "version": "4.1.68.Final" + } + }, + { + "id": "io.netty:netty-transport-native-unix-common@4.1.68.Final", + "info": { + "name": "io.netty:netty-transport-native-unix-common", + "version": "4.1.68.Final" + } + }, + { + "id": "io.netty:netty-resolver-dns-native-macos:jar:osx-x86_64@4.1.68.Final", + "info": { + "name": "io.netty:netty-resolver-dns-native-macos:jar:osx-x86_64", + "version": "4.1.68.Final" + } + }, + { + "id": "io.netty:netty-codec-http2@4.1.68.Final", + "info": { + "name": "io.netty:netty-codec-http2", + "version": "4.1.68.Final" + } + }, + { + "id": "io.netty:netty-transport-native-kqueue:jar:osx-x86_64@4.1.68.Final", + "info": { + "name": "io.netty:netty-transport-native-kqueue:jar:osx-x86_64", + "version": "4.1.68.Final" + } + }, + { + "id": "//integrations/big_commerce:main@bazel", + "info": { + "name": "//integrations/big_commerce:main", + "version": "bazel" + } + }, + { + "id": "//integrations/bingads:main@bazel", + "info": { + "name": "//integrations/bingads:main", + "version": "bazel" + } + }, + { + "id": "//xml_util:main@bazel", + "info": { + "name": "//xml_util:main", + "version": "bazel" + } + }, + { + "id": "com.microsoft.bingads:microsoft.bingads@12.0.3", + "info": { + "name": "com.microsoft.bingads:microsoft.bingads", + "version": "12.0.3" + } + }, + { + "id": "com.googlecode.jcsv:jcsv@1.4.0", + "info": { + "name": "com.googlecode.jcsv:jcsv", + "version": "1.4.0" + } + }, + { + "id": "org.apache.cxf:cxf-rt-transports-http@3.2.14", + "info": { + "name": "org.apache.cxf:cxf-rt-transports-http", + "version": "3.2.14" + } + }, + { + "id": "org.apache.cxf:cxf-core@3.2.14", + "info": { + "name": "org.apache.cxf:cxf-core", + "version": "3.2.14" + } + }, + { + "id": "org.apache.ws.xmlschema:xmlschema-core@2.2.5", + "info": { + "name": "org.apache.ws.xmlschema:xmlschema-core", + "version": "2.2.5" + } + }, + { + "id": "org.apache.cxf:cxf-rt-frontend-jaxws@3.2.14", + "info": { + "name": "org.apache.cxf:cxf-rt-frontend-jaxws", + "version": "3.2.14" + } + }, + { + "id": "org.apache.cxf:cxf-rt-ws-addr@3.2.14", + "info": { + "name": "org.apache.cxf:cxf-rt-ws-addr", + "version": "3.2.14" + } + }, + { + "id": "org.apache.cxf:cxf-rt-bindings-soap@3.2.14", + "info": { + "name": "org.apache.cxf:cxf-rt-bindings-soap", + "version": "3.2.14" + } + }, + { + "id": "org.apache.cxf:cxf-rt-databinding-jaxb@3.2.14", + "info": { + "name": "org.apache.cxf:cxf-rt-databinding-jaxb", + "version": "3.2.14" + } + }, + { + "id": "org.apache.cxf:cxf-rt-wsdl@3.2.14", + "info": { + "name": "org.apache.cxf:cxf-rt-wsdl", + "version": "3.2.14" + } + }, + { + "id": "org.apache.cxf:cxf-rt-ws-policy@3.2.14", + "info": { + "name": "org.apache.cxf:cxf-rt-ws-policy", + "version": "3.2.14" + } + }, + { + "id": "org.apache.neethi:neethi@3.1.1", + "info": { + "name": "org.apache.neethi:neethi", + "version": "3.1.1" + } + }, + { + "id": "org.apache.cxf:cxf-rt-bindings-xml@3.2.14", + "info": { + "name": "org.apache.cxf:cxf-rt-bindings-xml", + "version": "3.2.14" + } + }, + { + "id": "org.apache.cxf:cxf-rt-frontend-simple@3.2.14", + "info": { + "name": "org.apache.cxf:cxf-rt-frontend-simple", + "version": "3.2.14" + } + }, + { + "id": "org.apache.httpcomponents:httpmime@4.5.13", + "info": { + "name": "org.apache.httpcomponents:httpmime", + "version": "4.5.13" + } + }, + { + "id": "//integrations/box:main@bazel", + "info": { + "name": "//integrations/box:main", + "version": "bazel" + } + }, + { + "id": "//integrations/braintree:main@bazel", + "info": { + "name": "//integrations/braintree:main", + "version": "bazel" + } + }, + { + "id": "com.braintreepayments.gateway:braintree-java@2.108.0", + "info": { + "name": "com.braintreepayments.gateway:braintree-java", + "version": "2.108.0" + } + }, + { + "id": "com.fasterxml.jackson.jr:jackson-jr-objects@2.9.9", + "info": { + "name": "com.fasterxml.jackson.jr:jackson-jr-objects", + "version": "2.9.9" + } + }, + { + "id": "org.apache.commons:commons-csv@1.8", + "info": { + "name": "org.apache.commons:commons-csv", + "version": "1.8" + } + }, + { + "id": "org.osgi:org.osgi.core@4.2.0", + "info": { + "name": "org.osgi:org.osgi.core", + "version": "4.2.0" + } + }, + { + "id": "//integrations/branch:main@bazel", + "info": { + "name": "//integrations/branch:main", + "version": "bazel" + } + }, + { + "id": "//integrations/business_central:main@bazel", + "info": { + "name": "//integrations/business_central:main", + "version": "bazel" + } + }, + { + "id": "//integrations/cloudfront:main@bazel", + "info": { + "name": "//integrations/cloudfront:main", + "version": "bazel" + } + }, + { + "id": "//integrations/s3:main@bazel", + "info": { + "name": "//integrations/s3:main", + "version": "bazel" + } + }, + { + "id": "//integrations/coupa:main@bazel", + "info": { + "name": "//integrations/coupa:main", + "version": "bazel" + } + }, + { + "id": "//integrations/criteo:main@bazel", + "info": { + "name": "//integrations/criteo:main", + "version": "bazel" + } + }, + { + "id": "//integrations/db2:main@bazel", + "info": { + "name": "//integrations/db2:main", + "version": "bazel" + } + }, + { + "id": "//utils/byte_array_list:main@bazel", + "info": { + "name": "//utils/byte_array_list:main", + "version": "bazel" + } + }, + { + "id": "//integrations/document:main@bazel", + "info": { + "name": "//integrations/document:main", + "version": "bazel" + } + }, + { + "id": "//integrations/mongo:main@bazel", + "info": { + "name": "//integrations/mongo:main", + "version": "bazel" + } + }, + { + "id": "dnsjava:dnsjava@3.0.2", + "info": { + "name": "dnsjava:dnsjava", + "version": "3.0.2" + } + }, + { + "id": "io.opentelemetry:opentelemetry-api@0.13.1", + "info": { + "name": "io.opentelemetry:opentelemetry-api", + "version": "0.13.1" + } + }, + { + "id": "io.opentelemetry:opentelemetry-api-metrics@0.13.0-alpha", + "info": { + "name": "io.opentelemetry:opentelemetry-api-metrics", + "version": "0.13.0-alpha" + } + }, + { + "id": "io.opentelemetry:opentelemetry-api-common@0.13.1", + "info": { + "name": "io.opentelemetry:opentelemetry-api-common", + "version": "0.13.1" + } + }, + { + "id": "io.opentelemetry:opentelemetry-context@0.13.1", + "info": { + "name": "io.opentelemetry:opentelemetry-context", + "version": "0.13.1" + } + }, + { + "id": "io.opentelemetry:opentelemetry-api-trace@0.13.1", + "info": { + "name": "io.opentelemetry:opentelemetry-api-trace", + "version": "0.13.1" + } + }, + { + "id": "io.opentelemetry:opentelemetry-api-baggage@0.13.1", + "info": { + "name": "io.opentelemetry:opentelemetry-api-baggage", + "version": "0.13.1" + } + }, + { + "id": "io.opentelemetry:opentelemetry-extension-annotations@0.13.1", + "info": { + "name": "io.opentelemetry:opentelemetry-extension-annotations", + "version": "0.13.1" + } + }, + { + "id": "org.mongodb:mongo-java-driver@3.12.0", + "info": { + "name": "org.mongodb:mongo-java-driver", + "version": "3.12.0" + } + }, + { + "id": "//integrations/double_click_campaign_manager:main@bazel", + "info": { + "name": "//integrations/double_click_campaign_manager:main", + "version": "bazel" + } + }, + { + "id": "//integrations/dropbox:main@bazel", + "info": { + "name": "//integrations/dropbox:main", + "version": "bazel" + } + }, + { + "id": "com.dropbox.core:dropbox-core-sdk@4.0.0", + "info": { + "name": "com.dropbox.core:dropbox-core-sdk", + "version": "4.0.0" + } + }, + { + "id": "//integrations/dummy_postgres:main@bazel", + "info": { + "name": "//integrations/dummy_postgres:main", + "version": "bazel" + } + }, + { + "id": "//integrations/dynamics365:main@bazel", + "info": { + "name": "//integrations/dynamics365:main", + "version": "bazel" + } + }, + { + "id": "//integrations/dynamodb:main@bazel", + "info": { + "name": "//integrations/dynamodb:main", + "version": "bazel" + } + }, + { + "id": "@acmecorp_amazon_kinesis_client//:main@bazel", + "info": { + "name": "@acmecorp_amazon_kinesis_client//:main", + "version": "bazel" + } + }, + { + "id": "com.amazonaws:aws-java-sdk-kinesis@1.12.84", + "info": { + "name": "com.amazonaws:aws-java-sdk-kinesis", + "version": "1.12.84" + } + }, + { + "id": "com.amazonaws:dynamodb-streams-kinesis-adapter@1.4.0", + "info": { + "name": "com.amazonaws:dynamodb-streams-kinesis-adapter", + "version": "1.4.0" + } + }, + { + "id": "com.amazonaws:amazon-kinesis-client@1.13.0", + "info": { + "name": "com.amazonaws:amazon-kinesis-client", + "version": "1.13.0" + } + }, + { + "id": "//integrations/elasticsearch:main@bazel", + "info": { + "name": "//integrations/elasticsearch:main", + "version": "bazel" + } + }, + { + "id": "org.apache.lucene:lucene-core@8.9.0", + "info": { + "name": "org.apache.lucene:lucene-core", + "version": "8.9.0" + } + }, + { + "id": "org.elasticsearch.client:elasticsearch-rest-client@7.14.0", + "info": { + "name": "org.elasticsearch.client:elasticsearch-rest-client", + "version": "7.14.0" + } + }, + { + "id": "org.apache.httpcomponents:httpcore-nio@4.4.13", + "info": { + "name": "org.apache.httpcomponents:httpcore-nio", + "version": "4.4.13" + } + }, + { + "id": "org.apache.httpcomponents:httpasyncclient@4.1.4", + "info": { + "name": "org.apache.httpcomponents:httpasyncclient", + "version": "4.1.4" + } + }, + { + "id": "org.elasticsearch.client:elasticsearch-rest-high-level-client@7.14.0", + "info": { + "name": "org.elasticsearch.client:elasticsearch-rest-high-level-client", + "version": "7.14.0" + } + }, + { + "id": "org.elasticsearch.plugin:parent-join-client@7.14.0", + "info": { + "name": "org.elasticsearch.plugin:parent-join-client", + "version": "7.14.0" + } + }, + { + "id": "org.elasticsearch.plugin:lang-mustache-client@7.14.0", + "info": { + "name": "org.elasticsearch.plugin:lang-mustache-client", + "version": "7.14.0" + } + }, + { + "id": "com.github.spullara.mustache.java:compiler@0.9.6", + "info": { + "name": "com.github.spullara.mustache.java:compiler", + "version": "0.9.6" + } + }, + { + "id": "org.elasticsearch.plugin:aggs-matrix-stats-client@7.14.0", + "info": { + "name": "org.elasticsearch.plugin:aggs-matrix-stats-client", + "version": "7.14.0" + } + }, + { + "id": "org.elasticsearch.plugin:mapper-extras-client@7.14.0", + "info": { + "name": "org.elasticsearch.plugin:mapper-extras-client", + "version": "7.14.0" + } + }, + { + "id": "org.elasticsearch:elasticsearch@7.14.0", + "info": { + "name": "org.elasticsearch:elasticsearch", + "version": "7.14.0" + } + }, + { + "id": "org.apache.lucene:lucene-suggest@8.9.0", + "info": { + "name": "org.apache.lucene:lucene-suggest", + "version": "8.9.0" + } + }, + { + "id": "org.elasticsearch:jna@5.7.0-1", + "info": { + "name": "org.elasticsearch:jna", + "version": "5.7.0-1" + } + }, + { + "id": "org.apache.lucene:lucene-highlighter@8.9.0", + "info": { + "name": "org.apache.lucene:lucene-highlighter", + "version": "8.9.0" + } + }, + { + "id": "com.tdunning:t-digest@3.2", + "info": { + "name": "com.tdunning:t-digest", + "version": "3.2" + } + }, + { + "id": "org.elasticsearch:elasticsearch-cli@7.14.0", + "info": { + "name": "org.elasticsearch:elasticsearch-cli", + "version": "7.14.0" + } + }, + { + "id": "org.elasticsearch:elasticsearch-core@7.14.0", + "info": { + "name": "org.elasticsearch:elasticsearch-core", + "version": "7.14.0" + } + }, + { + "id": "org.elasticsearch:elasticsearch-x-content@7.14.0", + "info": { + "name": "org.elasticsearch:elasticsearch-x-content", + "version": "7.14.0" + } + }, + { + "id": "org.apache.lucene:lucene-grouping@8.9.0", + "info": { + "name": "org.apache.lucene:lucene-grouping", + "version": "8.9.0" + } + }, + { + "id": "org.apache.lucene:lucene-join@8.9.0", + "info": { + "name": "org.apache.lucene:lucene-join", + "version": "8.9.0" + } + }, + { + "id": "org.apache.logging.log4j:log4j-api@2.17.1", + "info": { + "name": "org.apache.logging.log4j:log4j-api", + "version": "2.17.1" + } + }, + { + "id": "com.carrotsearch:hppc@0.8.1", + "info": { + "name": "com.carrotsearch:hppc", + "version": "0.8.1" + } + }, + { + "id": "org.apache.lucene:lucene-sandbox@8.9.0", + "info": { + "name": "org.apache.lucene:lucene-sandbox", + "version": "8.9.0" + } + }, + { + "id": "org.apache.lucene:lucene-backward-codecs@8.9.0", + "info": { + "name": "org.apache.lucene:lucene-backward-codecs", + "version": "8.9.0" + } + }, + { + "id": "org.apache.lucene:lucene-spatial-extras@8.9.0", + "info": { + "name": "org.apache.lucene:lucene-spatial-extras", + "version": "8.9.0" + } + }, + { + "id": "org.apache.lucene:lucene-spatial3d@8.9.0", + "info": { + "name": "org.apache.lucene:lucene-spatial3d", + "version": "8.9.0" + } + }, + { + "id": "org.apache.lucene:lucene-misc@8.9.0", + "info": { + "name": "org.apache.lucene:lucene-misc", + "version": "8.9.0" + } + }, + { + "id": "org.elasticsearch:elasticsearch-geo@7.14.0", + "info": { + "name": "org.elasticsearch:elasticsearch-geo", + "version": "7.14.0" + } + }, + { + "id": "org.apache.lucene:lucene-analyzers-common@8.9.0", + "info": { + "name": "org.apache.lucene:lucene-analyzers-common", + "version": "8.9.0" + } + }, + { + "id": "org.apache.lucene:lucene-memory@8.9.0", + "info": { + "name": "org.apache.lucene:lucene-memory", + "version": "8.9.0" + } + }, + { + "id": "org.apache.lucene:lucene-queries@8.9.0", + "info": { + "name": "org.apache.lucene:lucene-queries", + "version": "8.9.0" + } + }, + { + "id": "org.elasticsearch:elasticsearch-secure-sm@7.14.0", + "info": { + "name": "org.elasticsearch:elasticsearch-secure-sm", + "version": "7.14.0" + } + }, + { + "id": "org.elasticsearch:elasticsearch-plugin-classloader@7.14.0", + "info": { + "name": "org.elasticsearch:elasticsearch-plugin-classloader", + "version": "7.14.0" + } + }, + { + "id": "org.apache.lucene:lucene-queryparser@8.9.0", + "info": { + "name": "org.apache.lucene:lucene-queryparser", + "version": "8.9.0" + } + }, + { + "id": "org.elasticsearch.plugin:rank-eval-client@7.14.0", + "info": { + "name": "org.elasticsearch.plugin:rank-eval-client", + "version": "7.14.0" + } + }, + { + "id": "org.opensearch.client:opensearch-rest-client@1.1.0", + "info": { + "name": "org.opensearch.client:opensearch-rest-client", + "version": "1.1.0" + } + }, + { + "id": "org.opensearch.client:opensearch-rest-high-level-client@1.1.0", + "info": { + "name": "org.opensearch.client:opensearch-rest-high-level-client", + "version": "1.1.0" + } + }, + { + "id": "org.opensearch.plugin:aggs-matrix-stats-client@1.1.0", + "info": { + "name": "org.opensearch.plugin:aggs-matrix-stats-client", + "version": "1.1.0" + } + }, + { + "id": "org.opensearch.plugin:lang-mustache-client@1.1.0", + "info": { + "name": "org.opensearch.plugin:lang-mustache-client", + "version": "1.1.0" + } + }, + { + "id": "org.opensearch.plugin:mapper-extras-client@1.1.0", + "info": { + "name": "org.opensearch.plugin:mapper-extras-client", + "version": "1.1.0" + } + }, + { + "id": "org.opensearch:opensearch@1.1.0", + "info": { + "name": "org.opensearch:opensearch", + "version": "1.1.0" + } + }, + { + "id": "org.opensearch:opensearch-cli@1.1.0", + "info": { + "name": "org.opensearch:opensearch-cli", + "version": "1.1.0" + } + }, + { + "id": "org.opensearch:opensearch-core@1.1.0", + "info": { + "name": "org.opensearch:opensearch-core", + "version": "1.1.0" + } + }, + { + "id": "org.opensearch:opensearch-geo@1.1.0", + "info": { + "name": "org.opensearch:opensearch-geo", + "version": "1.1.0" + } + }, + { + "id": "org.opensearch:opensearch-secure-sm@1.1.0", + "info": { + "name": "org.opensearch:opensearch-secure-sm", + "version": "1.1.0" + } + }, + { + "id": "org.opensearch:opensearch-x-content@1.1.0", + "info": { + "name": "org.opensearch:opensearch-x-content", + "version": "1.1.0" + } + }, + { + "id": "org.opensearch.plugin:rank-eval-client@1.1.0", + "info": { + "name": "org.opensearch.plugin:rank-eval-client", + "version": "1.1.0" + } + }, + { + "id": "org.opensearch.plugin:parent-join-client@1.1.0", + "info": { + "name": "org.opensearch.plugin:parent-join-client", + "version": "1.1.0" + } + }, + { + "id": "//integrations/eloqua:main@bazel", + "info": { + "name": "//integrations/eloqua:main", + "version": "bazel" + } + }, + { + "id": "//integrations/email:main@bazel", + "info": { + "name": "//integrations/email:main", + "version": "bazel" + } + }, + { + "id": "javax.mail:mail@1.4.5", + "info": { + "name": "javax.mail:mail", + "version": "1.4.5" + } + }, + { + "id": "//integrations/facebook:main@bazel", + "info": { + "name": "//integrations/facebook:main", + "version": "bazel" + } + }, + { + "id": "//integrations/acmecorp_log:main@bazel", + "info": { + "name": "//integrations/acmecorp_log:main", + "version": "bazel" + } + }, + { + "id": "org.apache.logging.log4j:log4j-core@2.17.1", + "info": { + "name": "org.apache.logging.log4j:log4j-core", + "version": "2.17.1" + } + }, + { + "id": "//integrations/freshdesk:main@bazel", + "info": { + "name": "//integrations/freshdesk:main", + "version": "bazel" + } + }, + { + "id": "//integrations/freshservice_classic:main@bazel", + "info": { + "name": "//integrations/freshservice_classic:main", + "version": "bazel" + } + }, + { + "id": "//integrations/front:main@bazel", + "info": { + "name": "//integrations/front:main", + "version": "bazel" + } + }, + { + "id": "//integrations/functions/aws_lambda:main@bazel", + "info": { + "name": "//integrations/functions/aws_lambda:main", + "version": "bazel" + } + }, + { + "id": "//integrations/functions/common:main@bazel", + "info": { + "name": "//integrations/functions/common:main", + "version": "bazel" + } + }, + { + "id": "com.amazonaws:aws-java-sdk-lambda@1.12.84", + "info": { + "name": "com.amazonaws:aws-java-sdk-lambda", + "version": "1.12.84" + } + }, + { + "id": "//integrations/functions/azure_function:main@bazel", + "info": { + "name": "//integrations/functions/azure_function:main", + "version": "bazel" + } + }, + { + "id": "//integrations/functions/google_cloud_function:main@bazel", + "info": { + "name": "//integrations/functions/google_cloud_function:main", + "version": "bazel" + } + }, + { + "id": "//integrations/gcs:main@bazel", + "info": { + "name": "//integrations/gcs:main", + "version": "bazel" + } + }, + { + "id": "//integrations/gainsight_customer_success:main@bazel", + "info": { + "name": "//integrations/gainsight_customer_success:main", + "version": "bazel" + } + }, + { + "id": "//integrations/gdrive:main@bazel", + "info": { + "name": "//integrations/gdrive:main", + "version": "bazel" + } + }, + { + "id": "//integrations/gsheets:main@bazel", + "info": { + "name": "//integrations/gsheets:main", + "version": "bazel" + } + }, + { + "id": "com.google.apis:google-api-services-drive@v3-rev197-1.25.0", + "info": { + "name": "com.google.apis:google-api-services-drive", + "version": "v3-rev197-1.25.0" + } + }, + { + "id": "com.google.oauth-client:google-oauth-client-jetty@1.23.0", + "info": { + "name": "com.google.oauth-client:google-oauth-client-jetty", + "version": "1.23.0" + } + }, + { + "id": "com.google.oauth-client:google-oauth-client-java6@1.23.0", + "info": { + "name": "com.google.oauth-client:google-oauth-client-java6", + "version": "1.23.0" + } + }, + { + "id": "//integrations/github:main@bazel", + "info": { + "name": "//integrations/github:main", + "version": "bazel" + } + }, + { + "id": "//integrations/google_ad_manager:main@bazel", + "info": { + "name": "//integrations/google_ad_manager:main", + "version": "bazel" + } + }, + { + "id": "//integrations/google_analytics:main@bazel", + "info": { + "name": "//integrations/google_analytics:main", + "version": "bazel" + } + }, + { + "id": "//util:rest_api@bazel", + "info": { + "name": "//util:rest_api", + "version": "bazel" + } + }, + { + "id": "//utils/time:acmecorp_clock@bazel", + "info": { + "name": "//utils/time:acmecorp_clock", + "version": "bazel" + } + }, + { + "id": "//utils/token_api:main@bazel", + "info": { + "name": "//utils/token_api:main", + "version": "bazel" + } + }, + { + "id": "//integrations/google_analytics_4:main@bazel", + "info": { + "name": "//integrations/google_analytics_4:main", + "version": "bazel" + } + }, + { + "id": "//integrations/google_analytics_4_export:main@bazel", + "info": { + "name": "//integrations/google_analytics_4_export:main", + "version": "bazel" + } + }, + { + "id": "//integrations/google_analytics_360:main@bazel", + "info": { + "name": "//integrations/google_analytics_360:main", + "version": "bazel" + } + }, + { + "id": "//integrations/google_display_and_video_360:main@bazel", + "info": { + "name": "//integrations/google_display_and_video_360:main", + "version": "bazel" + } + }, + { + "id": "//integrations/google_search_ads_360:main@bazel", + "info": { + "name": "//integrations/google_search_ads_360:main", + "version": "bazel" + } + }, + { + "id": "//integrations/google_play:main@bazel", + "info": { + "name": "//integrations/google_play:main", + "version": "bazel" + } + }, + { + "id": "//integrations/google_search_console:main@bazel", + "info": { + "name": "//integrations/google_search_console:main", + "version": "bazel" + } + }, + { + "id": "//integrations/greenhouse:main@bazel", + "info": { + "name": "//integrations/greenhouse:main", + "version": "bazel" + } + }, + { + "id": "//integrations/heap:main@bazel", + "info": { + "name": "//integrations/heap:main", + "version": "bazel" + } + }, + { + "id": "//integrations/height:main@bazel", + "info": { + "name": "//integrations/height:main", + "version": "bazel" + } + }, + { + "id": "//integrations/helpscout:main@bazel", + "info": { + "name": "//integrations/helpscout:main", + "version": "bazel" + } + }, + { + "id": "//integrations/hubspot:main@bazel", + "info": { + "name": "//integrations/hubspot:main", + "version": "bazel" + } + }, + { + "id": "//integrations/instagram:main@bazel", + "info": { + "name": "//integrations/instagram:main", + "version": "bazel" + } + }, + { + "id": "org.assertj:assertj-core@3.14.0", + "info": { + "name": "org.assertj:assertj-core", + "version": "3.14.0" + } + }, + { + "id": "//integrations/intercom:main@bazel", + "info": { + "name": "//integrations/intercom:main", + "version": "bazel" + } + }, + { + "id": "//integrations/iterable:main@bazel", + "info": { + "name": "//integrations/iterable:main", + "version": "bazel" + } + }, + { + "id": "//integrations/itunes_connect:main@bazel", + "info": { + "name": "//integrations/itunes_connect:main", + "version": "bazel" + } + }, + { + "id": "//dockerized/google_cloud/datastore:main@bazel", + "info": { + "name": "//dockerized/google_cloud/datastore:main", + "version": "bazel" + } + }, + { + "id": "net.lingala.zip4j:zip4j@1.3.2", + "info": { + "name": "net.lingala.zip4j:zip4j", + "version": "1.3.2" + } + }, + { + "id": "//integrations/jira:main@bazel", + "info": { + "name": "//integrations/jira:main", + "version": "bazel" + } + }, + { + "id": "//core_implementation:standard_renaming_filter_2@bazel", + "info": { + "name": "//core_implementation:standard_renaming_filter_2", + "version": "bazel" + } + }, + { + "id": "//integrations/kinesis:main@bazel", + "info": { + "name": "//integrations/kinesis:main", + "version": "bazel" + } + }, + { + "id": "//integrations/klaviyo:main@bazel", + "info": { + "name": "//integrations/klaviyo:main", + "version": "bazel" + } + }, + { + "id": "//integrations/kustomer:main@bazel", + "info": { + "name": "//integrations/kustomer:main", + "version": "bazel" + } + }, + { + "id": "//integrations/lever:main@bazel", + "info": { + "name": "//integrations/lever:main", + "version": "bazel" + } + }, + { + "id": "//integrations/lightspeed_retail:main@bazel", + "info": { + "name": "//integrations/lightspeed_retail:main", + "version": "bazel" + } + }, + { + "id": "//integrations/linkedin:main@bazel", + "info": { + "name": "//integrations/linkedin:main", + "version": "bazel" + } + }, + { + "id": "//integrations/mailchimp:main@bazel", + "info": { + "name": "//integrations/mailchimp:main", + "version": "bazel" + } + }, + { + "id": "//integrations/mandrill:main@bazel", + "info": { + "name": "//integrations/mandrill:main", + "version": "bazel" + } + }, + { + "id": "//integrations/marin:main@bazel", + "info": { + "name": "//integrations/marin:main", + "version": "bazel" + } + }, + { + "id": "//integrations/sftp:main@bazel", + "info": { + "name": "//integrations/sftp:main", + "version": "bazel" + } + }, + { + "id": "//integrations/marketo:main@bazel", + "info": { + "name": "//integrations/marketo:main", + "version": "bazel" + } + }, + { + "id": "//size:main@bazel", + "info": { + "name": "//size:main", + "version": "bazel" + } + }, + { + "id": "com.sun.xml.messaging.saaj:saaj-impl@1.3.25", + "info": { + "name": "com.sun.xml.messaging.saaj:saaj-impl", + "version": "1.3.25" + } + }, + { + "id": "org.jvnet.mimepull:mimepull@1.9.6", + "info": { + "name": "org.jvnet.mimepull:mimepull", + "version": "1.9.6" + } + }, + { + "id": "org.jvnet.staxex:stax-ex@1.7.7", + "info": { + "name": "org.jvnet.staxex:stax-ex", + "version": "1.7.7" + } + }, + { + "id": "//integrations/mavenlink:main@bazel", + "info": { + "name": "//integrations/mavenlink:main", + "version": "bazel" + } + }, + { + "id": "//integrations/medallia:main@bazel", + "info": { + "name": "//integrations/medallia:main", + "version": "bazel" + } + }, + { + "id": "//http_client:main@bazel", + "info": { + "name": "//http_client:main", + "version": "bazel" + } + }, + { + "id": "io.github.resilience4j:resilience4j-core@1.7.1", + "info": { + "name": "io.github.resilience4j:resilience4j-core", + "version": "1.7.1" + } + }, + { + "id": "io.vavr:vavr@0.10.2", + "info": { + "name": "io.vavr:vavr", + "version": "0.10.2" + } + }, + { + "id": "io.vavr:vavr-match@0.10.2", + "info": { + "name": "io.vavr:vavr-match", + "version": "0.10.2" + } + }, + { + "id": "io.github.resilience4j:resilience4j-retry@1.7.1", + "info": { + "name": "io.github.resilience4j:resilience4j-retry", + "version": "1.7.1" + } + }, + { + "id": "//integrations/microsoft_lists:main@bazel", + "info": { + "name": "//integrations/microsoft_lists:main", + "version": "bazel" + } + }, + { + "id": "//integrations/mixpanel:main@bazel", + "info": { + "name": "//integrations/mixpanel:main", + "version": "bazel" + } + }, + { + "id": "//integrations/mysql:main@bazel", + "info": { + "name": "//integrations/mysql:main", + "version": "bazel" + } + }, + { + "id": "//integrations/optimizely:main@bazel", + "info": { + "name": "//integrations/optimizely:main", + "version": "bazel" + } + }, + { + "id": "//integrations/oracle_cloud_apps_cx:main@bazel", + "info": { + "name": "//integrations/oracle_cloud_apps_cx:main", + "version": "bazel" + } + }, + { + "id": "//integrations/oracle_cloud_apps:main@bazel", + "info": { + "name": "//integrations/oracle_cloud_apps:main", + "version": "bazel" + } + }, + { + "id": "//integrations/oracle_cloud_apps_erp_scm:main@bazel", + "info": { + "name": "//integrations/oracle_cloud_apps_erp_scm:main", + "version": "bazel" + } + }, + { + "id": "//integrations/oracle_fusion_cloud_apps:main@bazel", + "info": { + "name": "//integrations/oracle_fusion_cloud_apps:main", + "version": "bazel" + } + }, + { + "id": "com.opencsv:opencsv@4.1", + "info": { + "name": "com.opencsv:opencsv", + "version": "4.1" + } + }, + { + "id": "org.apache.commons:commons-text@1.1", + "info": { + "name": "org.apache.commons:commons-text", + "version": "1.1" + } + }, + { + "id": "org.glassfish.jersey.media:jersey-media-multipart@2.31", + "info": { + "name": "org.glassfish.jersey.media:jersey-media-multipart", + "version": "2.31" + } + }, + { + "id": "//integrations/oracle:main@bazel", + "info": { + "name": "//integrations/oracle:main", + "version": "bazel" + } + }, + { + "id": "//integrations/debezium_sql_parser:main@bazel", + "info": { + "name": "//integrations/debezium_sql_parser:main", + "version": "bazel" + } + }, + { + "id": "//integrations/hvr:main@bazel", + "info": { + "name": "//integrations/hvr:main", + "version": "bazel" + } + }, + { + "id": "//integrations/hvr/unserializer:main@bazel", + "info": { + "name": "//integrations/hvr/unserializer:main", + "version": "bazel" + } + }, + { + "id": "//port_forwarder:oracle@bazel", + "info": { + "name": "//port_forwarder:oracle", + "version": "bazel" + } + }, + { + "id": "//utils/byte_array_list/sync_adapter:main@bazel", + "info": { + "name": "//utils/byte_array_list/sync_adapter:main", + "version": "bazel" + } + }, + { + "id": "//integrations/oracle_hva:main@bazel", + "info": { + "name": "//integrations/oracle_hva:main", + "version": "bazel" + } + }, + { + "id": "//integrations/oracle_hva2:main@bazel", + "info": { + "name": "//integrations/oracle_hva2:main", + "version": "bazel" + } + }, + { + "id": "//integrations/outbrain:main@bazel", + "info": { + "name": "//integrations/outbrain:main", + "version": "bazel" + } + }, + { + "id": "org.eclipse.jetty:jetty-servlets@9.4.40.v20210413", + "info": { + "name": "org.eclipse.jetty:jetty-servlets", + "version": "9.4.40.v20210413" + } + }, + { + "id": "org.eclipse.jetty:jetty-continuation@9.4.40.v20210413", + "info": { + "name": "org.eclipse.jetty:jetty-continuation", + "version": "9.4.40.v20210413" + } + }, + { + "id": "org.glassfish.jersey.containers:jersey-container-servlet@2.31", + "info": { + "name": "org.glassfish.jersey.containers:jersey-container-servlet", + "version": "2.31" + } + }, + { + "id": "//integrations/outreach:main@bazel", + "info": { + "name": "//integrations/outreach:main", + "version": "bazel" + } + }, + { + "id": "//integrations/pardot:main@bazel", + "info": { + "name": "//integrations/pardot:main", + "version": "bazel" + } + }, + { + "id": "//integrations/paypal:main@bazel", + "info": { + "name": "//integrations/paypal:main", + "version": "bazel" + } + }, + { + "id": "//integrations/pendo:main@bazel", + "info": { + "name": "//integrations/pendo:main", + "version": "bazel" + } + }, + { + "id": "//integrations/pinterest:main@bazel", + "info": { + "name": "//integrations/pinterest:main", + "version": "bazel" + } + }, + { + "id": "//integrations/pipedrive:main@bazel", + "info": { + "name": "//integrations/pipedrive:main", + "version": "bazel" + } + }, + { + "id": "//integrations/postgres:main@bazel", + "info": { + "name": "//integrations/postgres:main", + "version": "bazel" + } + }, + { + "id": "//integrations/postgres:wal_java_proto@bazel", + "info": { + "name": "//integrations/postgres:wal_java_proto", + "version": "bazel" + } + }, + { + "id": "//integrations/postgres:wal_proto@bazel", + "info": { + "name": "//integrations/postgres:wal_proto", + "version": "bazel" + } + }, + { + "id": "//integrations/qualtrics:main@bazel", + "info": { + "name": "//integrations/qualtrics:main", + "version": "bazel" + } + }, + { + "id": "//integrations/quickbooks:main@bazel", + "info": { + "name": "//integrations/quickbooks:main", + "version": "bazel" + } + }, + { + "id": "//integrations/recharge:main@bazel", + "info": { + "name": "//integrations/recharge:main", + "version": "bazel" + } + }, + { + "id": "//integrations/recurly:main@bazel", + "info": { + "name": "//integrations/recurly:main", + "version": "bazel" + } + }, + { + "id": "//integrations/reddit:main@bazel", + "info": { + "name": "//integrations/reddit:main", + "version": "bazel" + } + }, + { + "id": "//integrations/sage_intacct:main@bazel", + "info": { + "name": "//integrations/sage_intacct:main", + "version": "bazel" + } + }, + { + "id": "com.alibaba:druid@1.1.16", + "info": { + "name": "com.alibaba:druid", + "version": "1.1.16" + } + }, + { + "id": "//integrations/sailthru:main@bazel", + "info": { + "name": "//integrations/sailthru:main", + "version": "bazel" + } + }, + { + "id": "//integrations/salesforce:main@bazel", + "info": { + "name": "//integrations/salesforce:main", + "version": "bazel" + } + }, + { + "id": "//integrations/salesforce_commerce_cloud:main@bazel", + "info": { + "name": "//integrations/salesforce_commerce_cloud:main", + "version": "bazel" + } + }, + { + "id": "//integrations/salesforce_marketing_cloud:main@bazel", + "info": { + "name": "//integrations/salesforce_marketing_cloud:main", + "version": "bazel" + } + }, + { + "id": "//integrations/sap_business_bydesign:main@bazel", + "info": { + "name": "//integrations/sap_business_bydesign:main", + "version": "bazel" + } + }, + { + "id": "//integrations/sap_concur:main@bazel", + "info": { + "name": "//integrations/sap_concur:main", + "version": "bazel" + } + }, + { + "id": "//integrations/sap_s4hana:main@bazel", + "info": { + "name": "//integrations/sap_s4hana:main", + "version": "bazel" + } + }, + { + "id": "//integrations/segment:main@bazel", + "info": { + "name": "//integrations/segment:main", + "version": "bazel" + } + }, + { + "id": "//maxmind:main@bazel", + "info": { + "name": "//maxmind:main", + "version": "bazel" + } + }, + { + "id": "com.maxmind.db:maxmind-db@1.2.2", + "info": { + "name": "com.maxmind.db:maxmind-db", + "version": "1.2.2" + } + }, + { + "id": "com.maxmind.geoip2:geoip2@2.9.0", + "info": { + "name": "com.maxmind.geoip2:geoip2", + "version": "2.9.0" + } + }, + { + "id": "//integrations/sendgrid:main@bazel", + "info": { + "name": "//integrations/sendgrid:main", + "version": "bazel" + } + }, + { + "id": "//integrations/service_now:main@bazel", + "info": { + "name": "//integrations/service_now:main", + "version": "bazel" + } + }, + { + "id": "//integrations/shopify:main@bazel", + "info": { + "name": "//integrations/shopify:main", + "version": "bazel" + } + }, + { + "id": "//integrations/snapchat_ads:main@bazel", + "info": { + "name": "//integrations/snapchat_ads:main", + "version": "bazel" + } + }, + { + "id": "//integrations/snowplow:main@bazel", + "info": { + "name": "//integrations/snowplow:main", + "version": "bazel" + } + }, + { + "id": "com.blueconic:browscap-java@1.2.13", + "info": { + "name": "com.blueconic:browscap-java", + "version": "1.2.13" + } + }, + { + "id": "com.github.java-json-tools:json-schema-core@1.2.14", + "info": { + "name": "com.github.java-json-tools:json-schema-core", + "version": "1.2.14" + } + }, + { + "id": "com.github.java-json-tools:jackson-coreutils@2.0", + "info": { + "name": "com.github.java-json-tools:jackson-coreutils", + "version": "2.0" + } + }, + { + "id": "com.github.java-json-tools:msg-simple@1.2", + "info": { + "name": "com.github.java-json-tools:msg-simple", + "version": "1.2" + } + }, + { + "id": "com.github.java-json-tools:btf@1.3", + "info": { + "name": "com.github.java-json-tools:btf", + "version": "1.3" + } + }, + { + "id": "com.github.java-json-tools:jackson-coreutils-equivalence@1.0", + "info": { + "name": "com.github.java-json-tools:jackson-coreutils-equivalence", + "version": "1.0" + } + }, + { + "id": "com.github.java-json-tools:uri-template@0.10", + "info": { + "name": "com.github.java-json-tools:uri-template", + "version": "0.10" + } + }, + { + "id": "org.mozilla:rhino@1.7.7.2", + "info": { + "name": "org.mozilla:rhino", + "version": "1.7.7.2" + } + }, + { + "id": "com.github.java-json-tools:json-schema-validator@2.2.14", + "info": { + "name": "com.github.java-json-tools:json-schema-validator", + "version": "2.2.14" + } + }, + { + "id": "com.sun.mail:mailapi@1.6.2", + "info": { + "name": "com.sun.mail:mailapi", + "version": "1.6.2" + } + }, + { + "id": "com.googlecode.libphonenumber:libphonenumber@8.11.1", + "info": { + "name": "com.googlecode.libphonenumber:libphonenumber", + "version": "8.11.1" + } + }, + { + "id": "com.github.ua-parser:uap-java@1.4.0", + "info": { + "name": "com.github.ua-parser:uap-java", + "version": "1.4.0" + } + }, + { + "id": "com.snowplowanalytics:referer-parser_2.11@0.3.0", + "info": { + "name": "com.snowplowanalytics:referer-parser_2.11", + "version": "0.3.0" + } + }, + { + "id": "//integrations/snowflake:main@bazel", + "info": { + "name": "//integrations/snowflake:main", + "version": "bazel" + } + }, + { + "id": "//integrations/splunk:main@bazel", + "info": { + "name": "//integrations/splunk:main", + "version": "bazel" + } + }, + { + "id": "//integrations/sql_server:main@bazel", + "info": { + "name": "//integrations/sql_server:main", + "version": "bazel" + } + }, + { + "id": "//integrations/azure/utils:main@bazel", + "info": { + "name": "//integrations/azure/utils:main", + "version": "bazel" + } + }, + { + "id": "//integrations/square:main@bazel", + "info": { + "name": "//integrations/square:main", + "version": "bazel" + } + }, + { + "id": "//integrations/stripe:main@bazel", + "info": { + "name": "//integrations/stripe:main", + "version": "bazel" + } + }, + { + "id": "//integrations/survey_monkey:main@bazel", + "info": { + "name": "//integrations/survey_monkey:main", + "version": "bazel" + } + }, + { + "id": "//integrations/spotify_ads:main@bazel", + "info": { + "name": "//integrations/spotify_ads:main", + "version": "bazel" + } + }, + { + "id": "//integrations/taboola:main@bazel", + "info": { + "name": "//integrations/taboola:main", + "version": "bazel" + } + }, + { + "id": "//integrations/the_trade_desk:main@bazel", + "info": { + "name": "//integrations/the_trade_desk:main", + "version": "bazel" + } + }, + { + "id": "//integrations/tiktok_ads:main@bazel", + "info": { + "name": "//integrations/tiktok_ads:main", + "version": "bazel" + } + }, + { + "id": "//integrations/twilio:main@bazel", + "info": { + "name": "//integrations/twilio:main", + "version": "bazel" + } + }, + { + "id": "//integrations/twitter:main@bazel", + "info": { + "name": "//integrations/twitter:main", + "version": "bazel" + } + }, + { + "id": "//integrations/typeform:main@bazel", + "info": { + "name": "//integrations/typeform:main", + "version": "bazel" + } + }, + { + "id": "//integrations/uservoice:main@bazel", + "info": { + "name": "//integrations/uservoice:main", + "version": "bazel" + } + }, + { + "id": "//integrations/webhooks:main@bazel", + "info": { + "name": "//integrations/webhooks:main", + "version": "bazel" + } + }, + { + "id": "//integrations/wordpress:main@bazel", + "info": { + "name": "//integrations/wordpress:main", + "version": "bazel" + } + }, + { + "id": "//integrations/workday:main@bazel", + "info": { + "name": "//integrations/workday:main", + "version": "bazel" + } + }, + { + "id": "//integrations/workday_hcm:main@bazel", + "info": { + "name": "//integrations/workday_hcm:main", + "version": "bazel" + } + }, + { + "id": "org.projectlombok:lombok@1.18.12", + "info": { + "name": "org.projectlombok:lombok", + "version": "1.18.12" + } + }, + { + "id": "//integrations/xero:main@bazel", + "info": { + "name": "//integrations/xero:main", + "version": "bazel" + } + }, + { + "id": "//integrations/yahoo_gemini:main@bazel", + "info": { + "name": "//integrations/yahoo_gemini:main", + "version": "bazel" + } + }, + { + "id": "//integrations/youtube_analytics:main@bazel", + "info": { + "name": "//integrations/youtube_analytics:main", + "version": "bazel" + } + }, + { + "id": "//integrations/zendesk:main@bazel", + "info": { + "name": "//integrations/zendesk:main", + "version": "bazel" + } + }, + { + "id": "//integrations/zendesk_chat:main@bazel", + "info": { + "name": "//integrations/zendesk_chat:main", + "version": "bazel" + } + }, + { + "id": "//integrations/zendesk_sell:main@bazel", + "info": { + "name": "//integrations/zendesk_sell:main", + "version": "bazel" + } + }, + { + "id": "//integrations/zendesk_sunshine:main@bazel", + "info": { + "name": "//integrations/zendesk_sunshine:main", + "version": "bazel" + } + }, + { + "id": "//integrations/zoho_crm:main@bazel", + "info": { + "name": "//integrations/zoho_crm:main", + "version": "bazel" + } + }, + { + "id": "//integrations/delighted:main@bazel", + "info": { + "name": "//integrations/delighted:main", + "version": "bazel" + } + }, + { + "id": "//sources/delighted:main@bazel", + "info": { + "name": "//sources/delighted:main", + "version": "bazel" + } + }, + { + "id": "//sources/mapper:main@bazel", + "info": { + "name": "//sources/mapper:main", + "version": "bazel" + } + }, + { + "id": "//saml:main@bazel", + "info": { + "name": "//saml:main", + "version": "bazel" + } + }, + { + "id": "io.dropwizard.metrics:metrics-core@3.1.2", + "info": { + "name": "io.dropwizard.metrics:metrics-core", + "version": "3.1.2" + } + }, + { + "id": "net.shibboleth.utilities:java-support@7.3.0", + "info": { + "name": "net.shibboleth.utilities:java-support", + "version": "7.3.0" + } + }, + { + "id": "org.cryptacular:cryptacular@1.1.1", + "info": { + "name": "org.cryptacular:cryptacular", + "version": "1.1.1" + } + }, + { + "id": "org.opensaml:opensaml-core@3.3.0", + "info": { + "name": "org.opensaml:opensaml-core", + "version": "3.3.0" + } + }, + { + "id": "org.opensaml:opensaml-messaging-api@3.3.0", + "info": { + "name": "org.opensaml:opensaml-messaging-api", + "version": "3.3.0" + } + }, + { + "id": "org.opensaml:opensaml-messaging-impl@3.3.0", + "info": { + "name": "org.opensaml:opensaml-messaging-impl", + "version": "3.3.0" + } + }, + { + "id": "org.opensaml:opensaml-profile-api@3.3.0", + "info": { + "name": "org.opensaml:opensaml-profile-api", + "version": "3.3.0" + } + }, + { + "id": "org.opensaml:opensaml-saml-api@3.3.0", + "info": { + "name": "org.opensaml:opensaml-saml-api", + "version": "3.3.0" + } + }, + { + "id": "org.opensaml:opensaml-xmlsec-api@3.3.0", + "info": { + "name": "org.opensaml:opensaml-xmlsec-api", + "version": "3.3.0" + } + }, + { + "id": "org.opensaml:opensaml-security-api@3.3.0", + "info": { + "name": "org.opensaml:opensaml-security-api", + "version": "3.3.0" + } + }, + { + "id": "org.apache.santuario:xmlsec@2.1.1", + "info": { + "name": "org.apache.santuario:xmlsec", + "version": "2.1.1" + } + }, + { + "id": "org.opensaml:opensaml-storage-api@3.3.0", + "info": { + "name": "org.opensaml:opensaml-storage-api", + "version": "3.3.0" + } + }, + { + "id": "org.opensaml:opensaml-soap-api@3.3.0", + "info": { + "name": "org.opensaml:opensaml-soap-api", + "version": "3.3.0" + } + }, + { + "id": "org.opensaml:opensaml-saml-impl@3.3.0", + "info": { + "name": "org.opensaml:opensaml-saml-impl", + "version": "3.3.0" + } + }, + { + "id": "org.opensaml:opensaml-soap-impl@3.3.0", + "info": { + "name": "org.opensaml:opensaml-soap-impl", + "version": "3.3.0" + } + }, + { + "id": "org.opensaml:opensaml-security-impl@3.3.0", + "info": { + "name": "org.opensaml:opensaml-security-impl", + "version": "3.3.0" + } + }, + { + "id": "org.opensaml:opensaml-xmlsec-impl@3.3.0", + "info": { + "name": "org.opensaml:opensaml-xmlsec-impl", + "version": "3.3.0" + } + }, + { + "id": "//services/customer_data_access:main@bazel", + "info": { + "name": "//services/customer_data_access:main", + "version": "bazel" + } + }, + { + "id": "//zendesk_utils:main@bazel", + "info": { + "name": "//zendesk_utils:main", + "version": "bazel" + } + }, + { + "id": "//services/dbt:main@bazel", + "info": { + "name": "//services/dbt:main", + "version": "bazel" + } + }, + { + "id": "//services/schema_modification:main@bazel", + "info": { + "name": "//services/schema_modification:main", + "version": "bazel" + } + }, + { + "id": "//sfdc_connect:main@bazel", + "info": { + "name": "//sfdc_connect:main", + "version": "bazel" + } + }, + { + "id": "//ufl_storage/client:main@bazel", + "info": { + "name": "//ufl_storage/client:main", + "version": "bazel" + } + }, + { + "id": "//ufl_storage/storage:main@bazel", + "info": { + "name": "//ufl_storage/storage:main", + "version": "bazel" + } + }, + { + "id": "//utils/integrated_scheduler:main@bazel", + "info": { + "name": "//utils/integrated_scheduler:main", + "version": "bazel" + } + }, + { + "id": "com.google.cloud:google-cloud-firestore@1.10.0", + "info": { + "name": "com.google.cloud:google-cloud-firestore", + "version": "1.10.0" + } + }, + { + "id": "com.google.api.grpc:proto-google-cloud-firestore-v1beta1@0.63.0", + "info": { + "name": "com.google.api.grpc:proto-google-cloud-firestore-v1beta1", + "version": "0.63.0" + } + }, + { + "id": "io.opencensus:opencensus-contrib-grpc-util@0.21.0", + "info": { + "name": "io.opencensus:opencensus-contrib-grpc-util", + "version": "0.21.0" + } + }, + { + "id": "com.google.api.grpc:proto-google-cloud-firestore-admin-v1@1.10.0", + "info": { + "name": "com.google.api.grpc:proto-google-cloud-firestore-admin-v1", + "version": "1.10.0" + } + }, + { + "id": "com.google.api.grpc:proto-google-cloud-firestore-v1@1.10.0", + "info": { + "name": "com.google.api.grpc:proto-google-cloud-firestore-v1", + "version": "1.10.0" + } + }, + { + "id": "com.lambdaworks:scrypt@1.4.0", + "info": { + "name": "com.lambdaworks:scrypt", + "version": "1.4.0" + } + }, + { + "id": "org.eclipse.jetty.websocket:javax-websocket-server-impl@9.4.40.v20210413", + "info": { + "name": "org.eclipse.jetty.websocket:javax-websocket-server-impl", + "version": "9.4.40.v20210413" + } + }, + { + "id": "org.eclipse.jetty:jetty-annotations@9.4.40.v20210413", + "info": { + "name": "org.eclipse.jetty:jetty-annotations", + "version": "9.4.40.v20210413" + } + }, + { + "id": "org.ow2.asm:asm-commons@8.0.1", + "info": { + "name": "org.ow2.asm:asm-commons", + "version": "8.0.1" + } + }, + { + "id": "org.eclipse.jetty:jetty-webapp@9.4.40.v20210413", + "info": { + "name": "org.eclipse.jetty:jetty-webapp", + "version": "9.4.40.v20210413" + } + }, + { + "id": "org.eclipse.jetty:jetty-xml@9.4.40.v20210413", + "info": { + "name": "org.eclipse.jetty:jetty-xml", + "version": "9.4.40.v20210413" + } + }, + { + "id": "org.eclipse.jetty:jetty-plus@9.4.40.v20210413", + "info": { + "name": "org.eclipse.jetty:jetty-plus", + "version": "9.4.40.v20210413" + } + }, + { + "id": "org.eclipse.jetty:jetty-jndi@9.4.40.v20210413", + "info": { + "name": "org.eclipse.jetty:jetty-jndi", + "version": "9.4.40.v20210413" + } + }, + { + "id": "org.eclipse.jetty.websocket:javax-websocket-client-impl@9.4.40.v20210413", + "info": { + "name": "org.eclipse.jetty.websocket:javax-websocket-client-impl", + "version": "9.4.40.v20210413" + } + }, + { + "id": "javax.websocket:javax.websocket-client-api@1.0", + "info": { + "name": "javax.websocket:javax.websocket-client-api", + "version": "1.0" + } + }, + { + "id": "org.eclipse.jetty.websocket:websocket-client@9.4.40.v20210413", + "info": { + "name": "org.eclipse.jetty.websocket:websocket-client", + "version": "9.4.40.v20210413" + } + }, + { + "id": "org.eclipse.jetty:jetty-client@9.4.40.v20210413", + "info": { + "name": "org.eclipse.jetty:jetty-client", + "version": "9.4.40.v20210413" + } + }, + { + "id": "org.eclipse.jetty.websocket:websocket-common@9.4.40.v20210413", + "info": { + "name": "org.eclipse.jetty.websocket:websocket-common", + "version": "9.4.40.v20210413" + } + }, + { + "id": "org.eclipse.jetty.websocket:websocket-api@9.4.40.v20210413", + "info": { + "name": "org.eclipse.jetty.websocket:websocket-api", + "version": "9.4.40.v20210413" + } + }, + { + "id": "org.eclipse.jetty.websocket:websocket-server@9.4.40.v20210413", + "info": { + "name": "org.eclipse.jetty.websocket:websocket-server", + "version": "9.4.40.v20210413" + } + }, + { + "id": "org.eclipse.jetty.websocket:websocket-servlet@9.4.40.v20210413", + "info": { + "name": "org.eclipse.jetty.websocket:websocket-servlet", + "version": "9.4.40.v20210413" + } + }, + { + "id": "org.glassfish.jersey.media:jersey-media-sse@2.31", + "info": { + "name": "org.glassfish.jersey.media:jersey-media-sse", + "version": "2.31" + } + } + ], + "graph": { + "rootNodeId": "//app:main@bazel", + "nodes": [ + { + "nodeId": "//app:main@bazel", + "pkgId": "//app:main@bazel", + "deps": [ + { + "nodeId": "//app/config:main@bazel" + }, + { + "nodeId": "//aws:main@bazel" + }, + { + "nodeId": "//common:main@bazel" + }, + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//core_interfaces/cursor:main@bazel" + }, + { + "nodeId": "//crypto:main@bazel" + }, + { + "nodeId": "//database:hikari@bazel" + }, + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//database:ssh_verify@bazel" + }, + { + "nodeId": "//database:tls_verify@bazel" + }, + { + "nodeId": "//database/exceptions:main@bazel" + }, + { + "nodeId": "//dbt/api/client:main@bazel" + }, + { + "nodeId": "//dbt/manifest:main@bazel" + }, + { + "nodeId": "//dbt/services:main@bazel" + }, + { + "nodeId": "//donkey:main@bazel" + }, + { + "nodeId": "//emails:core@bazel" + }, + { + "nodeId": "//emails:main@bazel" + }, + { + "nodeId": "//events:main@bazel" + }, + { + "nodeId": "//feature_flag:flags@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//feature_flag/sandbox:main@bazel" + }, + { + "nodeId": "//feature_flag/service:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//globals:main@bazel" + }, + { + "nodeId": "//google_cloud:main@bazel" + }, + { + "nodeId": "//heartbeat:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//integrated_scheduler/dag:main@bazel" + }, + { + "nodeId": "//integrated_scheduler/pipeline:main@bazel" + }, + { + "nodeId": "//integrated_scheduler/scheduler:messages@bazel" + }, + { + "nodeId": "//integrated_scheduler/scheduler:pubsub@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//jwt:main@bazel" + }, + { + "nodeId": "//kms:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//log_appender/gcs_appender:main@bazel" + }, + { + "nodeId": "//log_tailer:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//logging:fluent_bit@bazel" + }, + { + "nodeId": "//logging:main@bazel" + }, + { + "nodeId": "//markdown:main@bazel" + }, + { + "nodeId": "//micrometer:main@bazel" + }, + { + "nodeId": "//partners:main@bazel" + }, + { + "nodeId": "//saml:main@bazel" + }, + { + "nodeId": "//schema_migration:main@bazel" + }, + { + "nodeId": "//schema_service:main@bazel" + }, + { + "nodeId": "//secred/client:main@bazel" + }, + { + "nodeId": "//secred/common:main@bazel" + }, + { + "nodeId": "//secred/util:main@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//secrets/db:main@bazel" + }, + { + "nodeId": "//secrets/services:main@bazel" + }, + { + "nodeId": "//secrets/system:main@bazel" + }, + { + "nodeId": "//service_registry:main@bazel" + }, + { + "nodeId": "//services:ab_tests@bazel" + }, + { + "nodeId": "//services:integration_control@bazel" + }, + { + "nodeId": "//services:main@bazel" + }, + { + "nodeId": "//services/cmk_encryption:main@bazel" + }, + { + "nodeId": "//services/customer_data_access:main@bazel" + }, + { + "nodeId": "//services/dbt:main@bazel" + }, + { + "nodeId": "//services/logging:main@bazel" + }, + { + "nodeId": "//services/resync:main@bazel" + }, + { + "nodeId": "//services/schema_modification:main@bazel" + }, + { + "nodeId": "//services/setup_test_runner:main@bazel" + }, + { + "nodeId": "//setup_test_runner:client@bazel" + }, + { + "nodeId": "//sfdc_connect:main@bazel" + }, + { + "nodeId": "//transformation_runner:client@bazel" + }, + { + "nodeId": "//ufl_storage/client:main@bazel" + }, + { + "nodeId": "//ufl_storage/storage:main@bazel" + }, + { + "nodeId": "//util:main@bazel" + }, + { + "nodeId": "//utils/bootstrap:main@bazel" + }, + { + "nodeId": "//utils/exceptions:main@bazel" + }, + { + "nodeId": "//utils/integrated_scheduler:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "//utils/validations:main@bazel" + }, + { + "nodeId": "//warehouses/big_query:main@bazel" + }, + { + "nodeId": "//warehouses/common:warehouse_type@bazel" + }, + { + "nodeId": "//warehouses/postgres:main@bazel" + }, + { + "nodeId": "//words:main@bazel" + }, + { + "nodeId": "//zendesk_utils:main@bazel" + }, + { + "nodeId": "@com_fasterxml_jackson_dataformat_jackson_dataformat_csv//:main@bazel" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-core@1.12.84" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-s3@1.12.84" + }, + { + "nodeId": "com.cronutils:cron-utils@9.0.2" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.dataformat:jackson-dataformat-yaml@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.api:api-common@1.9.0" + }, + { + "nodeId": "com.google.api-client:google-api-client@1.31.1" + }, + { + "nodeId": "com.google.api.grpc:proto-google-cloud-pubsub-v1@1.101.1" + }, + { + "nodeId": "com.google.apis:google-api-services-bigquery@v2-rev459-1.25.0" + }, + { + "nodeId": "com.google.apis:google-api-services-cloudresourcemanager@v1-rev495-1.23.0" + }, + { + "nodeId": "com.google.auth:google-auth-library-oauth2-http@0.22.0" + }, + { + "nodeId": "com.google.cloud:google-cloud-bigquery@1.48.0" + }, + { + "nodeId": "com.google.cloud:google-cloud-core@1.48.0" + }, + { + "nodeId": "com.google.cloud:google-cloud-datastore@1.70.0" + }, + { + "nodeId": "com.google.cloud:google-cloud-firestore@1.10.0" + }, + { + "nodeId": "com.google.cloud:google-cloud-pubsub@1.119.1" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "com.google.http-client:google-http-client@1.39.2" + }, + { + "nodeId": "com.google.http-client:google-http-client-jackson2@1.35.0" + }, + { + "nodeId": "com.google.oauth-client:google-oauth-client@1.23.0" + }, + { + "nodeId": "com.lambdaworks:scrypt@1.4.0" + }, + { + "nodeId": "com.nimbusds:nimbus-jose-jwt@5.5" + }, + { + "nodeId": "com.stripe:stripe-java@19.20.0" + }, + { + "nodeId": "commons-codec:commons-codec@1.10" + }, + { + "nodeId": "commons-io:commons-io@2.4" + }, + { + "nodeId": "commons-lang:commons-lang@2.6" + }, + { + "nodeId": "info.picocli:picocli@4.5.1" + }, + { + "nodeId": "jakarta.annotation:jakarta.annotation-api@1.3.5" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "javax.servlet:javax.servlet-api@3.1.0" + }, + { + "nodeId": "javax.websocket:javax.websocket-api@1.1" + }, + { + "nodeId": "org.apache.commons:commons-lang3@3.12.0" + }, + { + "nodeId": "org.apache.httpcomponents:httpclient@4.5.13" + }, + { + "nodeId": "org.apache.httpcomponents:httpcore@4.4.13" + }, + { + "nodeId": "org.apache.velocity:velocity@1.7" + }, + { + "nodeId": "org.eclipse.jetty:jetty-server@9.4.40.v20210413" + }, + { + "nodeId": "org.eclipse.jetty:jetty-servlet@9.4.40.v20210413" + }, + { + "nodeId": "org.eclipse.jetty:jetty-servlets@9.4.40.v20210413" + }, + { + "nodeId": "org.eclipse.jetty:jetty-util@9.4.40.v20210413" + }, + { + "nodeId": "org.eclipse.jetty.websocket:javax-websocket-server-impl@9.4.40.v20210413" + }, + { + "nodeId": "org.eclipse.jetty.websocket:websocket-common@9.4.40.v20210413" + }, + { + "nodeId": "org.glassfish.hk2.external:jakarta.inject@2.6.1" + }, + { + "nodeId": "org.glassfish.hk2:hk2-api@2.6.1" + }, + { + "nodeId": "org.glassfish.jersey.containers:jersey-container-servlet@2.31" + }, + { + "nodeId": "org.glassfish.jersey.containers:jersey-container-servlet-core@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-common@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-server@2.31" + }, + { + "nodeId": "org.glassfish.jersey.inject:jersey-hk2@2.31" + }, + { + "nodeId": "org.glassfish.jersey.media:jersey-media-jaxb@2.31" + }, + { + "nodeId": "org.glassfish.jersey.media:jersey-media-multipart@2.31" + }, + { + "nodeId": "org.glassfish.jersey.media:jersey-media-sse@2.31" + }, + { + "nodeId": "org.glassfish.jersey.security:oauth1-signature@2.31" + }, + { + "nodeId": "org.jooq:jool-java-8@0.9.14" + }, + { + "nodeId": "org.jsoup:jsoup@1.8.2" + }, + { + "nodeId": "org.opensaml:opensaml-core@3.3.0" + }, + { + "nodeId": "org.opensaml:opensaml-messaging-api@3.3.0" + }, + { + "nodeId": "org.opensaml:opensaml-messaging-impl@3.3.0" + }, + { + "nodeId": "org.opensaml:opensaml-profile-api@3.3.0" + }, + { + "nodeId": "org.opensaml:opensaml-saml-api@3.3.0" + }, + { + "nodeId": "org.opensaml:opensaml-saml-impl@3.3.0" + }, + { + "nodeId": "org.opensaml:opensaml-security-api@3.3.0" + }, + { + "nodeId": "org.opensaml:opensaml-security-impl@3.3.0" + }, + { + "nodeId": "org.opensaml:opensaml-soap-api@3.3.0" + }, + { + "nodeId": "org.opensaml:opensaml-soap-impl@3.3.0" + }, + { + "nodeId": "org.opensaml:opensaml-storage-api@3.3.0" + }, + { + "nodeId": "org.opensaml:opensaml-xmlsec-api@3.3.0" + }, + { + "nodeId": "org.opensaml:opensaml-xmlsec-impl@3.3.0" + }, + { + "nodeId": "org.postgresql:postgresql@42.3.3" + } + ] + }, + { + "nodeId": "//app/config:main@bazel", + "pkgId": "//app/config:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//database:hikari@bazel" + }, + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.dataformat:jackson-dataformat-yaml@2.9.8" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "com.zaxxer:HikariCP@3.4.1" + } + ] + }, + { + "nodeId": "//core_interfaces:main@bazel", + "pkgId": "//core_interfaces:main@bazel", + "deps": [ + { + "nodeId": "//crypto:pojos@bazel" + }, + { + "nodeId": "//database:enums@bazel" + }, + { + "nodeId": "//database:schema_migration_model@bazel" + }, + { + "nodeId": "//events:event_hub@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//globals:main@bazel" + }, + { + "nodeId": "//heartbeat:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//markdown:main@bazel" + }, + { + "nodeId": "//schema_migration:schema_migration_info@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//sources/types:main@bazel" + }, + { + "nodeId": "//util:main@bazel" + }, + { + "nodeId": "//utils/nullability:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "//utils/validations:main@bazel" + }, + { + "nodeId": "//warehouses/common:warehouse_type@bazel" + }, + { + "nodeId": "@com_fasterxml_jackson_dataformat_jackson_dataformat_csv//:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.dataformat:jackson-dataformat-yaml@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-joda@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "com.google.protobuf:protobuf-java@3.18.2" + }, + { + "nodeId": "com.ibm.icu:icu4j@62.1" + }, + { + "nodeId": "commons-lang:commons-lang@2.6" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.apache.commons:commons-lang3@3.12.0" + }, + { + "nodeId": "org.apache.httpcomponents:httpclient@4.5.13" + }, + { + "nodeId": "org.apache.httpcomponents:httpcore@4.4.13" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-common@2.31" + }, + { + "nodeId": "org.glassfish.jersey.security:oauth1-client@2.31" + }, + { + "nodeId": "org.glassfish.jersey.security:oauth1-signature@2.31" + } + ] + }, + { + "nodeId": "//crypto:pojos@bazel", + "pkgId": "//crypto:pojos@bazel", + "deps": [] + }, + { + "nodeId": "//database:enums@bazel", + "pkgId": "//database:enums@bazel", + "deps": [ + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + } + ] + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2", + "pkgId": "com.google.code.findbugs:jsr305@3.0.2", + "deps": [] + }, + { + "nodeId": "//database:schema_migration_model@bazel", + "pkgId": "//database:schema_migration_model@bazel", + "deps": [ + { + "nodeId": "//schema_migration:enum_types@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + } + ] + }, + { + "nodeId": "//schema_migration:enum_types@bazel", + "pkgId": "//schema_migration:enum_types@bazel", + "deps": [] + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8", + "pkgId": "com.fasterxml.jackson.core:jackson-databind@2.9.8", + "deps": [ + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + } + ] + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8", + "pkgId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8", + "deps": [] + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8", + "pkgId": "com.fasterxml.jackson.core:jackson-core@2.9.8", + "deps": [] + }, + { + "nodeId": "//events:event_hub@bazel", + "pkgId": "//events:event_hub@bazel", + "deps": [ + { + "nodeId": "//logger:main@bazel" + } + ] + }, + { + "nodeId": "//logger:main@bazel", + "pkgId": "//logger:main@bazel", + "deps": [ + { + "nodeId": "//crypto:main@bazel" + }, + { + "nodeId": "//database:enums@bazel" + }, + { + "nodeId": "//feature_flag:details@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//secred/client:main@bazel" + }, + { + "nodeId": "//secred/common:main@bazel" + }, + { + "nodeId": "//secred/util:main@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//secrets/services:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.json:json@20171018" + } + ] + }, + { + "nodeId": "//crypto:main@bazel", + "pkgId": "//crypto:main@bazel", + "deps": [ + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//jwt:main@bazel" + }, + { + "nodeId": "//logger:acmecorp_logger@bazel" + }, + { + "nodeId": "//utils/exceptions:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "com.amazonaws:aws-encryption-sdk-java@1.6.1" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.google.api:gax@2.3.0" + }, + { + "nodeId": "com.google.api:gax-grpc@2.3.0" + }, + { + "nodeId": "com.google.api.grpc:proto-google-cloud-kms-v1@0.61.0" + }, + { + "nodeId": "com.google.auth:google-auth-library-credentials@0.9.1" + }, + { + "nodeId": "com.google.auth:google-auth-library-oauth2-http@0.22.0" + }, + { + "nodeId": "com.google.cloud:google-cloud-kms@1.13.0" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.protobuf:protobuf-java@3.18.2" + }, + { + "nodeId": "com.sun.xml.bind:jaxb-core@2.2.11" + }, + { + "nodeId": "com.sun.xml.bind:jaxb-impl@2.2.11" + }, + { + "nodeId": "commons-codec:commons-codec@1.10" + }, + { + "nodeId": "io.grpc:grpc-core@1.32.2" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "javax.xml.bind:jaxb-api@2.2.2" + }, + { + "nodeId": "org.glassfish.hk2.external:jakarta.inject@2.6.1" + } + ] + }, + { + "nodeId": "//json:main@bazel", + "pkgId": "//json:main@bazel", + "deps": [ + { + "nodeId": "@com_fasterxml_jackson_dataformat_jackson_dataformat_csv//:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + } + ] + }, + { + "nodeId": "@com_fasterxml_jackson_dataformat_jackson_dataformat_csv//:main@bazel", + "pkgId": "@com_fasterxml_jackson_dataformat_jackson_dataformat_csv//:main@bazel", + "deps": [ + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + } + ] + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8", + "pkgId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8", + "deps": [ + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + } + ] + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8", + "pkgId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8", + "deps": [ + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + } + ] + }, + { + "nodeId": "com.google.guava:guava@25.1-jre", + "pkgId": "com.google.guava:guava@25.1-jre", + "deps": [ + { + "nodeId": "com.google.errorprone:error_prone_annotations@2.13.1" + }, + { + "nodeId": "com.google.j2objc:j2objc-annotations@1.3" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "org.checkerframework:checker-qual@3.22.0" + }, + { + "nodeId": "org.codehaus.mojo:animal-sniffer-annotations@1.21" + } + ] + }, + { + "nodeId": "com.google.errorprone:error_prone_annotations@2.13.1", + "pkgId": "com.google.errorprone:error_prone_annotations@2.13.1", + "deps": [] + }, + { + "nodeId": "com.google.j2objc:j2objc-annotations@1.3", + "pkgId": "com.google.j2objc:j2objc-annotations@1.3", + "deps": [] + }, + { + "nodeId": "org.checkerframework:checker-qual@3.22.0", + "pkgId": "org.checkerframework:checker-qual@3.22.0", + "deps": [] + }, + { + "nodeId": "org.codehaus.mojo:animal-sniffer-annotations@1.21", + "pkgId": "org.codehaus.mojo:animal-sniffer-annotations@1.21", + "deps": [] + }, + { + "nodeId": "//jwt:main@bazel", + "pkgId": "//jwt:main@bazel", + "deps": [ + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "commons-codec:commons-codec@1.10" + } + ] + }, + { + "nodeId": "commons-codec:commons-codec@1.10", + "pkgId": "commons-codec:commons-codec@1.10", + "deps": [] + }, + { + "nodeId": "//logger:acmecorp_logger@bazel", + "pkgId": "//logger:acmecorp_logger@bazel", + "deps": [ + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + } + ] + }, + { + "nodeId": "//utils/time:main@bazel", + "pkgId": "//utils/time:main@bazel", + "deps": [ + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + } + ] + }, + { + "nodeId": "//utils/exceptions:main@bazel", + "pkgId": "//utils/exceptions:main@bazel", + "deps": [] + }, + { + "nodeId": "com.amazonaws:aws-encryption-sdk-java@1.6.1", + "pkgId": "com.amazonaws:aws-encryption-sdk-java@1.6.1", + "deps": [ + { + "nodeId": "org.apache.commons:commons-lang3@3.12.0" + }, + { + "nodeId": "org.bouncycastle:bcprov-ext-jdk15on@1.70" + } + ] + }, + { + "nodeId": "org.apache.commons:commons-lang3@3.12.0", + "pkgId": "org.apache.commons:commons-lang3@3.12.0", + "deps": [] + }, + { + "nodeId": "org.bouncycastle:bcprov-ext-jdk15on@1.70", + "pkgId": "org.bouncycastle:bcprov-ext-jdk15on@1.70", + "deps": [] + }, + { + "nodeId": "com.google.api:gax@2.3.0", + "pkgId": "com.google.api:gax@2.3.0", + "deps": [ + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.auth:google-auth-library-oauth2-http@0.22.0" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "com.google.api:api-common@1.9.0" + }, + { + "nodeId": "org.threeten:threetenbp@1.3.3" + }, + { + "nodeId": "io.opencensus:opencensus-api@0.12.3" + } + ] + }, + { + "nodeId": "com.google.auth:google-auth-library-oauth2-http@0.22.0", + "pkgId": "com.google.auth:google-auth-library-oauth2-http@0.22.0", + "deps": [ + { + "nodeId": "com.google.http-client:google-http-client@1.39.2" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "com.google.auto.value:auto-value-annotations@1.9" + }, + { + "nodeId": "com.google.http-client:google-http-client-jackson2@1.35.0" + }, + { + "nodeId": "com.google.auth:google-auth-library-credentials@0.9.1" + } + ] + }, + { + "nodeId": "com.google.http-client:google-http-client@1.39.2", + "pkgId": "com.google.http-client:google-http-client@1.39.2", + "deps": [ + { + "nodeId": "com.google.j2objc:j2objc-annotations@1.3" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "org.apache.httpcomponents:httpcore@4.4.13" + }, + { + "nodeId": "org.apache.httpcomponents:httpclient@4.5.13" + }, + { + "nodeId": "io.opencensus:opencensus-contrib-http-util@0.11.1" + }, + { + "nodeId": "io.opencensus:opencensus-api@0.12.3" + } + ] + }, + { + "nodeId": "org.apache.httpcomponents:httpcore@4.4.13", + "pkgId": "org.apache.httpcomponents:httpcore@4.4.13", + "deps": [] + }, + { + "nodeId": "org.apache.httpcomponents:httpclient@4.5.13", + "pkgId": "org.apache.httpcomponents:httpclient@4.5.13", + "deps": [ + { + "nodeId": "commons-codec:commons-codec@1.10" + }, + { + "nodeId": "commons-logging:commons-logging@1.2" + }, + { + "nodeId": "org.apache.httpcomponents:httpcore@4.4.13" + } + ] + }, + { + "nodeId": "commons-logging:commons-logging@1.2", + "pkgId": "commons-logging:commons-logging@1.2", + "deps": [] + }, + { + "nodeId": "io.opencensus:opencensus-contrib-http-util@0.11.1", + "pkgId": "io.opencensus:opencensus-contrib-http-util@0.11.1", + "deps": [ + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.errorprone:error_prone_annotations@2.13.1" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "io.opencensus:opencensus-api@0.12.3" + } + ] + }, + { + "nodeId": "io.opencensus:opencensus-api@0.12.3", + "pkgId": "io.opencensus:opencensus-api@0.12.3", + "deps": [ + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.errorprone:error_prone_annotations@2.13.1" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "io.grpc:grpc-context@1.32.2" + } + ] + }, + { + "nodeId": "io.grpc:grpc-context@1.32.2", + "pkgId": "io.grpc:grpc-context@1.32.2", + "deps": [] + }, + { + "nodeId": "com.google.auto.value:auto-value-annotations@1.9", + "pkgId": "com.google.auto.value:auto-value-annotations@1.9", + "deps": [] + }, + { + "nodeId": "com.google.http-client:google-http-client-jackson2@1.35.0", + "pkgId": "com.google.http-client:google-http-client-jackson2@1.35.0", + "deps": [ + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.google.http-client:google-http-client@1.39.2" + } + ] + }, + { + "nodeId": "com.google.auth:google-auth-library-credentials@0.9.1", + "pkgId": "com.google.auth:google-auth-library-credentials@0.9.1", + "deps": [] + }, + { + "nodeId": "com.google.api:api-common@1.9.0", + "pkgId": "com.google.api:api-common@1.9.0", + "deps": [ + { + "nodeId": "com.google.auto.value:auto-value-annotations@1.9" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "javax.annotation:javax.annotation-api@1.3.2" + } + ] + }, + { + "nodeId": "javax.annotation:javax.annotation-api@1.3.2", + "pkgId": "javax.annotation:javax.annotation-api@1.3.2", + "deps": [] + }, + { + "nodeId": "org.threeten:threetenbp@1.3.3", + "pkgId": "org.threeten:threetenbp@1.3.3", + "deps": [] + }, + { + "nodeId": "com.google.api:gax-grpc@2.3.0", + "pkgId": "com.google.api:gax-grpc@2.3.0", + "deps": [ + { + "nodeId": "com.google.api:gax@2.3.0" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.auth:google-auth-library-oauth2-http@0.22.0" + }, + { + "nodeId": "io.grpc:grpc-stub@1.32.2" + }, + { + "nodeId": "io.grpc:grpc-auth@1.32.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "com.google.api.grpc:proto-google-common-protos@1.15.0" + }, + { + "nodeId": "io.grpc:grpc-alts@1.46.0" + }, + { + "nodeId": "io.grpc:grpc-netty-shaded@1.32.2" + }, + { + "nodeId": "com.google.api:api-common@1.9.0" + }, + { + "nodeId": "org.threeten:threetenbp@1.3.3" + }, + { + "nodeId": "com.google.auth:google-auth-library-credentials@0.9.1" + }, + { + "nodeId": "io.grpc:grpc-protobuf@1.32.2" + } + ] + }, + { + "nodeId": "io.grpc:grpc-stub@1.32.2", + "pkgId": "io.grpc:grpc-stub@1.32.2", + "deps": [ + { + "nodeId": "com.google.errorprone:error_prone_annotations@2.13.1" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "io.grpc:grpc-api@1.32.2" + }, + { + "nodeId": "org.codehaus.mojo:animal-sniffer-annotations@1.21" + } + ] + }, + { + "nodeId": "io.grpc:grpc-api@1.32.2", + "pkgId": "io.grpc:grpc-api@1.32.2", + "deps": [ + { + "nodeId": "com.google.errorprone:error_prone_annotations@2.13.1" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "org.codehaus.mojo:animal-sniffer-annotations@1.21" + }, + { + "nodeId": "io.grpc:grpc-context@1.32.2" + } + ] + }, + { + "nodeId": "io.grpc:grpc-auth@1.32.2", + "pkgId": "io.grpc:grpc-auth@1.32.2", + "deps": [ + { + "nodeId": "com.google.errorprone:error_prone_annotations@2.13.1" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "io.grpc:grpc-api@1.32.2" + }, + { + "nodeId": "org.codehaus.mojo:animal-sniffer-annotations@1.21" + }, + { + "nodeId": "com.google.auth:google-auth-library-credentials@0.9.1" + } + ] + }, + { + "nodeId": "com.google.api.grpc:proto-google-common-protos@1.15.0", + "pkgId": "com.google.api.grpc:proto-google-common-protos@1.15.0", + "deps": [ + { + "nodeId": "com.google.protobuf:protobuf-java@3.18.2" + } + ] + }, + { + "nodeId": "com.google.protobuf:protobuf-java@3.18.2", + "pkgId": "com.google.protobuf:protobuf-java@3.18.2", + "deps": [] + }, + { + "nodeId": "io.grpc:grpc-alts@1.46.0", + "pkgId": "io.grpc:grpc-alts@1.46.0", + "deps": [ + { + "nodeId": "org.conscrypt:conscrypt-openjdk-uber@2.5.1" + }, + { + "nodeId": "com.google.auth:google-auth-library-oauth2-http@0.22.0" + }, + { + "nodeId": "io.grpc:grpc-stub@1.32.2" + }, + { + "nodeId": "io.grpc:grpc-auth@1.32.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "io.grpc:grpc-netty-shaded@1.32.2" + }, + { + "nodeId": "io.grpc:grpc-grpclb@1.46.0" + }, + { + "nodeId": "io.grpc:grpc-protobuf@1.32.2" + }, + { + "nodeId": "com.google.protobuf:protobuf-java@3.18.2" + } + ] + }, + { + "nodeId": "org.conscrypt:conscrypt-openjdk-uber@2.5.1", + "pkgId": "org.conscrypt:conscrypt-openjdk-uber@2.5.1", + "deps": [] + }, + { + "nodeId": "io.grpc:grpc-netty-shaded@1.32.2", + "pkgId": "io.grpc:grpc-netty-shaded@1.32.2", + "deps": [ + { + "nodeId": "io.grpc:grpc-core@1.32.2" + } + ] + }, + { + "nodeId": "io.grpc:grpc-core@1.32.2", + "pkgId": "io.grpc:grpc-core@1.32.2", + "deps": [ + { + "nodeId": "com.google.errorprone:error_prone_annotations@2.13.1" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.android:annotations@4.1.1.4" + }, + { + "nodeId": "com.google.code.gson:gson@2.9.0" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "io.grpc:grpc-api@1.32.2" + }, + { + "nodeId": "org.codehaus.mojo:animal-sniffer-annotations@1.21" + }, + { + "nodeId": "io.perfmark:perfmark-api@0.25.0" + } + ] + }, + { + "nodeId": "com.google.android:annotations@4.1.1.4", + "pkgId": "com.google.android:annotations@4.1.1.4", + "deps": [] + }, + { + "nodeId": "com.google.code.gson:gson@2.9.0", + "pkgId": "com.google.code.gson:gson@2.9.0", + "deps": [] + }, + { + "nodeId": "io.perfmark:perfmark-api@0.25.0", + "pkgId": "io.perfmark:perfmark-api@0.25.0", + "deps": [] + }, + { + "nodeId": "io.grpc:grpc-grpclb@1.46.0", + "pkgId": "io.grpc:grpc-grpclb@1.46.0", + "deps": [ + { + "nodeId": "com.google.errorprone:error_prone_annotations@2.13.1" + }, + { + "nodeId": "io.grpc:grpc-stub@1.32.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "com.google.protobuf:protobuf-java-util@3.18.2" + }, + { + "nodeId": "io.grpc:grpc-core@1.32.2" + }, + { + "nodeId": "io.grpc:grpc-protobuf@1.32.2" + }, + { + "nodeId": "com.google.protobuf:protobuf-java@3.18.2" + } + ] + }, + { + "nodeId": "com.google.protobuf:protobuf-java-util@3.18.2", + "pkgId": "com.google.protobuf:protobuf-java-util@3.18.2", + "deps": [ + { + "nodeId": "com.google.code.gson:gson@2.9.0" + }, + { + "nodeId": "com.google.errorprone:error_prone_annotations@2.13.1" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "com.google.protobuf:protobuf-java@3.18.2" + } + ] + }, + { + "nodeId": "io.grpc:grpc-protobuf@1.32.2", + "pkgId": "io.grpc:grpc-protobuf@1.32.2", + "deps": [ + { + "nodeId": "com.google.errorprone:error_prone_annotations@2.13.1" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "com.google.api.grpc:proto-google-common-protos@1.15.0" + }, + { + "nodeId": "io.grpc:grpc-api@1.32.2" + }, + { + "nodeId": "org.codehaus.mojo:animal-sniffer-annotations@1.21" + }, + { + "nodeId": "io.grpc:grpc-protobuf-lite@1.32.2" + }, + { + "nodeId": "com.google.protobuf:protobuf-java@3.18.2" + } + ] + }, + { + "nodeId": "io.grpc:grpc-protobuf-lite@1.32.2", + "pkgId": "io.grpc:grpc-protobuf-lite@1.32.2", + "deps": [ + { + "nodeId": "com.google.errorprone:error_prone_annotations@2.13.1" + }, + { + "nodeId": "com.google.protobuf:protobuf-javalite@3.12.0" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "io.grpc:grpc-api@1.32.2" + }, + { + "nodeId": "org.codehaus.mojo:animal-sniffer-annotations@1.21" + } + ] + }, + { + "nodeId": "com.google.protobuf:protobuf-javalite@3.12.0", + "pkgId": "com.google.protobuf:protobuf-javalite@3.12.0", + "deps": [] + }, + { + "nodeId": "com.google.api.grpc:proto-google-cloud-kms-v1@0.61.0", + "pkgId": "com.google.api.grpc:proto-google-cloud-kms-v1@0.61.0", + "deps": [ + { + "nodeId": "com.google.api.grpc:proto-google-common-protos@1.15.0" + }, + { + "nodeId": "com.google.api:api-common@1.9.0" + }, + { + "nodeId": "com.google.api.grpc:proto-google-iam-v1@0.13.0" + }, + { + "nodeId": "javax.annotation:javax.annotation-api@1.3.2" + }, + { + "nodeId": "com.google.protobuf:protobuf-java@3.18.2" + } + ] + }, + { + "nodeId": "com.google.api.grpc:proto-google-iam-v1@0.13.0", + "pkgId": "com.google.api.grpc:proto-google-iam-v1@0.13.0", + "deps": [ + { + "nodeId": "com.google.api:api-common@1.9.0" + }, + { + "nodeId": "com.google.api.grpc:proto-google-common-protos@1.15.0" + }, + { + "nodeId": "com.google.protobuf:protobuf-java@3.18.2" + } + ] + }, + { + "nodeId": "com.google.cloud:google-cloud-kms@1.13.0", + "pkgId": "com.google.cloud:google-cloud-kms@1.13.0", + "deps": [ + { + "nodeId": "io.grpc:grpc-stub@1.32.2" + }, + { + "nodeId": "io.grpc:grpc-auth@1.32.2" + }, + { + "nodeId": "com.google.cloud:google-cloud-core-grpc@1.19.0" + }, + { + "nodeId": "com.google.api.grpc:proto-google-cloud-kms-v1@0.61.0" + }, + { + "nodeId": "io.grpc:grpc-netty-shaded@1.32.2" + }, + { + "nodeId": "com.google.cloud:google-cloud-core@1.48.0" + }, + { + "nodeId": "javax.annotation:javax.annotation-api@1.3.2" + } + ] + }, + { + "nodeId": "com.google.cloud:google-cloud-core-grpc@1.19.0", + "pkgId": "com.google.cloud:google-cloud-core-grpc@1.19.0", + "deps": [ + { + "nodeId": "io.grpc:grpc-stub@1.32.2" + }, + { + "nodeId": "io.grpc:grpc-auth@1.32.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "io.grpc:grpc-netty-shaded@1.32.2" + }, + { + "nodeId": "com.google.protobuf:protobuf-java-util@3.18.2" + }, + { + "nodeId": "com.google.cloud:google-cloud-core@1.48.0" + }, + { + "nodeId": "com.google.api:gax-grpc@2.3.0" + }, + { + "nodeId": "io.grpc:grpc-context@1.32.2" + }, + { + "nodeId": "com.google.auth:google-auth-library-credentials@0.9.1" + }, + { + "nodeId": "io.grpc:grpc-protobuf@1.32.2" + }, + { + "nodeId": "com.google.protobuf:protobuf-java@3.18.2" + } + ] + }, + { + "nodeId": "com.google.cloud:google-cloud-core@1.48.0", + "pkgId": "com.google.cloud:google-cloud-core@1.48.0", + "deps": [ + { + "nodeId": "com.google.http-client:google-http-client@1.39.2" + }, + { + "nodeId": "com.google.api:gax@2.3.0" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "com.google.api.grpc:proto-google-common-protos@1.15.0" + }, + { + "nodeId": "com.google.protobuf:protobuf-java-util@3.18.2" + }, + { + "nodeId": "com.google.api:api-common@1.9.0" + }, + { + "nodeId": "com.google.api.grpc:proto-google-iam-v1@0.13.0" + }, + { + "nodeId": "joda-time:joda-time@2.9.2" + } + ] + }, + { + "nodeId": "joda-time:joda-time@2.9.2", + "pkgId": "joda-time:joda-time@2.9.2", + "deps": [] + }, + { + "nodeId": "com.sun.xml.bind:jaxb-core@2.2.11", + "pkgId": "com.sun.xml.bind:jaxb-core@2.2.11", + "deps": [] + }, + { + "nodeId": "com.sun.xml.bind:jaxb-impl@2.2.11", + "pkgId": "com.sun.xml.bind:jaxb-impl@2.2.11", + "deps": [] + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6", + "pkgId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6", + "deps": [] + }, + { + "nodeId": "javax.xml.bind:jaxb-api@2.2.2", + "pkgId": "javax.xml.bind:jaxb-api@2.2.2", + "deps": [ + { + "nodeId": "javax.activation:activation@1.1" + }, + { + "nodeId": "javax.xml.stream:stax-api@1.0-2" + } + ] + }, + { + "nodeId": "javax.activation:activation@1.1", + "pkgId": "javax.activation:activation@1.1", + "deps": [] + }, + { + "nodeId": "javax.xml.stream:stax-api@1.0-2", + "pkgId": "javax.xml.stream:stax-api@1.0-2", + "deps": [] + }, + { + "nodeId": "org.glassfish.hk2.external:jakarta.inject@2.6.1", + "pkgId": "org.glassfish.hk2.external:jakarta.inject@2.6.1", + "deps": [] + }, + { + "nodeId": "//feature_flag:details@bazel", + "pkgId": "//feature_flag:details@bazel", + "deps": [ + { + "nodeId": "//database:enums@bazel" + }, + { + "nodeId": "//globals:main@bazel" + }, + { + "nodeId": "//logger:acmecorp_logger@bazel" + }, + { + "nodeId": "//warehouses/common:warehouse_type@bazel" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + } + ] + }, + { + "nodeId": "//globals:main@bazel", + "pkgId": "//globals:main@bazel", + "deps": [ + { + "nodeId": "//lambda:main@bazel" + } + ] + }, + { + "nodeId": "//lambda:main@bazel", + "pkgId": "//lambda:main@bazel", + "deps": [ + { + "nodeId": "//utils/exceptions:main@bazel" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + } + ] + }, + { + "nodeId": "//warehouses/common:warehouse_type@bazel", + "pkgId": "//warehouses/common:warehouse_type@bazel", + "deps": [] + }, + { + "nodeId": "//secred/client:main@bazel", + "pkgId": "//secred/client:main@bazel", + "deps": [ + { + "nodeId": "//crypto:pojos@bazel" + }, + { + "nodeId": "//database:enums@bazel" + }, + { + "nodeId": "//globals:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:acmecorp_logger@bazel" + }, + { + "nodeId": "//secred/common:main@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//util:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "commons-configuration:commons-configuration@1.10" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.glassfish.jersey.connectors:jersey-apache-connector@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-common@2.31" + } + ] + }, + { + "nodeId": "//secred/common:main@bazel", + "pkgId": "//secred/common:main@bazel", + "deps": [ + { + "nodeId": "//crypto:pojos@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-core@1.12.84" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "commons-codec:commons-codec@1.10" + } + ] + }, + { + "nodeId": "//secrets/common:main@bazel", + "pkgId": "//secrets/common:main@bazel", + "deps": [ + { + "nodeId": "//crypto:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:acmecorp_logger@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.apache.commons:commons-lang3@3.12.0" + } + ] + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-core@1.12.84", + "pkgId": "com.amazonaws:aws-java-sdk-core@1.12.84", + "deps": [ + { + "nodeId": "commons-logging:commons-logging@1.2" + }, + { + "nodeId": "com.fasterxml.jackson.dataformat:jackson-dataformat-cbor@2.9.8" + }, + { + "nodeId": "software.amazon.ion:ion-java@1.0.2" + }, + { + "nodeId": "commons-codec:commons-codec@1.10" + }, + { + "nodeId": "org.apache.httpcomponents:httpclient@4.5.13" + }, + { + "nodeId": "joda-time:joda-time@2.9.2" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + } + ] + }, + { + "nodeId": "com.fasterxml.jackson.dataformat:jackson-dataformat-cbor@2.9.8", + "pkgId": "com.fasterxml.jackson.dataformat:jackson-dataformat-cbor@2.9.8", + "deps": [ + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + } + ] + }, + { + "nodeId": "software.amazon.ion:ion-java@1.0.2", + "pkgId": "software.amazon.ion:ion-java@1.0.2", + "deps": [] + }, + { + "nodeId": "//util:main@bazel", + "pkgId": "//util:main@bazel", + "deps": [ + { + "nodeId": "//globals:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//logger:acmecorp_logger@bazel" + }, + { + "nodeId": "@com_fasterxml_jackson_dataformat_jackson_dataformat_csv//:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.dataformat:jackson-dataformat-yaml@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "com.intellij:annotations@12.0" + }, + { + "nodeId": "commons-codec:commons-codec@1.10" + }, + { + "nodeId": "io.netty:netty-buffer@4.1.50.Final" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "javax.xml.bind:jaxb-api@2.2.2" + }, + { + "nodeId": "javax.xml.soap:javax.xml.soap-api@1.4.0" + }, + { + "nodeId": "org.bouncycastle:bcpkix-jdk15on@1.70" + }, + { + "nodeId": "org.bouncycastle:bcprov-jdk15to18@1.70" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + }, + { + "nodeId": "org.jooq:jool-java-8@0.9.14" + } + ] + }, + { + "nodeId": "com.fasterxml.jackson.dataformat:jackson-dataformat-yaml@2.9.8", + "pkgId": "com.fasterxml.jackson.dataformat:jackson-dataformat-yaml@2.9.8", + "deps": [ + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "org.yaml:snakeyaml@1.23" + } + ] + }, + { + "nodeId": "org.yaml:snakeyaml@1.23", + "pkgId": "org.yaml:snakeyaml@1.23", + "deps": [] + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8", + "pkgId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8", + "deps": [ + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-base@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.module:jackson-module-jaxb-annotations@2.9.8" + } + ] + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-base@2.9.8", + "pkgId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-base@2.9.8", + "deps": [ + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + } + ] + }, + { + "nodeId": "com.fasterxml.jackson.module:jackson-module-jaxb-annotations@2.9.8", + "pkgId": "com.fasterxml.jackson.module:jackson-module-jaxb-annotations@2.9.8", + "deps": [ + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + } + ] + }, + { + "nodeId": "com.intellij:annotations@12.0", + "pkgId": "com.intellij:annotations@12.0", + "deps": [] + }, + { + "nodeId": "io.netty:netty-buffer@4.1.50.Final", + "pkgId": "io.netty:netty-buffer@4.1.50.Final", + "deps": [ + { + "nodeId": "io.netty:netty-common@4.1.45.Final" + } + ] + }, + { + "nodeId": "io.netty:netty-common@4.1.45.Final", + "pkgId": "io.netty:netty-common@4.1.45.Final", + "deps": [] + }, + { + "nodeId": "javax.xml.soap:javax.xml.soap-api@1.4.0", + "pkgId": "javax.xml.soap:javax.xml.soap-api@1.4.0", + "deps": [] + }, + { + "nodeId": "org.bouncycastle:bcpkix-jdk15on@1.70", + "pkgId": "org.bouncycastle:bcpkix-jdk15on@1.70", + "deps": [ + { + "nodeId": "org.bouncycastle:bcprov-jdk15on@1.70" + }, + { + "nodeId": "org.bouncycastle:bcutil-jdk15on:jar@1.70" + } + ] + }, + { + "nodeId": "org.bouncycastle:bcprov-jdk15on@1.70", + "pkgId": "org.bouncycastle:bcprov-jdk15on@1.70", + "deps": [] + }, + { + "nodeId": "org.bouncycastle:bcutil-jdk15on:jar@1.70", + "pkgId": "org.bouncycastle:bcutil-jdk15on:jar@1.70", + "deps": [ + { + "nodeId": "org.bouncycastle:bcprov-jdk15on@1.70" + } + ] + }, + { + "nodeId": "org.bouncycastle:bcprov-jdk15to18@1.70", + "pkgId": "org.bouncycastle:bcprov-jdk15to18@1.70", + "deps": [] + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31", + "pkgId": "org.glassfish.jersey.core:jersey-client@2.31", + "deps": [ + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.glassfish.hk2.external:jakarta.inject@2.6.1" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-common@2.31" + } + ] + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-common@2.31", + "pkgId": "org.glassfish.jersey.core:jersey-common@2.31", + "deps": [ + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.glassfish.hk2.external:jakarta.inject@2.6.1" + }, + { + "nodeId": "org.glassfish.hk2:osgi-resource-locator@1.0.3" + }, + { + "nodeId": "jakarta.annotation:jakarta.annotation-api@1.3.5" + }, + { + "nodeId": "com.sun.activation:jakarta.activation@2.0.1" + } + ] + }, + { + "nodeId": "org.glassfish.hk2:osgi-resource-locator@1.0.3", + "pkgId": "org.glassfish.hk2:osgi-resource-locator@1.0.3", + "deps": [] + }, + { + "nodeId": "jakarta.annotation:jakarta.annotation-api@1.3.5", + "pkgId": "jakarta.annotation:jakarta.annotation-api@1.3.5", + "deps": [] + }, + { + "nodeId": "com.sun.activation:jakarta.activation@2.0.1", + "pkgId": "com.sun.activation:jakarta.activation@2.0.1", + "deps": [] + }, + { + "nodeId": "org.jooq:jool-java-8@0.9.14", + "pkgId": "org.jooq:jool-java-8@0.9.14", + "deps": [] + }, + { + "nodeId": "commons-configuration:commons-configuration@1.10", + "pkgId": "commons-configuration:commons-configuration@1.10", + "deps": [ + { + "nodeId": "commons-lang:commons-lang@2.6" + }, + { + "nodeId": "commons-logging:commons-logging@1.2" + } + ] + }, + { + "nodeId": "commons-lang:commons-lang@2.6", + "pkgId": "commons-lang:commons-lang@2.6", + "deps": [] + }, + { + "nodeId": "org.glassfish.jersey.connectors:jersey-apache-connector@2.31", + "pkgId": "org.glassfish.jersey.connectors:jersey-apache-connector@2.31", + "deps": [ + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.apache.httpcomponents:httpclient@4.5.13" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-common@2.31" + } + ] + }, + { + "nodeId": "//secred/util:main@bazel", + "pkgId": "//secred/util:main@bazel", + "deps": [ + { + "nodeId": "//crypto:pojos@bazel" + }, + { + "nodeId": "//database:credential_models@bazel" + }, + { + "nodeId": "//globals:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:acmecorp_logger@bazel" + }, + { + "nodeId": "//secred/client:main@bazel" + }, + { + "nodeId": "//secred/common:main@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + } + ] + }, + { + "nodeId": "//database:credential_models@bazel", + "pkgId": "//database:credential_models@bazel", + "deps": [ + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "org.apache.commons:commons-lang3@3.12.0" + } + ] + }, + { + "nodeId": "//secrets/services:main@bazel", + "pkgId": "//secrets/services:main@bazel", + "deps": [ + { + "nodeId": "//crypto:pojos@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:acmecorp_logger@bazel" + }, + { + "nodeId": "//secred/client:main@bazel" + }, + { + "nodeId": "//secred/common:main@bazel" + }, + { + "nodeId": "//secred/util:main@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.dataformat:jackson-dataformat-yaml@2.9.8" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + } + ] + }, + { + "nodeId": "org.json:json@20171018", + "pkgId": "org.json:json@20171018", + "deps": [] + }, + { + "nodeId": "//feature_flag:main@bazel", + "pkgId": "//feature_flag:main@bazel", + "deps": [ + { + "nodeId": "//feature_flag:details@bazel" + }, + { + "nodeId": "//crypto:main@bazel" + }, + { + "nodeId": "//database:enums@bazel" + }, + { + "nodeId": "//database:flags@bazel" + }, + { + "nodeId": "//database/exceptions:main@bazel" + }, + { + "nodeId": "//globals:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:acmecorp_logger@bazel" + }, + { + "nodeId": "//newrelic_utils:donkey_logs_url_builder@bazel" + }, + { + "nodeId": "//slack:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "//warehouses/common:warehouse_type@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "org.apache.commons:commons-lang3@3.12.0" + }, + { + "nodeId": "org.glassfish.hk2.external:jakarta.inject@2.6.1" + } + ] + }, + { + "nodeId": "//database:flags@bazel", + "pkgId": "//database:flags@bazel", + "deps": [ + { + "nodeId": "//database:postgresql_jdbc_fix@bazel" + }, + { + "nodeId": "//api/db:api_production_datasource@bazel" + }, + { + "nodeId": "//database:credential_models@bazel" + }, + { + "nodeId": "//database:data_sources@bazel" + }, + { + "nodeId": "//database:enums@bazel" + }, + { + "nodeId": "//database/exceptions:main@bazel" + }, + { + "nodeId": "//dockerized/postgres:main@bazel" + }, + { + "nodeId": "//globals:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//secred/util:main@bazel" + }, + { + "nodeId": "//secrets/services:main@bazel" + }, + { + "nodeId": "//util:main@bazel" + }, + { + "nodeId": "//utils/exceptions:main@bazel" + }, + { + "nodeId": "//utils/nullability:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.glassfish.hk2.external:jakarta.inject@2.6.1" + }, + { + "nodeId": "org.postgresql:postgresql@42.3.3" + } + ] + }, + { + "nodeId": "//database:postgresql_jdbc_fix@bazel", + "pkgId": "//database:postgresql_jdbc_fix@bazel", + "deps": [ + { + "nodeId": "//utils/exceptions:main@bazel" + }, + { + "nodeId": "org.postgresql:postgresql@42.3.3" + } + ] + }, + { + "nodeId": "org.postgresql:postgresql@42.3.3", + "pkgId": "org.postgresql:postgresql@42.3.3", + "deps": [ + { + "nodeId": "org.checkerframework:checker-qual@3.22.0" + } + ] + }, + { + "nodeId": "//api/db:api_production_datasource@bazel", + "pkgId": "//api/db:api_production_datasource@bazel", + "deps": [ + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "com.zaxxer:HikariCP@3.4.1" + }, + { + "nodeId": "commons-io:commons-io@2.4" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.slf4j:slf4j-api@1.7.13" + } + ] + }, + { + "nodeId": "com.zaxxer:HikariCP@3.4.1", + "pkgId": "com.zaxxer:HikariCP@3.4.1", + "deps": [ + { + "nodeId": "org.slf4j:slf4j-api@1.7.13" + } + ] + }, + { + "nodeId": "org.slf4j:slf4j-api@1.7.13", + "pkgId": "org.slf4j:slf4j-api@1.7.13", + "deps": [] + }, + { + "nodeId": "commons-io:commons-io@2.4", + "pkgId": "commons-io:commons-io@2.4", + "deps": [] + }, + { + "nodeId": "//database:data_sources@bazel", + "pkgId": "//database:data_sources@bazel", + "deps": [ + { + "nodeId": "com.mchange:c3p0@0.9.5.1" + }, + { + "nodeId": "com.zaxxer:HikariCP@3.4.1" + } + ] + }, + { + "nodeId": "com.mchange:c3p0@0.9.5.1", + "pkgId": "com.mchange:c3p0@0.9.5.1", + "deps": [ + { + "nodeId": "com.mchange:mchange-commons-java@0.2.10" + } + ] + }, + { + "nodeId": "com.mchange:mchange-commons-java@0.2.10", + "pkgId": "com.mchange:mchange-commons-java@0.2.10", + "deps": [] + }, + { + "nodeId": "//database/exceptions:main@bazel", + "pkgId": "//database/exceptions:main@bazel", + "deps": [ + { + "nodeId": "//utils/nullability:main@bazel" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.mchange:c3p0@0.9.5.1" + }, + { + "nodeId": "org.postgresql:postgresql@42.3.3" + } + ] + }, + { + "nodeId": "//utils/nullability:main@bazel", + "pkgId": "//utils/nullability:main@bazel", + "deps": [ + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + } + ] + }, + { + "nodeId": "//dockerized/postgres:main@bazel", + "pkgId": "//dockerized/postgres:main@bazel", + "deps": [ + { + "nodeId": "//database:credential_models@bazel" + }, + { + "nodeId": "//database:postgresql_jdbc_fix@bazel" + }, + { + "nodeId": "//dockerized/common:main@bazel" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "org.postgresql:postgresql@42.3.3" + } + ] + }, + { + "nodeId": "//dockerized/common:main@bazel", + "pkgId": "//dockerized/common:main@bazel", + "deps": [ + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//metal:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + } + ] + }, + { + "nodeId": "//metal:main@bazel", + "pkgId": "//metal:main@bazel", + "deps": [ + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-core@1.12.84" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-logs@1.12.84" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-resourcegroupstaggingapi@1.12.84" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-s3@1.12.84" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.code.gson:gson@2.9.0" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "commons-io:commons-io@2.4" + }, + { + "nodeId": "org.apache.commons:commons-lang3@3.12.0" + } + ] + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-logs@1.12.84", + "pkgId": "com.amazonaws:aws-java-sdk-logs@1.12.84", + "deps": [ + { + "nodeId": "com.amazonaws:aws-java-sdk-core@1.12.84" + }, + { + "nodeId": "com.amazonaws:jmespath-java@1.11.91" + } + ] + }, + { + "nodeId": "com.amazonaws:jmespath-java@1.11.91", + "pkgId": "com.amazonaws:jmespath-java@1.11.91", + "deps": [ + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + } + ] + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-resourcegroupstaggingapi@1.12.84", + "pkgId": "com.amazonaws:aws-java-sdk-resourcegroupstaggingapi@1.12.84", + "deps": [ + { + "nodeId": "com.amazonaws:aws-java-sdk-core@1.12.84" + }, + { + "nodeId": "com.amazonaws:jmespath-java@1.11.91" + } + ] + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-s3@1.12.84", + "pkgId": "com.amazonaws:aws-java-sdk-s3@1.12.84", + "deps": [ + { + "nodeId": "com.amazonaws:aws-java-sdk-core@1.12.84" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-kms@1.12.84" + }, + { + "nodeId": "com.amazonaws:jmespath-java@1.11.91" + } + ] + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-kms@1.12.84", + "pkgId": "com.amazonaws:aws-java-sdk-kms@1.12.84", + "deps": [ + { + "nodeId": "com.amazonaws:aws-java-sdk-core@1.12.84" + }, + { + "nodeId": "com.amazonaws:jmespath-java@1.11.91" + } + ] + }, + { + "nodeId": "//newrelic_utils:donkey_logs_url_builder@bazel", + "pkgId": "//newrelic_utils:donkey_logs_url_builder@bazel", + "deps": [ + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + } + ] + }, + { + "nodeId": "//slack:main@bazel", + "pkgId": "//slack:main@bazel", + "deps": [ + { + "nodeId": "//globals:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//logger:acmecorp_logger@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + } + ] + }, + { + "nodeId": "//http:main@bazel", + "pkgId": "//http:main@bazel", + "deps": [ + { + "nodeId": "//globals:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-base@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "commons-codec:commons-codec@1.10" + }, + { + "nodeId": "commons-io:commons-io@2.4" + }, + { + "nodeId": "jakarta.annotation:jakarta.annotation-api@1.3.5" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "javax.servlet:javax.servlet-api@3.1.0" + }, + { + "nodeId": "org.apache.httpcomponents:httpclient@4.5.13" + }, + { + "nodeId": "org.eclipse.jetty:jetty-server@9.4.40.v20210413" + }, + { + "nodeId": "org.eclipse.jetty:jetty-util@9.4.40.v20210413" + }, + { + "nodeId": "org.glassfish.hk2.external:jakarta.inject@2.6.1" + }, + { + "nodeId": "org.glassfish.hk2:hk2-api@2.6.1" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-common@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-server@2.31" + }, + { + "nodeId": "org.glassfish.jersey.inject:jersey-hk2@2.31" + } + ] + }, + { + "nodeId": "javax.servlet:javax.servlet-api@3.1.0", + "pkgId": "javax.servlet:javax.servlet-api@3.1.0", + "deps": [] + }, + { + "nodeId": "org.eclipse.jetty:jetty-server@9.4.40.v20210413", + "pkgId": "org.eclipse.jetty:jetty-server@9.4.40.v20210413", + "deps": [ + { + "nodeId": "javax.servlet:javax.servlet-api@3.1.0" + }, + { + "nodeId": "org.eclipse.jetty:jetty-http@9.4.40.v20210413" + }, + { + "nodeId": "org.eclipse.jetty:jetty-io@9.4.40.v20210413" + } + ] + }, + { + "nodeId": "org.eclipse.jetty:jetty-http@9.4.40.v20210413", + "pkgId": "org.eclipse.jetty:jetty-http@9.4.40.v20210413", + "deps": [ + { + "nodeId": "org.eclipse.jetty:jetty-io@9.4.40.v20210413" + }, + { + "nodeId": "org.eclipse.jetty:jetty-util@9.4.40.v20210413" + } + ] + }, + { + "nodeId": "org.eclipse.jetty:jetty-io@9.4.40.v20210413", + "pkgId": "org.eclipse.jetty:jetty-io@9.4.40.v20210413", + "deps": [ + { + "nodeId": "org.eclipse.jetty:jetty-util@9.4.40.v20210413" + } + ] + }, + { + "nodeId": "org.eclipse.jetty:jetty-util@9.4.40.v20210413", + "pkgId": "org.eclipse.jetty:jetty-util@9.4.40.v20210413", + "deps": [] + }, + { + "nodeId": "org.glassfish.hk2:hk2-api@2.6.1", + "pkgId": "org.glassfish.hk2:hk2-api@2.6.1", + "deps": [ + { + "nodeId": "org.glassfish.hk2:hk2-utils@2.6.1" + }, + { + "nodeId": "org.glassfish.hk2.external:aopalliance-repackaged@2.6.1" + }, + { + "nodeId": "org.glassfish.hk2.external:jakarta.inject@2.6.1" + } + ] + }, + { + "nodeId": "org.glassfish.hk2:hk2-utils@2.6.1", + "pkgId": "org.glassfish.hk2:hk2-utils@2.6.1", + "deps": [ + { + "nodeId": "jakarta.annotation:jakarta.annotation-api@1.3.5" + }, + { + "nodeId": "org.glassfish.hk2.external:jakarta.inject@2.6.1" + } + ] + }, + { + "nodeId": "org.glassfish.hk2.external:aopalliance-repackaged@2.6.1", + "pkgId": "org.glassfish.hk2.external:aopalliance-repackaged@2.6.1", + "deps": [] + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-server@2.31", + "pkgId": "org.glassfish.jersey.core:jersey-server@2.31", + "deps": [ + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.glassfish.hk2.external:jakarta.inject@2.6.1" + }, + { + "nodeId": "org.glassfish.jersey.media:jersey-media-jaxb@2.31" + }, + { + "nodeId": "jakarta.annotation:jakarta.annotation-api@1.3.5" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + }, + { + "nodeId": "jakarta.validation:jakarta.validation-api@2.0.2" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-common@2.31" + }, + { + "nodeId": "jakarta.xml.bind:jakarta.xml.bind-api@3.0.1" + } + ] + }, + { + "nodeId": "org.glassfish.jersey.media:jersey-media-jaxb@2.31", + "pkgId": "org.glassfish.jersey.media:jersey-media-jaxb@2.31", + "deps": [ + { + "nodeId": "org.glassfish.hk2:osgi-resource-locator@1.0.3" + }, + { + "nodeId": "org.glassfish.hk2.external:jakarta.inject@2.6.1" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-common@2.31" + } + ] + }, + { + "nodeId": "jakarta.validation:jakarta.validation-api@2.0.2", + "pkgId": "jakarta.validation:jakarta.validation-api@2.0.2", + "deps": [] + }, + { + "nodeId": "jakarta.xml.bind:jakarta.xml.bind-api@3.0.1", + "pkgId": "jakarta.xml.bind:jakarta.xml.bind-api@3.0.1", + "deps": [ + { + "nodeId": "com.sun.activation:jakarta.activation@2.0.1" + } + ] + }, + { + "nodeId": "org.glassfish.jersey.inject:jersey-hk2@2.31", + "pkgId": "org.glassfish.jersey.inject:jersey-hk2@2.31", + "deps": [ + { + "nodeId": "org.glassfish.hk2:hk2-locator@2.6.1" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-common@2.31" + }, + { + "nodeId": "org.javassist:javassist@3.21.0-GA" + } + ] + }, + { + "nodeId": "org.glassfish.hk2:hk2-locator@2.6.1", + "pkgId": "org.glassfish.hk2:hk2-locator@2.6.1", + "deps": [ + { + "nodeId": "org.glassfish.hk2.external:jakarta.inject@2.6.1" + }, + { + "nodeId": "org.glassfish.hk2.external:aopalliance-repackaged@2.6.1" + }, + { + "nodeId": "org.glassfish.hk2:hk2-utils@2.6.1" + }, + { + "nodeId": "jakarta.annotation:jakarta.annotation-api@1.3.5" + }, + { + "nodeId": "org.javassist:javassist@3.21.0-GA" + }, + { + "nodeId": "org.glassfish.hk2:hk2-api@2.6.1" + } + ] + }, + { + "nodeId": "org.javassist:javassist@3.21.0-GA", + "pkgId": "org.javassist:javassist@3.21.0-GA", + "deps": [] + }, + { + "nodeId": "//forms:main@bazel", + "pkgId": "//forms:main@bazel", + "deps": [ + { + "nodeId": "//app:docs_deps@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + } + ] + }, + { + "nodeId": "//app:docs_deps@bazel", + "pkgId": "//app:docs_deps@bazel", + "deps": [] + }, + { + "nodeId": "//heartbeat:main@bazel", + "pkgId": "//heartbeat:main@bazel", + "deps": [ + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//util:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + } + ] + }, + { + "nodeId": "//markdown:main@bazel", + "pkgId": "//markdown:main@bazel", + "deps": [ + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "org.apache.velocity:velocity@1.7" + }, + { + "nodeId": "org.pegdown:pegdown@1.5.0" + } + ] + }, + { + "nodeId": "org.apache.velocity:velocity@1.7", + "pkgId": "org.apache.velocity:velocity@1.7", + "deps": [ + { + "nodeId": "commons-collections:commons-collections@3.2.2" + }, + { + "nodeId": "commons-lang:commons-lang@2.6" + } + ] + }, + { + "nodeId": "commons-collections:commons-collections@3.2.2", + "pkgId": "commons-collections:commons-collections@3.2.2", + "deps": [] + }, + { + "nodeId": "org.pegdown:pegdown@1.5.0", + "pkgId": "org.pegdown:pegdown@1.5.0", + "deps": [ + { + "nodeId": "org.parboiled:parboiled-java@1.2.0" + } + ] + }, + { + "nodeId": "org.parboiled:parboiled-java@1.2.0", + "pkgId": "org.parboiled:parboiled-java@1.2.0", + "deps": [ + { + "nodeId": "org.ow2.asm:asm-tree@8.0.1" + }, + { + "nodeId": "org.ow2.asm:asm@8.0.1" + }, + { + "nodeId": "org.ow2.asm:asm-analysis@8.0.1" + }, + { + "nodeId": "org.ow2.asm:asm-util@8.0.1" + }, + { + "nodeId": "org.parboiled:parboiled-core@1.2.0" + } + ] + }, + { + "nodeId": "org.ow2.asm:asm-tree@8.0.1", + "pkgId": "org.ow2.asm:asm-tree@8.0.1", + "deps": [ + { + "nodeId": "org.ow2.asm:asm@8.0.1" + } + ] + }, + { + "nodeId": "org.ow2.asm:asm@8.0.1", + "pkgId": "org.ow2.asm:asm@8.0.1", + "deps": [] + }, + { + "nodeId": "org.ow2.asm:asm-analysis@8.0.1", + "pkgId": "org.ow2.asm:asm-analysis@8.0.1", + "deps": [ + { + "nodeId": "org.ow2.asm:asm-tree@8.0.1" + } + ] + }, + { + "nodeId": "org.ow2.asm:asm-util@8.0.1", + "pkgId": "org.ow2.asm:asm-util@8.0.1", + "deps": [ + { + "nodeId": "org.ow2.asm:asm@8.0.1" + }, + { + "nodeId": "org.ow2.asm:asm-analysis@8.0.1" + }, + { + "nodeId": "org.ow2.asm:asm-tree@8.0.1" + } + ] + }, + { + "nodeId": "org.parboiled:parboiled-core@1.2.0", + "pkgId": "org.parboiled:parboiled-core@1.2.0", + "deps": [] + }, + { + "nodeId": "//schema_migration:schema_migration_info@bazel", + "pkgId": "//schema_migration:schema_migration_info@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:names_dep_to_avoid_cyclic_core_dep@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + } + ] + }, + { + "nodeId": "//core_interfaces:names_dep_to_avoid_cyclic_core_dep@bazel", + "pkgId": "//core_interfaces:names_dep_to_avoid_cyclic_core_dep@bazel", + "deps": [ + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//util:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "com.ibm.icu:icu4j@62.1" + } + ] + }, + { + "nodeId": "com.ibm.icu:icu4j@62.1", + "pkgId": "com.ibm.icu:icu4j@62.1", + "deps": [] + }, + { + "nodeId": "//sources/types:main@bazel", + "pkgId": "//sources/types:main@bazel", + "deps": [ + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "org.apache.commons:commons-lang3@3.12.0" + } + ] + }, + { + "nodeId": "//utils/validations:main@bazel", + "pkgId": "//utils/validations:main@bazel", + "deps": [ + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + } + ] + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-joda@2.9.8", + "pkgId": "com.fasterxml.jackson.datatype:jackson-datatype-joda@2.9.8", + "deps": [ + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "joda-time:joda-time@2.9.2" + } + ] + }, + { + "nodeId": "org.glassfish.jersey.security:oauth1-client@2.31", + "pkgId": "org.glassfish.jersey.security:oauth1-client@2.31", + "deps": [ + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-common@2.31" + }, + { + "nodeId": "org.glassfish.jersey.security:oauth1-signature@2.31" + } + ] + }, + { + "nodeId": "org.glassfish.jersey.security:oauth1-signature@2.31", + "pkgId": "org.glassfish.jersey.security:oauth1-signature@2.31", + "deps": [ + { + "nodeId": "org.glassfish.jersey.core:jersey-common@2.31" + } + ] + }, + { + "nodeId": "//database:hikari@bazel", + "pkgId": "//database:hikari@bazel", + "deps": [ + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "com.zaxxer:HikariCP@3.4.1" + } + ] + }, + { + "nodeId": "//database:main@bazel", + "pkgId": "//database:main@bazel", + "deps": [ + { + "nodeId": "//database:postgresql_jdbc_fix@bazel" + }, + { + "nodeId": "//api/db:api_production_datasource@bazel" + }, + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//crypto:main@bazel" + }, + { + "nodeId": "//database:credential_models@bazel" + }, + { + "nodeId": "//database/exceptions:main@bazel" + }, + { + "nodeId": "//dbt/manifest:main@bazel" + }, + { + "nodeId": "//dockerized/postgres:main@bazel" + }, + { + "nodeId": "//dynamo:main@bazel" + }, + { + "nodeId": "//globals:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//jwt:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//partners:main@bazel" + }, + { + "nodeId": "//schema_migration:enum_types@bazel" + }, + { + "nodeId": "//secred/util:main@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//secrets/services:main@bazel" + }, + { + "nodeId": "//secrets/system:main@bazel" + }, + { + "nodeId": "//util:main@bazel" + }, + { + "nodeId": "//utils/exceptions:main@bazel" + }, + { + "nodeId": "//utils/nullability:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "//warehouses/common:warehouse_type@bazel" + }, + { + "nodeId": "//webhook:main@bazel" + }, + { + "nodeId": "//words:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.dataformat:jackson-dataformat-smile@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.google.api-client:google-api-client@1.31.1" + }, + { + "nodeId": "com.google.auth:google-auth-library-credentials@0.9.1" + }, + { + "nodeId": "com.google.auth:google-auth-library-oauth2-http@0.22.0" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "com.mchange:c3p0@0.9.5.1" + }, + { + "nodeId": "com.zaxxer:HikariCP@3.4.1" + }, + { + "nodeId": "commons-io:commons-io@2.4" + }, + { + "nodeId": "commons-lang:commons-lang@2.6" + }, + { + "nodeId": "io.micrometer:micrometer-core@1.5.3" + }, + { + "nodeId": "io.netty:netty-buffer@4.1.50.Final" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "javax.validation:validation-api@1.1.0.Final" + }, + { + "nodeId": "org.apache.commons:commons-lang3@3.12.0" + }, + { + "nodeId": "org.glassfish.hk2.external:jakarta.inject@2.6.1" + }, + { + "nodeId": "org.postgresql:postgresql@42.3.3" + } + ] + }, + { + "nodeId": "//dbt/manifest:main@bazel", + "pkgId": "//dbt/manifest:main@bazel", + "deps": [ + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + } + ] + }, + { + "nodeId": "//dynamo:main@bazel", + "pkgId": "//dynamo:main@bazel", + "deps": [ + { + "nodeId": "//aws:main@bazel" + }, + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//globals:main@bazel" + }, + { + "nodeId": "//jackson_module_json_schema:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-core@1.12.84" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-dynamodb@1.12.84" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-kms@1.12.84" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + } + ] + }, + { + "nodeId": "//aws:main@bazel", + "pkgId": "//aws:main@bazel", + "deps": [ + { + "nodeId": "//cloud_storage:main@bazel" + }, + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//emails:core@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//globals:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//secrets/system:main@bazel" + }, + { + "nodeId": "//util:main@bazel" + }, + { + "nodeId": "//utils/exceptions:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-cloudtrail@1.12.84" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-config@1.12.84" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-core@1.12.84" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-dynamodb@1.12.84" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-ec2@1.12.84" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-elasticloadbalancingv2@1.12.84" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-glue@1.12.84" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-iam@1.12.84" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-kms@1.12.84" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-route53@1.12.84" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-s3@1.12.84" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-ses@1.12.84" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-sts@1.12.84" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "commons-codec:commons-codec@1.10" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.glassfish.hk2.external:jakarta.inject@2.6.1" + }, + { + "nodeId": "org.glassfish.jersey.inject:jersey-hk2@2.31" + } + ] + }, + { + "nodeId": "//cloud_storage:main@bazel", + "pkgId": "//cloud_storage:main@bazel", + "deps": [ + { + "nodeId": "//utils/nullability:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + } + ] + }, + { + "nodeId": "//emails:core@bazel", + "pkgId": "//emails:core@bazel", + "deps": [ + { + "nodeId": "//logger:acmecorp_logger@bazel" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + } + ] + }, + { + "nodeId": "//secrets/system:main@bazel", + "pkgId": "//secrets/system:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//globals:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//secrets/services:main@bazel" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-core@1.12.84" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.dataformat:jackson-dataformat-yaml@2.9.8" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + } + ] + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-cloudtrail@1.12.84", + "pkgId": "com.amazonaws:aws-java-sdk-cloudtrail@1.12.84", + "deps": [ + { + "nodeId": "com.amazonaws:aws-java-sdk-core@1.12.84" + }, + { + "nodeId": "com.amazonaws:jmespath-java@1.11.91" + } + ] + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-config@1.12.84", + "pkgId": "com.amazonaws:aws-java-sdk-config@1.12.84", + "deps": [ + { + "nodeId": "com.amazonaws:aws-java-sdk-core@1.12.84" + }, + { + "nodeId": "com.amazonaws:jmespath-java@1.11.91" + } + ] + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-dynamodb@1.12.84", + "pkgId": "com.amazonaws:aws-java-sdk-dynamodb@1.12.84", + "deps": [ + { + "nodeId": "com.amazonaws:aws-java-sdk-core@1.12.84" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-s3@1.12.84" + }, + { + "nodeId": "com.amazonaws:jmespath-java@1.11.91" + } + ] + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-ec2@1.12.84", + "pkgId": "com.amazonaws:aws-java-sdk-ec2@1.12.84", + "deps": [ + { + "nodeId": "com.amazonaws:aws-java-sdk-core@1.12.84" + }, + { + "nodeId": "com.amazonaws:jmespath-java@1.11.91" + } + ] + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-elasticloadbalancingv2@1.12.84", + "pkgId": "com.amazonaws:aws-java-sdk-elasticloadbalancingv2@1.12.84", + "deps": [ + { + "nodeId": "com.amazonaws:aws-java-sdk-core@1.12.84" + }, + { + "nodeId": "com.amazonaws:jmespath-java@1.11.91" + } + ] + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-glue@1.12.84", + "pkgId": "com.amazonaws:aws-java-sdk-glue@1.12.84", + "deps": [ + { + "nodeId": "com.amazonaws:aws-java-sdk-core@1.12.84" + }, + { + "nodeId": "com.amazonaws:jmespath-java@1.11.91" + } + ] + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-iam@1.12.84", + "pkgId": "com.amazonaws:aws-java-sdk-iam@1.12.84", + "deps": [ + { + "nodeId": "com.amazonaws:aws-java-sdk-core@1.12.84" + }, + { + "nodeId": "com.amazonaws:jmespath-java@1.11.91" + } + ] + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-route53@1.12.84", + "pkgId": "com.amazonaws:aws-java-sdk-route53@1.12.84", + "deps": [ + { + "nodeId": "com.amazonaws:aws-java-sdk-core@1.12.84" + }, + { + "nodeId": "com.amazonaws:jmespath-java@1.11.91" + } + ] + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-ses@1.12.84", + "pkgId": "com.amazonaws:aws-java-sdk-ses@1.12.84", + "deps": [ + { + "nodeId": "com.amazonaws:aws-java-sdk-core@1.12.84" + }, + { + "nodeId": "com.amazonaws:jmespath-java@1.11.91" + } + ] + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-sts@1.12.84", + "pkgId": "com.amazonaws:aws-java-sdk-sts@1.12.84", + "deps": [ + { + "nodeId": "com.amazonaws:aws-java-sdk-core@1.12.84" + }, + { + "nodeId": "com.amazonaws:jmespath-java@1.11.91" + } + ] + }, + { + "nodeId": "//jackson_module_json_schema:main@bazel", + "pkgId": "//jackson_module_json_schema:main@bazel", + "deps": [ + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "javax.validation:validation-api@1.1.0.Final" + } + ] + }, + { + "nodeId": "javax.validation:validation-api@1.1.0.Final", + "pkgId": "javax.validation:validation-api@1.1.0.Final", + "deps": [] + }, + { + "nodeId": "//partners:main@bazel", + "pkgId": "//partners:main@bazel", + "deps": [] + }, + { + "nodeId": "//webhook:main@bazel", + "pkgId": "//webhook:main@bazel", + "deps": [] + }, + { + "nodeId": "//words:main@bazel", + "pkgId": "//words:main@bazel", + "deps": [] + }, + { + "nodeId": "com.fasterxml.jackson.dataformat:jackson-dataformat-smile@2.9.8", + "pkgId": "com.fasterxml.jackson.dataformat:jackson-dataformat-smile@2.9.8", + "deps": [ + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + } + ] + }, + { + "nodeId": "com.google.api-client:google-api-client@1.31.1", + "pkgId": "com.google.api-client:google-api-client@1.31.1", + "deps": [ + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "com.google.http-client:google-http-client-apache-v2@1.39.2" + }, + { + "nodeId": "com.google.http-client:google-http-client-jackson2@1.35.0" + }, + { + "nodeId": "com.google.oauth-client:google-oauth-client@1.23.0" + } + ] + }, + { + "nodeId": "com.google.http-client:google-http-client-apache-v2@1.39.2", + "pkgId": "com.google.http-client:google-http-client-apache-v2@1.39.2", + "deps": [ + { + "nodeId": "com.google.http-client:google-http-client@1.39.2" + }, + { + "nodeId": "org.apache.httpcomponents:httpclient@4.5.13" + }, + { + "nodeId": "org.apache.httpcomponents:httpcore@4.4.13" + } + ] + }, + { + "nodeId": "com.google.oauth-client:google-oauth-client@1.23.0", + "pkgId": "com.google.oauth-client:google-oauth-client@1.23.0", + "deps": [ + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.http-client:google-http-client@1.39.2" + } + ] + }, + { + "nodeId": "io.micrometer:micrometer-core@1.5.3", + "pkgId": "io.micrometer:micrometer-core@1.5.3", + "deps": [ + { + "nodeId": "org.hdrhistogram:HdrHistogram@2.1.12" + }, + { + "nodeId": "org.latencyutils:LatencyUtils@2.0.3" + } + ] + }, + { + "nodeId": "org.hdrhistogram:HdrHistogram@2.1.12", + "pkgId": "org.hdrhistogram:HdrHistogram@2.1.12", + "deps": [] + }, + { + "nodeId": "org.latencyutils:LatencyUtils@2.0.3", + "pkgId": "org.latencyutils:LatencyUtils@2.0.3", + "deps": [] + }, + { + "nodeId": "//common:main@bazel", + "pkgId": "//common:main@bazel", + "deps": [ + { + "nodeId": "//aws:main@bazel" + }, + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//dynamo:main@bazel" + }, + { + "nodeId": "//globals:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//utils/exceptions:main@bazel" + }, + { + "nodeId": "//utils/nullability:main@bazel" + }, + { + "nodeId": "//utils/threading:main@bazel" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-core@1.12.84" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-ec2@1.12.84" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "com.ibm.icu:icu4j@62.1" + }, + { + "nodeId": "commons-io:commons-io@2.4" + }, + { + "nodeId": "org.apache.velocity:velocity@1.7" + } + ] + }, + { + "nodeId": "//utils/threading:main@bazel", + "pkgId": "//utils/threading:main@bazel", + "deps": [ + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//utils/exceptions:main@bazel" + }, + { + "nodeId": "//utils/nullability:main@bazel" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "commons-io:commons-io@2.4" + } + ] + }, + { + "nodeId": "//core_interfaces/cursor:main@bazel", + "pkgId": "//core_interfaces/cursor:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//database/resilience:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//utils/nullability:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "org.glassfish.hk2.external:jakarta.inject@2.6.1" + } + ] + }, + { + "nodeId": "//database/resilience:main@bazel", + "pkgId": "//database/resilience:main@bazel", + "deps": [ + { + "nodeId": "//database/exceptions:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//utils/nullability:main@bazel" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + } + ] + }, + { + "nodeId": "//database:ssh_verify@bazel", + "pkgId": "//database:ssh_verify@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//utils/exceptions:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "commons-codec:commons-codec@1.10" + } + ] + }, + { + "nodeId": "//database:tls_verify@bazel", + "pkgId": "//database:tls_verify@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//util:main@bazel" + }, + { + "nodeId": "//utils/exceptions:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + } + ] + }, + { + "nodeId": "//dbt/api/client:main@bazel", + "pkgId": "//dbt/api/client:main@bazel", + "deps": [ + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//http:basic_auth_credentials@bazel" + }, + { + "nodeId": "//http:curl_request@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//util:main@bazel" + }, + { + "nodeId": "//utils/uri:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + } + ] + }, + { + "nodeId": "//http:basic_auth_credentials@bazel", + "pkgId": "//http:basic_auth_credentials@bazel", + "deps": [ + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + } + ] + }, + { + "nodeId": "//http:curl_request@bazel", + "pkgId": "//http:curl_request@bazel", + "deps": [ + { + "nodeId": "//crypto:main@bazel" + }, + { + "nodeId": "//globals:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "jakarta.annotation:jakarta.annotation-api@1.3.5" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.apache.httpcomponents:httpclient@4.5.13" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-common@2.31" + } + ] + }, + { + "nodeId": "//utils/uri:main@bazel", + "pkgId": "//utils/uri:main@bazel", + "deps": [ + { + "nodeId": "//database:enums@bazel" + }, + { + "nodeId": "//globals:main@bazel" + } + ] + }, + { + "nodeId": "//dbt/services:main@bazel", + "pkgId": "//dbt/services:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//database:hikari@bazel" + }, + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//database/exceptions:main@bazel" + }, + { + "nodeId": "//dbt/git:main@bazel" + }, + { + "nodeId": "//emails:core@bazel" + }, + { + "nodeId": "//emails:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//feature_flag/service:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//secrets/services:main@bazel" + }, + { + "nodeId": "//secrets/system:main@bazel" + }, + { + "nodeId": "//services:main@bazel" + }, + { + "nodeId": "//ssh:main@bazel" + }, + { + "nodeId": "//utils/bootstrap:main@bazel" + }, + { + "nodeId": "//utils/validations:main@bazel" + }, + { + "nodeId": "com.cronutils:cron-utils@9.0.2" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.dataformat:jackson-dataformat-yaml@2.9.8" + }, + { + "nodeId": "com.google.auth:google-auth-library-oauth2-http@0.22.0" + }, + { + "nodeId": "com.google.cloud:google-cloud-storage@1.108.0" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "commons-io:commons-io@2.4" + }, + { + "nodeId": "commons-lang:commons-lang@2.6" + }, + { + "nodeId": "javax.validation:validation-api@1.1.0.Final" + }, + { + "nodeId": "org.glassfish.hk2.external:jakarta.inject@2.6.1" + }, + { + "nodeId": "org.glassfish.hk2:hk2-api@2.6.1" + }, + { + "nodeId": "org.hibernate:hibernate-validator@5.4.3.Final" + } + ] + }, + { + "nodeId": "//dbt/git:main@bazel", + "pkgId": "//dbt/git:main@bazel", + "deps": [ + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//utils/exceptions:main@bazel" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "commons-io:commons-io@2.4" + }, + { + "nodeId": "commons-lang:commons-lang@2.6" + }, + { + "nodeId": "org.bouncycastle:bcpkix-jdk15on@1.70" + }, + { + "nodeId": "org.bouncycastle:bcprov-jdk15on@1.70" + }, + { + "nodeId": "org.eclipse.jgit:org.eclipse.jgit@6.2.0.202206071550-r" + }, + { + "nodeId": "org.eclipse.jgit:org.eclipse.jgit.ssh.apache@6.2.0.202206071550-r" + }, + { + "nodeId": "org.glassfish.hk2.external:jakarta.inject@2.6.1" + } + ] + }, + { + "nodeId": "org.eclipse.jgit:org.eclipse.jgit@6.2.0.202206071550-r", + "pkgId": "org.eclipse.jgit:org.eclipse.jgit@6.2.0.202206071550-r", + "deps": [ + { + "nodeId": "com.googlecode.javaewah:JavaEWAH@1.1.13" + }, + { + "nodeId": "org.slf4j:slf4j-api@1.7.13" + } + ] + }, + { + "nodeId": "com.googlecode.javaewah:JavaEWAH@1.1.13", + "pkgId": "com.googlecode.javaewah:JavaEWAH@1.1.13", + "deps": [] + }, + { + "nodeId": "org.eclipse.jgit:org.eclipse.jgit.ssh.apache@6.2.0.202206071550-r", + "pkgId": "org.eclipse.jgit:org.eclipse.jgit.ssh.apache@6.2.0.202206071550-r", + "deps": [ + { + "nodeId": "net.i2p.crypto:eddsa@0.3.0" + }, + { + "nodeId": "org.eclipse.jgit:org.eclipse.jgit@6.2.0.202206071550-r" + }, + { + "nodeId": "org.slf4j:slf4j-api@1.7.13" + }, + { + "nodeId": "org.apache.sshd:sshd-sftp@2.8.0" + }, + { + "nodeId": "org.apache.sshd:sshd-osgi@2.8.0" + } + ] + }, + { + "nodeId": "net.i2p.crypto:eddsa@0.3.0", + "pkgId": "net.i2p.crypto:eddsa@0.3.0", + "deps": [] + }, + { + "nodeId": "org.apache.sshd:sshd-sftp@2.8.0", + "pkgId": "org.apache.sshd:sshd-sftp@2.8.0", + "deps": [ + { + "nodeId": "org.apache.sshd:sshd-core@2.8.0" + }, + { + "nodeId": "org.slf4j:jcl-over-slf4j@1.7.32" + }, + { + "nodeId": "org.slf4j:slf4j-api@1.7.13" + } + ] + }, + { + "nodeId": "org.apache.sshd:sshd-core@2.8.0", + "pkgId": "org.apache.sshd:sshd-core@2.8.0", + "deps": [ + { + "nodeId": "org.apache.sshd:sshd-common@2.8.0" + }, + { + "nodeId": "org.slf4j:jcl-over-slf4j@1.7.32" + }, + { + "nodeId": "org.slf4j:slf4j-api@1.7.13" + } + ] + }, + { + "nodeId": "org.apache.sshd:sshd-common@2.8.0", + "pkgId": "org.apache.sshd:sshd-common@2.8.0", + "deps": [ + { + "nodeId": "org.slf4j:jcl-over-slf4j@1.7.32" + }, + { + "nodeId": "org.slf4j:slf4j-api@1.7.13" + } + ] + }, + { + "nodeId": "org.slf4j:jcl-over-slf4j@1.7.32", + "pkgId": "org.slf4j:jcl-over-slf4j@1.7.32", + "deps": [ + { + "nodeId": "org.slf4j:slf4j-api@1.7.13" + } + ] + }, + { + "nodeId": "org.apache.sshd:sshd-osgi@2.8.0", + "pkgId": "org.apache.sshd:sshd-osgi@2.8.0", + "deps": [ + { + "nodeId": "org.slf4j:jcl-over-slf4j@1.7.32" + }, + { + "nodeId": "org.slf4j:slf4j-api@1.7.13" + } + ] + }, + { + "nodeId": "//emails:main@bazel", + "pkgId": "//emails:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//emails:core@bazel" + }, + { + "nodeId": "//feature_flag:flags@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//feature_flag/service:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.api-client:google-api-client@1.31.1" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "com.hubspot.jinjava:jinjava@2.5.6" + }, + { + "nodeId": "com.intellij:annotations@12.0" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.apache.commons:commons-lang3@3.12.0" + }, + { + "nodeId": "org.glassfish.hk2.external:jakarta.inject@2.6.1" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + } + ] + }, + { + "nodeId": "//feature_flag:flags@bazel", + "pkgId": "//feature_flag:flags@bazel", + "deps": [ + { + "nodeId": "//feature_flag:details@bazel" + }, + { + "nodeId": "//crypto:main@bazel" + }, + { + "nodeId": "//database:enums@bazel" + }, + { + "nodeId": "//database:flags@bazel" + }, + { + "nodeId": "//database/exceptions:main@bazel" + }, + { + "nodeId": "//globals:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:acmecorp_logger@bazel" + }, + { + "nodeId": "//newrelic_utils:donkey_logs_url_builder@bazel" + }, + { + "nodeId": "//slack:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "//warehouses/common:warehouse_type@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "org.apache.commons:commons-lang3@3.12.0" + }, + { + "nodeId": "org.glassfish.hk2.external:jakarta.inject@2.6.1" + } + ] + }, + { + "nodeId": "//feature_flag/service:main@bazel", + "pkgId": "//feature_flag/service:main@bazel", + "deps": [ + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//warehouses/common:warehouse_type@bazel" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "org.glassfish.hk2.external:jakarta.inject@2.6.1" + } + ] + }, + { + "nodeId": "com.hubspot.jinjava:jinjava@2.5.6", + "pkgId": "com.hubspot.jinjava:jinjava@2.5.6", + "deps": [ + { + "nodeId": "org.jsoup:jsoup@1.8.2" + }, + { + "nodeId": "ch.obermuhlner:big-math@2.0.0" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "org.slf4j:slf4j-api@1.7.13" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "com.google.code.findbugs:annotations@3.0.1" + }, + { + "nodeId": "org.apache.commons:commons-lang3@3.12.0" + }, + { + "nodeId": "org.javassist:javassist@3.21.0-GA" + }, + { + "nodeId": "com.google.re2j:re2j@1.5" + }, + { + "nodeId": "com.googlecode.java-ipv6:java-ipv6@0.17" + }, + { + "nodeId": "commons-net:commons-net@3.3" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + } + ] + }, + { + "nodeId": "org.jsoup:jsoup@1.8.2", + "pkgId": "org.jsoup:jsoup@1.8.2", + "deps": [] + }, + { + "nodeId": "ch.obermuhlner:big-math@2.0.0", + "pkgId": "ch.obermuhlner:big-math@2.0.0", + "deps": [] + }, + { + "nodeId": "com.google.code.findbugs:annotations@3.0.1", + "pkgId": "com.google.code.findbugs:annotations@3.0.1", + "deps": [] + }, + { + "nodeId": "com.google.re2j:re2j@1.5", + "pkgId": "com.google.re2j:re2j@1.5", + "deps": [] + }, + { + "nodeId": "com.googlecode.java-ipv6:java-ipv6@0.17", + "pkgId": "com.googlecode.java-ipv6:java-ipv6@0.17", + "deps": [] + }, + { + "nodeId": "commons-net:commons-net@3.3", + "pkgId": "commons-net:commons-net@3.3", + "deps": [] + }, + { + "nodeId": "//services:main@bazel", + "pkgId": "//services:main@bazel", + "deps": [ + { + "nodeId": "//aws:main@bazel" + }, + { + "nodeId": "//common:main@bazel" + }, + { + "nodeId": "//core_implementation:main@bazel" + }, + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//core_interfaces/cursor:main@bazel" + }, + { + "nodeId": "//crypto:main@bazel" + }, + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//database:ssh_verify@bazel" + }, + { + "nodeId": "//database:tls_verify@bazel" + }, + { + "nodeId": "//database/exceptions:main@bazel" + }, + { + "nodeId": "//emails:core@bazel" + }, + { + "nodeId": "//emails:main@bazel" + }, + { + "nodeId": "//feature_flag:flags@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//feature_flag/service:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//globals:main@bazel" + }, + { + "nodeId": "//google_cloud:main@bazel" + }, + { + "nodeId": "//heartbeat:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//partners:main@bazel" + }, + { + "nodeId": "//refine:main@bazel" + }, + { + "nodeId": "//schema_service:main@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//secrets/system:main@bazel" + }, + { + "nodeId": "//services/cmk_encryption:main@bazel" + }, + { + "nodeId": "//services/logging:main@bazel" + }, + { + "nodeId": "//ssh:main@bazel" + }, + { + "nodeId": "//util:main@bazel" + }, + { + "nodeId": "//utils/exceptions:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "//utils/validations:main@bazel" + }, + { + "nodeId": "//warehouses/big_query:main@bazel" + }, + { + "nodeId": "//warehouses/common:warehouse_type@bazel" + }, + { + "nodeId": "//words:main@bazel" + }, + { + "nodeId": "@com_fasterxml_jackson_dataformat_jackson_dataformat_csv//:main@bazel" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-s3@1.12.84" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.dataformat:jackson-dataformat-xml@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.api-client:google-api-client@1.31.1" + }, + { + "nodeId": "com.google.apis:google-api-services-cloudresourcemanager@v1-rev495-1.23.0" + }, + { + "nodeId": "com.google.apis:google-api-services-iam@v1-rev193-1.22.0" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "com.stripe:stripe-java@19.20.0" + }, + { + "nodeId": "commons-codec:commons-codec@1.10" + }, + { + "nodeId": "commons-io:commons-io@2.4" + }, + { + "nodeId": "commons-lang:commons-lang@2.6" + }, + { + "nodeId": "io.swagger.core.v3:swagger-annotations@2.1.11" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "net.agkn:hll@1.6.0" + }, + { + "nodeId": "org.apache.commons:commons-lang3@3.12.0" + }, + { + "nodeId": "org.glassfish.hk2.external:jakarta.inject@2.6.1" + }, + { + "nodeId": "org.glassfish.hk2:hk2-api@2.6.1" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + } + ] + }, + { + "nodeId": "//core_implementation:main@bazel", + "pkgId": "//core_implementation:main@bazel", + "deps": [ + { + "nodeId": "//core_implementation:operation_java_proto@bazel" + }, + { + "nodeId": "//cloudwatch_metrics:main@bazel" + }, + { + "nodeId": "//common:main@bazel" + }, + { + "nodeId": "//core_implementation/column_blocking:main@bazel" + }, + { + "nodeId": "//core_implementation/proto:main@bazel" + }, + { + "nodeId": "//core_implementation/proto:row_java_proto@bazel" + }, + { + "nodeId": "//core_implementation/transform:main@bazel" + }, + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//core_interfaces:warning@bazel" + }, + { + "nodeId": "//core_interfaces/cursor:main@bazel" + }, + { + "nodeId": "//crypto:main@bazel" + }, + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//globals:main@bazel" + }, + { + "nodeId": "//heartbeat:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//logging:main@bazel" + }, + { + "nodeId": "//micrometer:main@bazel" + }, + { + "nodeId": "//pipeline_queue:main@bazel" + }, + { + "nodeId": "//schema_migration:main@bazel" + }, + { + "nodeId": "//schema_migration:service@bazel" + }, + { + "nodeId": "//util:main@bazel" + }, + { + "nodeId": "//utils/exceptions:main@bazel" + }, + { + "nodeId": "//utils/network_monitor:main@bazel" + }, + { + "nodeId": "//utils/nullability:main@bazel" + }, + { + "nodeId": "//utils/os:main@bazel" + }, + { + "nodeId": "//utils/serializers:main@bazel" + }, + { + "nodeId": "//utils/sync_statistics:main@bazel" + }, + { + "nodeId": "//utils/threading:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "//warehouses/common:observability@bazel" + }, + { + "nodeId": "//warehouses/common:warehouse_type@bazel" + }, + { + "nodeId": "@com_fasterxml_jackson_dataformat_jackson_dataformat_csv//:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.github.alexandrnikitin:bloom-filter_2.11@0.11.0" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "com.google.protobuf:protobuf-java@3.18.2" + }, + { + "nodeId": "commons-io:commons-io@2.4" + }, + { + "nodeId": "io.micrometer:micrometer-core@1.5.3" + }, + { + "nodeId": "io.netty:netty-buffer@4.1.50.Final" + }, + { + "nodeId": "io.projectreactor:reactor-core@3.4.11" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "net.agkn:hll@1.6.0" + }, + { + "nodeId": "org.apache.commons:commons-lang3@3.12.0" + }, + { + "nodeId": "org.glassfish.hk2.external:jakarta.inject@2.6.1" + }, + { + "nodeId": "org.jetbrains.kotlin:kotlin-stdlib@1.3.50" + }, + { + "nodeId": "org.jooq:jool-java-8@0.9.14" + }, + { + "nodeId": "org.openjdk.jmh:jmh-core@1.19" + }, + { + "nodeId": "org.rocksdb:rocksdbjni@6.8.1" + }, + { + "nodeId": "org.xerial.snappy:snappy-java@1.1.8.4" + } + ] + }, + { + "nodeId": "//core_implementation:operation_java_proto@bazel", + "pkgId": "//core_implementation:operation_java_proto@bazel", + "deps": [ + { + "nodeId": "//core_implementation:operation_proto@bazel" + } + ] + }, + { + "nodeId": "//core_implementation:operation_proto@bazel", + "pkgId": "//core_implementation:operation_proto@bazel", + "deps": [ + { + "nodeId": "//core_implementation/proto:row_proto@bazel" + } + ] + }, + { + "nodeId": "//core_implementation/proto:row_proto@bazel", + "pkgId": "//core_implementation/proto:row_proto@bazel", + "deps": [] + }, + { + "nodeId": "//cloudwatch_metrics:main@bazel", + "pkgId": "//cloudwatch_metrics:main@bazel", + "deps": [ + { + "nodeId": "//google_cloud:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//util:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-cloudwatch@1.12.84" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-core@1.12.84" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-logs@1.12.84" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.api-client:google-api-client@1.31.1" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + } + ] + }, + { + "nodeId": "//google_cloud:main@bazel", + "pkgId": "//google_cloud:main@bazel", + "deps": [ + { + "nodeId": "//cloud_storage:main@bazel" + }, + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//crypto:main@bazel" + }, + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//globals:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//secred/util:main@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//secrets/services:main@bazel" + }, + { + "nodeId": "//secrets/system:main@bazel" + }, + { + "nodeId": "//util:main@bazel" + }, + { + "nodeId": "//utils/exceptions:main@bazel" + }, + { + "nodeId": "@com_google_cloud_google_cloud_bigquerydatatransfer//:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.api:api-common@1.9.0" + }, + { + "nodeId": "com.google.api-client:google-api-client@1.31.1" + }, + { + "nodeId": "com.google.api:gax@2.3.0" + }, + { + "nodeId": "com.google.api:gax-grpc@2.3.0" + }, + { + "nodeId": "com.google.api.grpc:proto-google-cloud-monitoring-v3@1.75.0" + }, + { + "nodeId": "com.google.api.grpc:proto-google-cloud-pubsub-v1@1.101.1" + }, + { + "nodeId": "com.google.api.grpc:proto-google-common-protos@1.15.0" + }, + { + "nodeId": "com.google.apis:google-api-services-bigquery@v2-rev459-1.25.0" + }, + { + "nodeId": "com.google.apis:google-api-services-cloudresourcemanager@v1-rev495-1.23.0" + }, + { + "nodeId": "com.google.apis:google-api-services-iam@v1-rev193-1.22.0" + }, + { + "nodeId": "com.google.apis:google-api-services-storage@v1-rev20200326-1.30.9" + }, + { + "nodeId": "com.google.auth:google-auth-library-credentials@0.9.1" + }, + { + "nodeId": "com.google.auth:google-auth-library-oauth2-http@0.22.0" + }, + { + "nodeId": "com.google.cloud:google-cloud-core@1.48.0" + }, + { + "nodeId": "com.google.cloud:google-cloud-datastore@1.70.0" + }, + { + "nodeId": "com.google.cloud:google-cloud-monitoring@1.93.0" + }, + { + "nodeId": "com.google.cloud:google-cloud-pubsub@1.119.1" + }, + { + "nodeId": "com.google.cloud:google-cloud-storage@1.108.0" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "com.google.http-client:google-http-client@1.39.2" + }, + { + "nodeId": "com.google.http-client:google-http-client-jackson2@1.35.0" + }, + { + "nodeId": "com.google.oauth-client:google-oauth-client@1.23.0" + }, + { + "nodeId": "com.google.protobuf:protobuf-java@3.18.2" + }, + { + "nodeId": "com.google.protobuf:protobuf-java-util@3.18.2" + }, + { + "nodeId": "io.grpc:grpc-api@1.32.2" + }, + { + "nodeId": "io.jsonwebtoken:jjwt@0.9.0" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "javax.annotation:javax.annotation-api@1.3.2" + }, + { + "nodeId": "org.apache.commons:commons-lang3@3.12.0" + }, + { + "nodeId": "org.glassfish.hk2.external:jakarta.inject@2.6.1" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + }, + { + "nodeId": "org.threeten:threetenbp@1.3.3" + } + ] + }, + { + "nodeId": "@com_google_cloud_google_cloud_bigquerydatatransfer//:main@bazel", + "pkgId": "@com_google_cloud_google_cloud_bigquerydatatransfer//:main@bazel", + "deps": [ + { + "nodeId": "com.google.api:api-common@1.9.0" + }, + { + "nodeId": "com.google.api:gax@2.3.0" + }, + { + "nodeId": "com.google.api:gax-grpc@2.3.0" + }, + { + "nodeId": "com.google.api.grpc:proto-google-common-protos@1.15.0" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "com.google.protobuf:protobuf-java@3.18.2" + }, + { + "nodeId": "io.grpc:grpc-api@1.32.2" + }, + { + "nodeId": "io.grpc:grpc-protobuf@1.32.2" + }, + { + "nodeId": "io.grpc:grpc-stub@1.32.2" + }, + { + "nodeId": "org.threeten:threetenbp@1.3.3" + }, + { + "nodeId": "javax.annotation:javax.annotation-api@1.3.2" + } + ] + }, + { + "nodeId": "com.google.api.grpc:proto-google-cloud-monitoring-v3@1.75.0", + "pkgId": "com.google.api.grpc:proto-google-cloud-monitoring-v3@1.75.0", + "deps": [ + { + "nodeId": "com.google.api:api-common@1.9.0" + }, + { + "nodeId": "com.google.api.grpc:proto-google-common-protos@1.15.0" + }, + { + "nodeId": "com.google.protobuf:protobuf-java@3.18.2" + }, + { + "nodeId": "javax.annotation:javax.annotation-api@1.3.2" + } + ] + }, + { + "nodeId": "com.google.api.grpc:proto-google-cloud-pubsub-v1@1.101.1", + "pkgId": "com.google.api.grpc:proto-google-cloud-pubsub-v1@1.101.1", + "deps": [ + { + "nodeId": "com.google.guava:listenablefuture@9999.0-empty-to-avoid-conflict-with-guava" + }, + { + "nodeId": "com.google.errorprone:error_prone_annotations@2.13.1" + }, + { + "nodeId": "com.google.j2objc:j2objc-annotations@1.3" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "com.google.api.grpc:proto-google-common-protos@1.15.0" + }, + { + "nodeId": "com.google.api:api-common@1.9.0" + }, + { + "nodeId": "com.google.auto.value:auto-value-annotations@1.9" + }, + { + "nodeId": "org.checkerframework:checker-qual@3.22.0" + }, + { + "nodeId": "javax.annotation:javax.annotation-api@1.3.2" + }, + { + "nodeId": "com.google.guava:failureaccess@1.0.1" + }, + { + "nodeId": "com.google.protobuf:protobuf-java@3.18.2" + } + ] + }, + { + "nodeId": "com.google.guava:listenablefuture@9999.0-empty-to-avoid-conflict-with-guava", + "pkgId": "com.google.guava:listenablefuture@9999.0-empty-to-avoid-conflict-with-guava", + "deps": [] + }, + { + "nodeId": "com.google.guava:failureaccess@1.0.1", + "pkgId": "com.google.guava:failureaccess@1.0.1", + "deps": [] + }, + { + "nodeId": "com.google.apis:google-api-services-bigquery@v2-rev459-1.25.0", + "pkgId": "com.google.apis:google-api-services-bigquery@v2-rev459-1.25.0", + "deps": [ + { + "nodeId": "com.google.api-client:google-api-client@1.31.1" + } + ] + }, + { + "nodeId": "com.google.apis:google-api-services-cloudresourcemanager@v1-rev495-1.23.0", + "pkgId": "com.google.apis:google-api-services-cloudresourcemanager@v1-rev495-1.23.0", + "deps": [ + { + "nodeId": "com.google.api-client:google-api-client@1.31.1" + } + ] + }, + { + "nodeId": "com.google.apis:google-api-services-iam@v1-rev193-1.22.0", + "pkgId": "com.google.apis:google-api-services-iam@v1-rev193-1.22.0", + "deps": [ + { + "nodeId": "com.google.api-client:google-api-client@1.31.1" + } + ] + }, + { + "nodeId": "com.google.apis:google-api-services-storage@v1-rev20200326-1.30.9", + "pkgId": "com.google.apis:google-api-services-storage@v1-rev20200326-1.30.9", + "deps": [ + { + "nodeId": "com.google.api-client:google-api-client@1.31.1" + } + ] + }, + { + "nodeId": "com.google.cloud:google-cloud-datastore@1.70.0", + "pkgId": "com.google.cloud:google-cloud-datastore@1.70.0", + "deps": [ + { + "nodeId": "com.google.cloud.datastore:datastore-v1-proto-client@1.6.0" + }, + { + "nodeId": "com.google.cloud:google-cloud-core-http@1.48.0" + }, + { + "nodeId": "com.google.api.grpc:proto-google-cloud-datastore-v1@0.54.0" + }, + { + "nodeId": "com.google.cloud:google-cloud-core@1.48.0" + }, + { + "nodeId": "javax.annotation:javax.annotation-api@1.3.2" + }, + { + "nodeId": "io.grpc:grpc-core@1.32.2" + } + ] + }, + { + "nodeId": "com.google.cloud.datastore:datastore-v1-proto-client@1.6.0", + "pkgId": "com.google.cloud.datastore:datastore-v1-proto-client@1.6.0", + "deps": [ + { + "nodeId": "com.google.http-client:google-http-client@1.39.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "com.google.api-client:google-api-client@1.31.1" + }, + { + "nodeId": "com.google.api.grpc:proto-google-cloud-datastore-v1@0.54.0" + }, + { + "nodeId": "com.google.http-client:google-http-client-protobuf@1.29.1" + }, + { + "nodeId": "com.google.http-client:google-http-client-jackson@1.23.0" + }, + { + "nodeId": "com.google.oauth-client:google-oauth-client@1.23.0" + } + ] + }, + { + "nodeId": "com.google.api.grpc:proto-google-cloud-datastore-v1@0.54.0", + "pkgId": "com.google.api.grpc:proto-google-cloud-datastore-v1@0.54.0", + "deps": [ + { + "nodeId": "com.google.api:api-common@1.9.0" + }, + { + "nodeId": "com.google.api.grpc:proto-google-common-protos@1.15.0" + }, + { + "nodeId": "com.google.protobuf:protobuf-java@3.18.2" + }, + { + "nodeId": "javax.annotation:javax.annotation-api@1.3.2" + } + ] + }, + { + "nodeId": "com.google.http-client:google-http-client-protobuf@1.29.1", + "pkgId": "com.google.http-client:google-http-client-protobuf@1.29.1", + "deps": [ + { + "nodeId": "com.google.http-client:google-http-client@1.39.2" + }, + { + "nodeId": "com.google.protobuf:protobuf-java@3.18.2" + } + ] + }, + { + "nodeId": "com.google.http-client:google-http-client-jackson@1.23.0", + "pkgId": "com.google.http-client:google-http-client-jackson@1.23.0", + "deps": [ + { + "nodeId": "com.google.http-client:google-http-client@1.39.2" + }, + { + "nodeId": "org.codehaus.jackson:jackson-core-asl@1.9.13" + } + ] + }, + { + "nodeId": "org.codehaus.jackson:jackson-core-asl@1.9.13", + "pkgId": "org.codehaus.jackson:jackson-core-asl@1.9.13", + "deps": [] + }, + { + "nodeId": "com.google.cloud:google-cloud-core-http@1.48.0", + "pkgId": "com.google.cloud:google-cloud-core-http@1.48.0", + "deps": [ + { + "nodeId": "com.google.http-client:google-http-client@1.39.2" + }, + { + "nodeId": "com.google.auth:google-auth-library-oauth2-http@0.22.0" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "com.google.api-client:google-api-client@1.31.1" + }, + { + "nodeId": "com.google.http-client:google-http-client-appengine@1.23.0" + }, + { + "nodeId": "com.google.api:gax-httpjson@0.42.0" + }, + { + "nodeId": "com.google.cloud:google-cloud-core@1.48.0" + }, + { + "nodeId": "io.opencensus:opencensus-contrib-http-util@0.11.1" + }, + { + "nodeId": "com.google.http-client:google-http-client-jackson2@1.35.0" + }, + { + "nodeId": "io.opencensus:opencensus-api@0.12.3" + }, + { + "nodeId": "com.google.auth:google-auth-library-credentials@0.9.1" + }, + { + "nodeId": "com.google.oauth-client:google-oauth-client@1.23.0" + } + ] + }, + { + "nodeId": "com.google.http-client:google-http-client-appengine@1.23.0", + "pkgId": "com.google.http-client:google-http-client-appengine@1.23.0", + "deps": [ + { + "nodeId": "com.google.http-client:google-http-client@1.39.2" + } + ] + }, + { + "nodeId": "com.google.api:gax-httpjson@0.42.0", + "pkgId": "com.google.api:gax-httpjson@0.42.0", + "deps": [ + { + "nodeId": "com.google.http-client:google-http-client@1.39.2" + }, + { + "nodeId": "com.google.api:gax@2.3.0" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.auth:google-auth-library-oauth2-http@0.22.0" + }, + { + "nodeId": "com.google.code.gson:gson@2.9.0" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "com.google.api:api-common@1.9.0" + }, + { + "nodeId": "org.threeten:threetenbp@1.3.3" + }, + { + "nodeId": "com.google.auth:google-auth-library-credentials@0.9.1" + } + ] + }, + { + "nodeId": "com.google.cloud:google-cloud-monitoring@1.93.0", + "pkgId": "com.google.cloud:google-cloud-monitoring@1.93.0", + "deps": [ + { + "nodeId": "com.google.api.grpc:proto-google-cloud-monitoring-v3@1.75.0" + }, + { + "nodeId": "com.google.cloud:google-cloud-core-grpc@1.19.0" + } + ] + }, + { + "nodeId": "com.google.cloud:google-cloud-pubsub@1.119.1", + "pkgId": "com.google.cloud:google-cloud-pubsub@1.119.1", + "deps": [ + { + "nodeId": "com.google.guava:listenablefuture@9999.0-empty-to-avoid-conflict-with-guava" + }, + { + "nodeId": "org.conscrypt:conscrypt-openjdk-uber@2.5.1" + }, + { + "nodeId": "io.opencensus:opencensus-proto@0.2.0" + }, + { + "nodeId": "com.google.errorprone:error_prone_annotations@2.13.1" + }, + { + "nodeId": "com.google.http-client:google-http-client@1.39.2" + }, + { + "nodeId": "com.google.api:gax@2.3.0" + }, + { + "nodeId": "com.google.j2objc:j2objc-annotations@1.3" + }, + { + "nodeId": "commons-logging:commons-logging@1.2" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.auth:google-auth-library-oauth2-http@0.22.0" + }, + { + "nodeId": "io.grpc:grpc-stub@1.32.2" + }, + { + "nodeId": "com.google.api.grpc:proto-google-cloud-pubsub-v1@1.101.1" + }, + { + "nodeId": "io.grpc:grpc-auth@1.32.2" + }, + { + "nodeId": "com.google.android:annotations@4.1.1.4" + }, + { + "nodeId": "com.google.code.gson:gson@2.9.0" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "io.grpc:grpc-xds@1.46.0" + }, + { + "nodeId": "io.grpc:grpc-services@1.46.0" + }, + { + "nodeId": "com.google.api.grpc:proto-google-common-protos@1.15.0" + }, + { + "nodeId": "io.grpc:grpc-alts@1.46.0" + }, + { + "nodeId": "org.apache.httpcomponents:httpcore@4.4.13" + }, + { + "nodeId": "io.grpc:grpc-api@1.32.2" + }, + { + "nodeId": "io.grpc:grpc-netty-shaded@1.32.2" + }, + { + "nodeId": "com.google.protobuf:protobuf-java-util@3.18.2" + }, + { + "nodeId": "com.google.api:api-common@1.9.0" + }, + { + "nodeId": "io.grpc:grpc-googleapis@1.46.0" + }, + { + "nodeId": "com.google.api.grpc:proto-google-iam-v1@0.13.0" + }, + { + "nodeId": "io.grpc:grpc-grpclb@1.46.0" + }, + { + "nodeId": "com.google.auto.value:auto-value-annotations@1.9" + }, + { + "nodeId": "org.threeten:threetenbp@1.3.3" + }, + { + "nodeId": "com.google.api:gax-grpc@2.3.0" + }, + { + "nodeId": "org.bouncycastle:bcpkix-jdk15on@1.70" + }, + { + "nodeId": "org.checkerframework:checker-qual@3.22.0" + }, + { + "nodeId": "javax.annotation:javax.annotation-api@1.3.2" + }, + { + "nodeId": "org.codehaus.mojo:animal-sniffer-annotations@1.21" + }, + { + "nodeId": "com.google.http-client:google-http-client-gson@1.41.8" + }, + { + "nodeId": "com.google.guava:failureaccess@1.0.1" + }, + { + "nodeId": "commons-codec:commons-codec@1.10" + }, + { + "nodeId": "com.google.re2j:re2j@1.5" + }, + { + "nodeId": "org.apache.httpcomponents:httpclient@4.5.13" + }, + { + "nodeId": "io.grpc:grpc-protobuf-lite@1.32.2" + }, + { + "nodeId": "io.opencensus:opencensus-contrib-http-util@0.11.1" + }, + { + "nodeId": "io.grpc:grpc-context@1.32.2" + }, + { + "nodeId": "org.bouncycastle:bcprov-jdk15on@1.70" + }, + { + "nodeId": "io.grpc:grpc-core@1.32.2" + }, + { + "nodeId": "io.opencensus:opencensus-api@0.12.3" + }, + { + "nodeId": "io.perfmark:perfmark-api@0.25.0" + }, + { + "nodeId": "com.google.auth:google-auth-library-credentials@0.9.1" + }, + { + "nodeId": "io.grpc:grpc-protobuf@1.32.2" + }, + { + "nodeId": "com.google.protobuf:protobuf-java@3.18.2" + } + ] + }, + { + "nodeId": "io.opencensus:opencensus-proto@0.2.0", + "pkgId": "io.opencensus:opencensus-proto@0.2.0", + "deps": [] + }, + { + "nodeId": "io.grpc:grpc-xds@1.46.0", + "pkgId": "io.grpc:grpc-xds@1.46.0", + "deps": [] + }, + { + "nodeId": "io.grpc:grpc-services@1.46.0", + "pkgId": "io.grpc:grpc-services@1.46.0", + "deps": [] + }, + { + "nodeId": "io.grpc:grpc-googleapis@1.46.0", + "pkgId": "io.grpc:grpc-googleapis@1.46.0", + "deps": [] + }, + { + "nodeId": "com.google.http-client:google-http-client-gson@1.41.8", + "pkgId": "com.google.http-client:google-http-client-gson@1.41.8", + "deps": [] + }, + { + "nodeId": "com.google.cloud:google-cloud-storage@1.108.0", + "pkgId": "com.google.cloud:google-cloud-storage@1.108.0", + "deps": [ + { + "nodeId": "com.google.http-client:google-http-client@1.39.2" + }, + { + "nodeId": "com.google.api:gax@2.3.0" + }, + { + "nodeId": "com.google.auth:google-auth-library-oauth2-http@0.22.0" + }, + { + "nodeId": "com.google.cloud:google-cloud-core-http@1.48.0" + }, + { + "nodeId": "com.google.code.gson:gson@2.9.0" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "com.google.api-client:google-api-client@1.31.1" + }, + { + "nodeId": "com.google.protobuf:protobuf-java-util@3.18.2" + }, + { + "nodeId": "com.google.cloud:google-cloud-core@1.48.0" + }, + { + "nodeId": "com.google.api:api-common@1.9.0" + }, + { + "nodeId": "com.google.api.grpc:proto-google-iam-v1@0.13.0" + }, + { + "nodeId": "org.threeten:threetenbp@1.3.3" + }, + { + "nodeId": "com.google.apis:google-api-services-storage@v1-rev20200326-1.30.9" + }, + { + "nodeId": "com.google.http-client:google-http-client-jackson2@1.35.0" + }, + { + "nodeId": "io.opencensus:opencensus-api@0.12.3" + }, + { + "nodeId": "com.google.auth:google-auth-library-credentials@0.9.1" + }, + { + "nodeId": "com.google.protobuf:protobuf-java@3.18.2" + } + ] + }, + { + "nodeId": "io.jsonwebtoken:jjwt@0.9.0", + "pkgId": "io.jsonwebtoken:jjwt@0.9.0", + "deps": [ + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + } + ] + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-cloudwatch@1.12.84", + "pkgId": "com.amazonaws:aws-java-sdk-cloudwatch@1.12.84", + "deps": [ + { + "nodeId": "com.amazonaws:aws-java-sdk-core@1.12.84" + }, + { + "nodeId": "com.amazonaws:jmespath-java@1.11.91" + } + ] + }, + { + "nodeId": "//core_implementation/column_blocking:main@bazel", + "pkgId": "//core_implementation/column_blocking:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + } + ] + }, + { + "nodeId": "//core_implementation/proto:main@bazel", + "pkgId": "//core_implementation/proto:main@bazel", + "deps": [ + { + "nodeId": "//core_implementation/proto:row_java_proto@bazel" + }, + { + "nodeId": "//core_implementation/column_blocking:main@bazel" + }, + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//utils/jdk:main@bazel" + }, + { + "nodeId": "//utils/serializers:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "com.google.protobuf:protobuf-java@3.18.2" + }, + { + "nodeId": "io.netty:netty-buffer@4.1.50.Final" + } + ] + }, + { + "nodeId": "//core_implementation/proto:row_java_proto@bazel", + "pkgId": "//core_implementation/proto:row_java_proto@bazel", + "deps": [ + { + "nodeId": "//core_implementation/proto:row_proto@bazel" + } + ] + }, + { + "nodeId": "//utils/jdk:main@bazel", + "pkgId": "//utils/jdk:main@bazel", + "deps": [ + { + "nodeId": "//utils/nullability:main@bazel" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "org.apache.commons:commons-lang3@3.12.0" + } + ] + }, + { + "nodeId": "//utils/serializers:main@bazel", + "pkgId": "//utils/serializers:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//crypto:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.dataformat:jackson-dataformat-smile@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.intellij:annotations@12.0" + }, + { + "nodeId": "io.netty:netty-buffer@4.1.50.Final" + }, + { + "nodeId": "org.apache.commons:commons-pool2@2.8.0" + } + ] + }, + { + "nodeId": "org.apache.commons:commons-pool2@2.8.0", + "pkgId": "org.apache.commons:commons-pool2@2.8.0", + "deps": [] + }, + { + "nodeId": "//core_implementation/transform:main@bazel", + "pkgId": "//core_implementation/transform:main@bazel", + "deps": [ + { + "nodeId": "//core_implementation/proto:main@bazel" + }, + { + "nodeId": "//core_implementation/proto:row_java_proto@bazel" + }, + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//utils/serialization:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "com.google.protobuf:protobuf-java@3.18.2" + } + ] + }, + { + "nodeId": "//utils/serialization:main@bazel", + "pkgId": "//utils/serialization:main@bazel", + "deps": [ + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + } + ] + }, + { + "nodeId": "//core_interfaces:warning@bazel", + "pkgId": "//core_interfaces:warning@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//database:main@bazel" + } + ] + }, + { + "nodeId": "//logging:main@bazel", + "pkgId": "//logging:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//globals:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//log_appender/cloudwatch:main@bazel" + }, + { + "nodeId": "//log_appender/gcs_appender:main@bazel" + }, + { + "nodeId": "//log_appender/stackdriver:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//micrometer:main@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//secrets/system:main@bazel" + }, + { + "nodeId": "//util:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-core@1.12.84" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.google.auth:google-auth-library-oauth2-http@0.22.0" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + } + ] + }, + { + "nodeId": "//log_appender/cloudwatch:main@bazel", + "pkgId": "//log_appender/cloudwatch:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-core@1.12.84" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-logs@1.12.84" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-sts@1.12.84" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + } + ] + }, + { + "nodeId": "//log_appender/gcs_appender:main@bazel", + "pkgId": "//log_appender/gcs_appender:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//utils/hook:main@bazel" + }, + { + "nodeId": "com.google.auth:google-auth-library-oauth2-http@0.22.0" + }, + { + "nodeId": "com.google.cloud:google-cloud-core@1.48.0" + }, + { + "nodeId": "com.google.cloud:google-cloud-storage@1.108.0" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + } + ] + }, + { + "nodeId": "//utils/hook:main@bazel", + "pkgId": "//utils/hook:main@bazel", + "deps": [ + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + } + ] + }, + { + "nodeId": "//log_appender/stackdriver:main@bazel", + "pkgId": "//log_appender/stackdriver:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//globals:main@bazel" + }, + { + "nodeId": "//google_cloud:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.google.auth:google-auth-library-credentials@0.9.1" + }, + { + "nodeId": "com.google.auth:google-auth-library-oauth2-http@0.22.0" + }, + { + "nodeId": "com.google.cloud:google-cloud-core@1.48.0" + }, + { + "nodeId": "com.google.cloud:google-cloud-logging@1.19.0" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + } + ] + }, + { + "nodeId": "com.google.cloud:google-cloud-logging@1.19.0", + "pkgId": "com.google.cloud:google-cloud-logging@1.19.0", + "deps": [ + { + "nodeId": "io.grpc:grpc-stub@1.32.2" + }, + { + "nodeId": "io.grpc:grpc-auth@1.32.2" + }, + { + "nodeId": "com.google.cloud:google-cloud-core-grpc@1.19.0" + }, + { + "nodeId": "io.grpc:grpc-netty-shaded@1.32.2" + }, + { + "nodeId": "com.google.cloud:google-cloud-core@1.48.0" + }, + { + "nodeId": "com.google.api:gax-grpc@2.3.0" + }, + { + "nodeId": "com.google.api.grpc:proto-google-cloud-logging-v2@0.2.1" + } + ] + }, + { + "nodeId": "com.google.api.grpc:proto-google-cloud-logging-v2@0.2.1", + "pkgId": "com.google.api.grpc:proto-google-cloud-logging-v2@0.2.1", + "deps": [ + { + "nodeId": "com.google.api:api-common@1.9.0" + }, + { + "nodeId": "com.google.api.grpc:proto-google-common-protos@1.15.0" + }, + { + "nodeId": "com.google.protobuf:protobuf-java@3.18.2" + } + ] + }, + { + "nodeId": "//micrometer:main@bazel", + "pkgId": "//micrometer:main@bazel", + "deps": [ + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//util:main@bazel" + }, + { + "nodeId": "com.google.api:gax@2.3.0" + }, + { + "nodeId": "com.google.auth:google-auth-library-oauth2-http@0.22.0" + }, + { + "nodeId": "com.google.cloud:google-cloud-monitoring@1.93.0" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "com.newrelic.telemetry:micrometer-registry-new-relic@0.6.0" + }, + { + "nodeId": "com.newrelic.telemetry:telemetry@0.7.0" + }, + { + "nodeId": "com.newrelic.telemetry:telemetry-core@0.7.0" + }, + { + "nodeId": "io.grpc:grpc-netty-shaded@1.32.2" + }, + { + "nodeId": "io.micrometer:micrometer-core@1.5.3" + }, + { + "nodeId": "io.micrometer:micrometer-registry-stackdriver@1.5.3" + }, + { + "nodeId": "org.hdrhistogram:HdrHistogram@2.1.12" + } + ] + }, + { + "nodeId": "com.newrelic.telemetry:micrometer-registry-new-relic@0.6.0", + "pkgId": "com.newrelic.telemetry:micrometer-registry-new-relic@0.6.0", + "deps": [ + { + "nodeId": "com.newrelic.telemetry:telemetry@0.7.0" + }, + { + "nodeId": "io.micrometer:micrometer-core@1.5.3" + }, + { + "nodeId": "org.slf4j:slf4j-api@1.7.13" + } + ] + }, + { + "nodeId": "com.newrelic.telemetry:telemetry@0.7.0", + "pkgId": "com.newrelic.telemetry:telemetry@0.7.0", + "deps": [ + { + "nodeId": "com.newrelic.telemetry:telemetry-core@0.7.0" + } + ] + }, + { + "nodeId": "com.newrelic.telemetry:telemetry-core@0.7.0", + "pkgId": "com.newrelic.telemetry:telemetry-core@0.7.0", + "deps": [ + { + "nodeId": "org.slf4j:slf4j-api@1.7.13" + } + ] + }, + { + "nodeId": "io.micrometer:micrometer-registry-stackdriver@1.5.3", + "pkgId": "io.micrometer:micrometer-registry-stackdriver@1.5.3", + "deps": [ + { + "nodeId": "com.google.cloud:google-cloud-monitoring@1.93.0" + }, + { + "nodeId": "io.micrometer:micrometer-core@1.5.3" + }, + { + "nodeId": "org.slf4j:slf4j-api@1.7.13" + } + ] + }, + { + "nodeId": "//pipeline_queue:main@bazel", + "pkgId": "//pipeline_queue:main@bazel", + "deps": [ + { + "nodeId": "//crypto:main@bazel" + }, + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//database/exceptions:main@bazel" + }, + { + "nodeId": "//database/resilience:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//micrometer:main@bazel" + }, + { + "nodeId": "//secred/common:main@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//shaded_dependencies/azure:azure_identity_shaded@bazel" + }, + { + "nodeId": "//shaded_dependencies/azure:azure_storage_blob_shaded@bazel" + }, + { + "nodeId": "//cloud_storage:main@bazel" + }, + { + "nodeId": "//utils/exceptions:main@bazel" + }, + { + "nodeId": "//utils/network_monitor:main@bazel" + }, + { + "nodeId": "//utils/nullability:main@bazel" + }, + { + "nodeId": "//utils/os:main@bazel" + }, + { + "nodeId": "//utils/serialization:main@bazel" + }, + { + "nodeId": "//utils/threading:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-core@1.12.84" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-s3@1.12.84" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "com.google.auth:google-auth-library-oauth2-http@0.22.0" + }, + { + "nodeId": "com.google.cloud:google-cloud-core@1.48.0" + }, + { + "nodeId": "com.google.cloud:google-cloud-storage@1.108.0" + }, + { + "nodeId": "commons-codec:commons-codec@1.10" + }, + { + "nodeId": "io.micrometer:micrometer-core@1.5.3" + }, + { + "nodeId": "org.apache.httpcomponents:httpcore@4.4.13" + } + ] + }, + { + "nodeId": "//shaded_dependencies/azure:azure_identity_shaded@bazel", + "pkgId": "//shaded_dependencies/azure:azure_identity_shaded@bazel", + "deps": [] + }, + { + "nodeId": "//shaded_dependencies/azure:azure_storage_blob_shaded@bazel", + "pkgId": "//shaded_dependencies/azure:azure_storage_blob_shaded@bazel", + "deps": [] + }, + { + "nodeId": "//utils/network_monitor:main@bazel", + "pkgId": "//utils/network_monitor:main@bazel", + "deps": [ + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//utils/os:main@bazel" + } + ] + }, + { + "nodeId": "//utils/os:main@bazel", + "pkgId": "//utils/os:main@bazel", + "deps": [ + { + "nodeId": "//utils/nullability:main@bazel" + } + ] + }, + { + "nodeId": "//schema_migration:main@bazel", + "pkgId": "//schema_migration:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + } + ] + }, + { + "nodeId": "//schema_migration:service@bazel", + "pkgId": "//schema_migration:service@bazel", + "deps": [ + { + "nodeId": "//schema_migration:main@bazel" + }, + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//database:schema_migration_model@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + } + ] + }, + { + "nodeId": "//utils/sync_statistics:main@bazel", + "pkgId": "//utils/sync_statistics:main@bazel", + "deps": [ + { + "nodeId": "//benchmarking:stats@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//micrometer:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.apache.commons:commons-lang3@3.12.0" + } + ] + }, + { + "nodeId": "//benchmarking:stats@bazel", + "pkgId": "//benchmarking:stats@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//globals:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "@com_fasterxml_jackson_dataformat_jackson_dataformat_csv//:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.dataformat:jackson-dataformat-xml@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "io.apptik.json:json-core@1.0.4" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + } + ] + }, + { + "nodeId": "com.fasterxml.jackson.dataformat:jackson-dataformat-xml@2.9.8", + "pkgId": "com.fasterxml.jackson.dataformat:jackson-dataformat-xml@2.9.8", + "deps": [ + { + "nodeId": "org.codehaus.woodstox:stax2-api@3.1.4" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.woodstox:woodstox-core@5.0.3" + }, + { + "nodeId": "com.fasterxml.jackson.module:jackson-module-jaxb-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + } + ] + }, + { + "nodeId": "org.codehaus.woodstox:stax2-api@3.1.4", + "pkgId": "org.codehaus.woodstox:stax2-api@3.1.4", + "deps": [] + }, + { + "nodeId": "com.fasterxml.woodstox:woodstox-core@5.0.3", + "pkgId": "com.fasterxml.woodstox:woodstox-core@5.0.3", + "deps": [ + { + "nodeId": "org.codehaus.woodstox:stax2-api@3.1.4" + } + ] + }, + { + "nodeId": "io.apptik.json:json-core@1.0.4", + "pkgId": "io.apptik.json:json-core@1.0.4", + "deps": [] + }, + { + "nodeId": "//warehouses/common:observability@bazel", + "pkgId": "//warehouses/common:observability@bazel", + "deps": [ + { + "nodeId": "//warehouses/common:events@bazel" + }, + { + "nodeId": "//warehouses/common:feature_flags@bazel" + }, + { + "nodeId": "//warehouses/common:warehouse_type@bazel" + }, + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//database:schema_migration_model@bazel" + }, + { + "nodeId": "//events:event_hub@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//globals:main@bazel" + }, + { + "nodeId": "//heartbeat:lite@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//schema_migration:main@bazel" + }, + { + "nodeId": "//util:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "io.micrometer:micrometer-core@1.5.3" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + } + ] + }, + { + "nodeId": "//warehouses/common:events@bazel", + "pkgId": "//warehouses/common:events@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//events:event_hub@bazel" + } + ] + }, + { + "nodeId": "//warehouses/common:feature_flags@bazel", + "pkgId": "//warehouses/common:feature_flags@bazel", + "deps": [ + { + "nodeId": "//feature_flag:main@bazel" + } + ] + }, + { + "nodeId": "//heartbeat:lite@bazel", + "pkgId": "//heartbeat:lite@bazel", + "deps": [ + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//util:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + } + ] + }, + { + "nodeId": "com.github.alexandrnikitin:bloom-filter_2.11@0.11.0", + "pkgId": "com.github.alexandrnikitin:bloom-filter_2.11@0.11.0", + "deps": [ + { + "nodeId": "org.scala-lang:scala-library@2.11.1" + } + ] + }, + { + "nodeId": "org.scala-lang:scala-library@2.11.1", + "pkgId": "org.scala-lang:scala-library@2.11.1", + "deps": [] + }, + { + "nodeId": "io.projectreactor:reactor-core@3.4.11", + "pkgId": "io.projectreactor:reactor-core@3.4.11", + "deps": [ + { + "nodeId": "org.reactivestreams:reactive-streams@1.0.3" + } + ] + }, + { + "nodeId": "org.reactivestreams:reactive-streams@1.0.3", + "pkgId": "org.reactivestreams:reactive-streams@1.0.3", + "deps": [] + }, + { + "nodeId": "net.agkn:hll@1.6.0", + "pkgId": "net.agkn:hll@1.6.0", + "deps": [ + { + "nodeId": "it.unimi.dsi:fastutil@8.1.0" + } + ] + }, + { + "nodeId": "it.unimi.dsi:fastutil@8.1.0", + "pkgId": "it.unimi.dsi:fastutil@8.1.0", + "deps": [] + }, + { + "nodeId": "org.jetbrains.kotlin:kotlin-stdlib@1.3.50", + "pkgId": "org.jetbrains.kotlin:kotlin-stdlib@1.3.50", + "deps": [ + { + "nodeId": "org.jetbrains:annotations@17.0.0" + }, + { + "nodeId": "org.jetbrains.kotlin:kotlin-stdlib-common@1.3.71" + } + ] + }, + { + "nodeId": "org.jetbrains:annotations@17.0.0", + "pkgId": "org.jetbrains:annotations@17.0.0", + "deps": [] + }, + { + "nodeId": "org.jetbrains.kotlin:kotlin-stdlib-common@1.3.71", + "pkgId": "org.jetbrains.kotlin:kotlin-stdlib-common@1.3.71", + "deps": [] + }, + { + "nodeId": "org.openjdk.jmh:jmh-core@1.19", + "pkgId": "org.openjdk.jmh:jmh-core@1.19", + "deps": [ + { + "nodeId": "net.sf.jopt-simple:jopt-simple@5.0.4" + }, + { + "nodeId": "org.apache.commons:commons-math3@3.6.1" + } + ] + }, + { + "nodeId": "net.sf.jopt-simple:jopt-simple@5.0.4", + "pkgId": "net.sf.jopt-simple:jopt-simple@5.0.4", + "deps": [] + }, + { + "nodeId": "org.apache.commons:commons-math3@3.6.1", + "pkgId": "org.apache.commons:commons-math3@3.6.1", + "deps": [] + }, + { + "nodeId": "org.rocksdb:rocksdbjni@6.8.1", + "pkgId": "org.rocksdb:rocksdbjni@6.8.1", + "deps": [] + }, + { + "nodeId": "org.xerial.snappy:snappy-java@1.1.8.4", + "pkgId": "org.xerial.snappy:snappy-java@1.1.8.4", + "deps": [] + }, + { + "nodeId": "//refine:main@bazel", + "pkgId": "//refine:main@bazel", + "deps": [ + { + "nodeId": "//common:main@bazel" + }, + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + } + ] + }, + { + "nodeId": "//schema_service:main@bazel", + "pkgId": "//schema_service:main@bazel", + "deps": [ + { + "nodeId": "//core_implementation:main@bazel" + }, + { + "nodeId": "//core_implementation/column_blocking:main@bazel" + }, + { + "nodeId": "//core_implementation/proto:main@bazel" + }, + { + "nodeId": "//core_implementation/proto:row_java_proto@bazel" + }, + { + "nodeId": "//core_implementation/transform:main@bazel" + }, + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//emails:core@bazel" + }, + { + "nodeId": "//emails:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//utils/nullability:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "io.projectreactor:reactor-core@3.4.11" + }, + { + "nodeId": "org.apache.commons:commons-lang3@3.12.0" + } + ] + }, + { + "nodeId": "//services/cmk_encryption:main@bazel", + "pkgId": "//services/cmk_encryption:main@bazel", + "deps": [ + { + "nodeId": "//crypto:main@bazel" + }, + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//secred/client:main@bazel" + }, + { + "nodeId": "//secred/common:main@bazel" + }, + { + "nodeId": "//secred/util:main@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//secrets/services:main@bazel" + }, + { + "nodeId": "//secrets/system:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "javax.ws.rs:javax.ws.rs-api@2.1.1" + } + ] + }, + { + "nodeId": "javax.ws.rs:javax.ws.rs-api@2.1.1", + "pkgId": "javax.ws.rs:javax.ws.rs-api@2.1.1", + "deps": [] + }, + { + "nodeId": "//services/logging:main@bazel", + "pkgId": "//services/logging:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//database:enums@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "org.glassfish.hk2.external:jakarta.inject@2.6.1" + } + ] + }, + { + "nodeId": "//ssh:main@bazel", + "pkgId": "//ssh:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//crypto:main@bazel" + }, + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//database:ssh_verify@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//globals:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//secred/client:main@bazel" + }, + { + "nodeId": "//secred/common:main@bazel" + }, + { + "nodeId": "//secred/util:main@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//secrets/db:main@bazel" + }, + { + "nodeId": "//secrets/services:main@bazel" + }, + { + "nodeId": "//secrets/system:main@bazel" + }, + { + "nodeId": "//utils/hook:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "@jsch_patched//:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.apache.commons:commons-lang3@3.12.0" + } + ] + }, + { + "nodeId": "//secrets/db:main@bazel", + "pkgId": "//secrets/db:main@bazel", + "deps": [ + { + "nodeId": "//crypto:main@bazel" + }, + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//kms:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//utils/exceptions:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "org.apache.commons:commons-lang3@3.12.0" + }, + { + "nodeId": "org.glassfish.hk2.external:jakarta.inject@2.6.1" + } + ] + }, + { + "nodeId": "//kms:main@bazel", + "pkgId": "//kms:main@bazel", + "deps": [ + { + "nodeId": "//crypto:main@bazel" + }, + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//secred/common:main@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-core@1.12.84" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-kms@1.12.84" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-sts@1.12.84" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "org.glassfish.hk2.external:jakarta.inject@2.6.1" + } + ] + }, + { + "nodeId": "@jsch_patched//:main@bazel", + "pkgId": "@jsch_patched//:main@bazel", + "deps": [ + { + "nodeId": "com.jcraft:jzlib@1.1.3" + } + ] + }, + { + "nodeId": "com.jcraft:jzlib@1.1.3", + "pkgId": "com.jcraft:jzlib@1.1.3", + "deps": [] + }, + { + "nodeId": "//warehouses/big_query:main@bazel", + "pkgId": "//warehouses/big_query:main@bazel", + "deps": [ + { + "nodeId": "//aws:main@bazel" + }, + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//crypto:main@bazel" + }, + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//dynamo:main@bazel" + }, + { + "nodeId": "//emails:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//globals:main@bazel" + }, + { + "nodeId": "//google_cloud:main@bazel" + }, + { + "nodeId": "//heartbeat:lite@bazel" + }, + { + "nodeId": "//json:default_object_mapper@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//markdown:main@bazel" + }, + { + "nodeId": "//schema_migration:main@bazel" + }, + { + "nodeId": "//slack:main@bazel" + }, + { + "nodeId": "//util:main@bazel" + }, + { + "nodeId": "//utils/hook:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "//warehouses/common:events@bazel" + }, + { + "nodeId": "//warehouses/common:feature_flags@bazel" + }, + { + "nodeId": "//warehouses/common:main@bazel" + }, + { + "nodeId": "//warehouses/common:observability@bazel" + }, + { + "nodeId": "//warehouses/common:staging_gcs@bazel" + }, + { + "nodeId": "//warehouses/common:warehouse_type@bazel" + }, + { + "nodeId": "//warehouses/common-local:writer_avro@bazel" + }, + { + "nodeId": "//warehouses/common-local:writer_avro_base@bazel" + }, + { + "nodeId": "//warehouses/common-local:writer_base@bazel" + }, + { + "nodeId": "//warehouses/common-local:writer_json@bazel" + }, + { + "nodeId": "@com_google_cloud_google_cloud_bigquerydatatransfer//:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.google.api-client:google-api-client@1.31.1" + }, + { + "nodeId": "com.google.api.grpc:proto-google-cloud-billingbudgets-v1@1.1.0" + }, + { + "nodeId": "com.google.api.grpc:proto-google-common-protos@1.15.0" + }, + { + "nodeId": "com.google.apis:google-api-services-bigquery@v2-rev459-1.25.0" + }, + { + "nodeId": "com.google.apis:google-api-services-cloudbilling@v1-rev9-1.22.0" + }, + { + "nodeId": "com.google.apis:google-api-services-cloudresourcemanager@v1-rev495-1.23.0" + }, + { + "nodeId": "com.google.apis:google-api-services-servicemanagement@v1-rev435-1.23.0" + }, + { + "nodeId": "com.google.apis:google-api-services-serviceusage@v1beta1-rev20210427-1.31.0" + }, + { + "nodeId": "com.google.apis:google-api-services-storage@v1-rev20200326-1.30.9" + }, + { + "nodeId": "com.google.auth:google-auth-library-credentials@0.9.1" + }, + { + "nodeId": "com.google.cloud:google-cloud-billingbudgets@1.1.0" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "com.google.http-client:google-http-client@1.39.2" + }, + { + "nodeId": "com.google.http-client:google-http-client-jackson2@1.35.0" + }, + { + "nodeId": "com.google.oauth-client:google-oauth-client@1.23.0" + }, + { + "nodeId": "com.google.protobuf:protobuf-java@3.18.2" + }, + { + "nodeId": "commons-lang:commons-lang@2.6" + }, + { + "nodeId": "io.micrometer:micrometer-core@1.5.3" + }, + { + "nodeId": "org.apache.avro:avro@1.11.0" + }, + { + "nodeId": "org.apache.commons:commons-lang3@3.12.0" + } + ] + }, + { + "nodeId": "//json:default_object_mapper@bazel", + "pkgId": "//json:default_object_mapper@bazel", + "deps": [ + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + } + ] + }, + { + "nodeId": "//warehouses/common:main@bazel", + "pkgId": "//warehouses/common:main@bazel", + "deps": [ + { + "nodeId": "//warehouses/common:observability@bazel" + }, + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//dynamo:main@bazel" + }, + { + "nodeId": "//events:event_hub@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//heartbeat:lite@bazel" + }, + { + "nodeId": "//json:default_object_mapper@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//markdown:main@bazel" + }, + { + "nodeId": "//port_forwarder:tunnel_data_source@bazel" + }, + { + "nodeId": "//schema_migration:main@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//secrets/system:main@bazel" + }, + { + "nodeId": "//util:main@bazel" + }, + { + "nodeId": "//utils/exceptions:main@bazel" + }, + { + "nodeId": "//warehouses/common:feature_flags@bazel" + }, + { + "nodeId": "//warehouses/common:staging_s3@bazel" + }, + { + "nodeId": "//warehouses/common-local:writer_base@bazel" + }, + { + "nodeId": "//warehouses/common-local:writer_csv@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "com.google.protobuf:protobuf-java@3.18.2" + }, + { + "nodeId": "org.apache.commons:commons-lang3@3.12.0" + } + ] + }, + { + "nodeId": "//port_forwarder:tunnel_data_source@bazel", + "pkgId": "//port_forwarder:tunnel_data_source@bazel", + "deps": [ + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//aws:instance_id@bazel" + }, + { + "nodeId": "//dynamo:main@bazel" + }, + { + "nodeId": "//database:postgresql_jdbc_fix@bazel" + }, + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logging:main@bazel" + }, + { + "nodeId": "//globals:main@bazel" + }, + { + "nodeId": "@jsch_patched//:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//ssh:main@bazel" + }, + { + "nodeId": "//util:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.eclipse.jetty:jetty-server@9.4.40.v20210413" + }, + { + "nodeId": "org.eclipse.jetty:jetty-servlet@9.4.40.v20210413" + }, + { + "nodeId": "org.glassfish.jersey.containers:jersey-container-servlet-core@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-server@2.31" + }, + { + "nodeId": "org.bouncycastle:bcpkix-jdk15on@1.70" + } + ] + }, + { + "nodeId": "//aws:instance_id@bazel", + "pkgId": "//aws:instance_id@bazel", + "deps": [] + }, + { + "nodeId": "org.eclipse.jetty:jetty-servlet@9.4.40.v20210413", + "pkgId": "org.eclipse.jetty:jetty-servlet@9.4.40.v20210413", + "deps": [ + { + "nodeId": "org.eclipse.jetty:jetty-security@9.4.40.v20210413" + }, + { + "nodeId": "org.eclipse.jetty:jetty-util-ajax@9.4.40.v20210413" + } + ] + }, + { + "nodeId": "org.eclipse.jetty:jetty-security@9.4.40.v20210413", + "pkgId": "org.eclipse.jetty:jetty-security@9.4.40.v20210413", + "deps": [ + { + "nodeId": "org.eclipse.jetty:jetty-server@9.4.40.v20210413" + } + ] + }, + { + "nodeId": "org.eclipse.jetty:jetty-util-ajax@9.4.40.v20210413", + "pkgId": "org.eclipse.jetty:jetty-util-ajax@9.4.40.v20210413", + "deps": [ + { + "nodeId": "org.eclipse.jetty:jetty-util@9.4.40.v20210413" + } + ] + }, + { + "nodeId": "org.glassfish.jersey.containers:jersey-container-servlet-core@2.31", + "pkgId": "org.glassfish.jersey.containers:jersey-container-servlet-core@2.31", + "deps": [ + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.glassfish.hk2.external:jakarta.inject@2.6.1" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-common@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-server@2.31" + } + ] + }, + { + "nodeId": "//warehouses/common:staging_s3@bazel", + "pkgId": "//warehouses/common:staging_s3@bazel", + "deps": [ + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//warehouses/common-local:writer_file@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//globals:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//util:main@bazel" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-core@1.12.84" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-s3@1.12.84" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-sts@1.12.84" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "org.apache.commons:commons-lang3@3.12.0" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + } + ] + }, + { + "nodeId": "//warehouses/common-local:writer_file@bazel", + "pkgId": "//warehouses/common-local:writer_file@bazel", + "deps": [ + { + "nodeId": "//crypto:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "com.github.luben:zstd-jni@1.4.9-1" + }, + { + "nodeId": "org.apache.commons:commons-lang3@3.12.0" + } + ] + }, + { + "nodeId": "com.github.luben:zstd-jni@1.4.9-1", + "pkgId": "com.github.luben:zstd-jni@1.4.9-1", + "deps": [] + }, + { + "nodeId": "//warehouses/common-local:writer_base@bazel", + "pkgId": "//warehouses/common-local:writer_base@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//crypto:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//globals:main@bazel" + }, + { + "nodeId": "//json:default_object_mapper@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//util:main@bazel" + }, + { + "nodeId": "//utils/serialization:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "//warehouses/common:staging_azure@bazel" + }, + { + "nodeId": "//warehouses/common:staging_gcs@bazel" + }, + { + "nodeId": "//warehouses/common:staging_s3@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.github.luben:zstd-jni@1.4.9-1" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "com.google.protobuf:protobuf-java@3.18.2" + }, + { + "nodeId": "com.intellij:annotations@12.0" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.apache.commons:commons-lang3@3.12.0" + } + ] + }, + { + "nodeId": "//warehouses/common:staging_azure@bazel", + "pkgId": "//warehouses/common:staging_azure@bazel", + "deps": [ + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//warehouses/common-local:writer_file@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//globals:main@bazel" + }, + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "com.microsoft.azure:azure-keyvault-cryptography@1.2.4" + }, + { + "nodeId": "//secrets/system:main@bazel" + }, + { + "nodeId": "com.microsoft.azure:azure-storage@8.6.3" + }, + { + "nodeId": "org.apache.commons:commons-lang3@3.12.0" + } + ] + }, + { + "nodeId": "com.microsoft.azure:azure-keyvault-cryptography@1.2.4", + "pkgId": "com.microsoft.azure:azure-keyvault-cryptography@1.2.4", + "deps": [ + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "org.apache.commons:commons-lang3@3.12.0" + }, + { + "nodeId": "com.microsoft.azure:azure-keyvault-webkey@1.2.4" + }, + { + "nodeId": "commons-codec:commons-codec@1.10" + }, + { + "nodeId": "com.microsoft.azure:azure-keyvault-core@1.2.4" + } + ] + }, + { + "nodeId": "com.microsoft.azure:azure-keyvault-webkey@1.2.4", + "pkgId": "com.microsoft.azure:azure-keyvault-webkey@1.2.4", + "deps": [ + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "commons-codec:commons-codec@1.10" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + } + ] + }, + { + "nodeId": "com.microsoft.azure:azure-keyvault-core@1.2.4", + "pkgId": "com.microsoft.azure:azure-keyvault-core@1.2.4", + "deps": [ + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "org.apache.commons:commons-lang3@3.12.0" + } + ] + }, + { + "nodeId": "com.microsoft.azure:azure-storage@8.6.3", + "pkgId": "com.microsoft.azure:azure-storage@8.6.3", + "deps": [ + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.microsoft.azure:azure-keyvault-core@1.2.4" + }, + { + "nodeId": "org.apache.commons:commons-lang3@3.12.0" + }, + { + "nodeId": "org.slf4j:slf4j-api@1.7.13" + } + ] + }, + { + "nodeId": "//warehouses/common:staging_gcs@bazel", + "pkgId": "//warehouses/common:staging_gcs@bazel", + "deps": [ + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//warehouses/common-local:writer_file@bazel" + }, + { + "nodeId": "//google_cloud:main@bazel" + }, + { + "nodeId": "com.google.api-client:google-api-client@1.31.1" + }, + { + "nodeId": "com.google.apis:google-api-services-storage@v1-rev20200326-1.30.9" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "com.google.http-client:google-http-client@1.39.2" + }, + { + "nodeId": "com.google.oauth-client:google-oauth-client@1.23.0" + }, + { + "nodeId": "org.apache.commons:commons-lang3@3.12.0" + }, + { + "nodeId": "//lambda:main@bazel" + } + ] + }, + { + "nodeId": "//warehouses/common-local:writer_csv@bazel", + "pkgId": "//warehouses/common-local:writer_csv@bazel", + "deps": [ + { + "nodeId": "//warehouses/common-local:writer_base@bazel" + }, + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//util:main@bazel" + }, + { + "nodeId": "@com_fasterxml_jackson_dataformat_jackson_dataformat_csv//:main@bazel" + } + ] + }, + { + "nodeId": "//warehouses/common-local:writer_avro@bazel", + "pkgId": "//warehouses/common-local:writer_avro@bazel", + "deps": [ + { + "nodeId": "//warehouses/common-local:writer_avro_base@bazel" + }, + { + "nodeId": "//warehouses/common-local:writer_base@bazel" + }, + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "org.apache.avro:avro@1.11.0" + } + ] + }, + { + "nodeId": "//warehouses/common-local:writer_avro_base@bazel", + "pkgId": "//warehouses/common-local:writer_avro_base@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "org.apache.avro:avro@1.11.0" + } + ] + }, + { + "nodeId": "org.apache.avro:avro@1.11.0", + "pkgId": "org.apache.avro:avro@1.11.0", + "deps": [ + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "org.apache.commons:commons-compress@1.16" + }, + { + "nodeId": "org.slf4j:slf4j-api@1.7.13" + } + ] + }, + { + "nodeId": "org.apache.commons:commons-compress@1.16", + "pkgId": "org.apache.commons:commons-compress@1.16", + "deps": [ + { + "nodeId": "org.objenesis:objenesis@2.6" + } + ] + }, + { + "nodeId": "org.objenesis:objenesis@2.6", + "pkgId": "org.objenesis:objenesis@2.6", + "deps": [] + }, + { + "nodeId": "//warehouses/common-local:writer_json@bazel", + "pkgId": "//warehouses/common-local:writer_json@bazel", + "deps": [ + { + "nodeId": "//warehouses/common-local:writer_base@bazel" + }, + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//json:default_object_mapper@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + } + ] + }, + { + "nodeId": "com.google.api.grpc:proto-google-cloud-billingbudgets-v1@1.1.0", + "pkgId": "com.google.api.grpc:proto-google-cloud-billingbudgets-v1@1.1.0", + "deps": [ + { + "nodeId": "com.google.guava:listenablefuture@9999.0-empty-to-avoid-conflict-with-guava" + }, + { + "nodeId": "com.google.errorprone:error_prone_annotations@2.13.1" + }, + { + "nodeId": "com.google.j2objc:j2objc-annotations@1.3" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "com.google.api.grpc:proto-google-common-protos@1.15.0" + }, + { + "nodeId": "com.google.api:api-common@1.9.0" + }, + { + "nodeId": "com.google.auto.value:auto-value-annotations@1.9" + }, + { + "nodeId": "javax.annotation:javax.annotation-api@1.3.2" + }, + { + "nodeId": "com.google.guava:failureaccess@1.0.1" + }, + { + "nodeId": "com.google.protobuf:protobuf-java@3.18.2" + }, + { + "nodeId": "org.checkerframework:checker-compat-qual@2.5.5" + } + ] + }, + { + "nodeId": "org.checkerframework:checker-compat-qual@2.5.5", + "pkgId": "org.checkerframework:checker-compat-qual@2.5.5", + "deps": [] + }, + { + "nodeId": "com.google.apis:google-api-services-cloudbilling@v1-rev9-1.22.0", + "pkgId": "com.google.apis:google-api-services-cloudbilling@v1-rev9-1.22.0", + "deps": [ + { + "nodeId": "com.google.api-client:google-api-client@1.31.1" + } + ] + }, + { + "nodeId": "com.google.apis:google-api-services-servicemanagement@v1-rev435-1.23.0", + "pkgId": "com.google.apis:google-api-services-servicemanagement@v1-rev435-1.23.0", + "deps": [ + { + "nodeId": "com.google.api-client:google-api-client@1.31.1" + } + ] + }, + { + "nodeId": "com.google.apis:google-api-services-serviceusage@v1beta1-rev20210427-1.31.0", + "pkgId": "com.google.apis:google-api-services-serviceusage@v1beta1-rev20210427-1.31.0", + "deps": [ + { + "nodeId": "com.google.api-client:google-api-client@1.31.1" + } + ] + }, + { + "nodeId": "com.google.cloud:google-cloud-billingbudgets@1.1.0", + "pkgId": "com.google.cloud:google-cloud-billingbudgets@1.1.0", + "deps": [ + { + "nodeId": "com.google.guava:listenablefuture@9999.0-empty-to-avoid-conflict-with-guava" + }, + { + "nodeId": "org.conscrypt:conscrypt-openjdk-uber@2.5.1" + }, + { + "nodeId": "com.google.errorprone:error_prone_annotations@2.13.1" + }, + { + "nodeId": "com.google.http-client:google-http-client@1.39.2" + }, + { + "nodeId": "com.google.api:gax@2.3.0" + }, + { + "nodeId": "com.google.j2objc:j2objc-annotations@1.3" + }, + { + "nodeId": "commons-logging:commons-logging@1.2" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.auth:google-auth-library-oauth2-http@0.22.0" + }, + { + "nodeId": "io.grpc:grpc-stub@1.32.2" + }, + { + "nodeId": "io.grpc:grpc-auth@1.32.2" + }, + { + "nodeId": "com.google.android:annotations@4.1.1.4" + }, + { + "nodeId": "com.google.code.gson:gson@2.9.0" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "com.google.api.grpc:proto-google-common-protos@1.15.0" + }, + { + "nodeId": "io.grpc:grpc-alts@1.46.0" + }, + { + "nodeId": "com.google.api.grpc:proto-google-cloud-billingbudgets-v1@1.1.0" + }, + { + "nodeId": "org.apache.httpcomponents:httpcore@4.4.13" + }, + { + "nodeId": "io.grpc:grpc-api@1.32.2" + }, + { + "nodeId": "io.grpc:grpc-netty-shaded@1.32.2" + }, + { + "nodeId": "com.google.protobuf:protobuf-java-util@3.18.2" + }, + { + "nodeId": "com.google.api:api-common@1.9.0" + }, + { + "nodeId": "io.grpc:grpc-grpclb@1.46.0" + }, + { + "nodeId": "com.google.auto.value:auto-value-annotations@1.9" + }, + { + "nodeId": "org.threeten:threetenbp@1.3.3" + }, + { + "nodeId": "com.google.api:gax-grpc@2.3.0" + }, + { + "nodeId": "javax.annotation:javax.annotation-api@1.3.2" + }, + { + "nodeId": "org.codehaus.mojo:animal-sniffer-annotations@1.21" + }, + { + "nodeId": "com.google.http-client:google-http-client-gson@1.41.8" + }, + { + "nodeId": "com.google.api.grpc:proto-google-cloud-billingbudgets-v1beta1@0.7.0" + }, + { + "nodeId": "com.google.guava:failureaccess@1.0.1" + }, + { + "nodeId": "commons-codec:commons-codec@1.10" + }, + { + "nodeId": "org.apache.httpcomponents:httpclient@4.5.13" + }, + { + "nodeId": "io.grpc:grpc-protobuf-lite@1.32.2" + }, + { + "nodeId": "io.opencensus:opencensus-contrib-http-util@0.11.1" + }, + { + "nodeId": "io.grpc:grpc-context@1.32.2" + }, + { + "nodeId": "io.grpc:grpc-core@1.32.2" + }, + { + "nodeId": "io.opencensus:opencensus-api@0.12.3" + }, + { + "nodeId": "io.perfmark:perfmark-api@0.25.0" + }, + { + "nodeId": "com.google.auth:google-auth-library-credentials@0.9.1" + }, + { + "nodeId": "io.grpc:grpc-protobuf@1.32.2" + }, + { + "nodeId": "com.google.protobuf:protobuf-java@3.18.2" + }, + { + "nodeId": "org.checkerframework:checker-compat-qual@2.5.5" + } + ] + }, + { + "nodeId": "com.google.api.grpc:proto-google-cloud-billingbudgets-v1beta1@0.7.0", + "pkgId": "com.google.api.grpc:proto-google-cloud-billingbudgets-v1beta1@0.7.0", + "deps": [ + { + "nodeId": "com.google.guava:listenablefuture@9999.0-empty-to-avoid-conflict-with-guava" + }, + { + "nodeId": "com.google.errorprone:error_prone_annotations@2.13.1" + }, + { + "nodeId": "com.google.j2objc:j2objc-annotations@1.3" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.auto.value:auto-value-annotations@1.9" + }, + { + "nodeId": "javax.annotation:javax.annotation-api@1.3.2" + }, + { + "nodeId": "com.google.guava:failureaccess@1.0.1" + }, + { + "nodeId": "org.checkerframework:checker-compat-qual@2.5.5" + } + ] + }, + { + "nodeId": "com.stripe:stripe-java@19.20.0", + "pkgId": "com.stripe:stripe-java@19.20.0", + "deps": [ + { + "nodeId": "com.google.code.gson:gson@2.9.0" + } + ] + }, + { + "nodeId": "io.swagger.core.v3:swagger-annotations@2.1.11", + "pkgId": "io.swagger.core.v3:swagger-annotations@2.1.11", + "deps": [] + }, + { + "nodeId": "//utils/bootstrap:main@bazel", + "pkgId": "//utils/bootstrap:main@bazel", + "deps": [ + { + "nodeId": "//integrations/braze:main@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//secrets/services:main@bazel" + }, + { + "nodeId": "//secrets/system:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.dataformat:jackson-dataformat-yaml@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "info.picocli:picocli@4.5.1" + } + ] + }, + { + "nodeId": "//integrations/braze:main@bazel", + "pkgId": "//integrations/braze:main@bazel", + "deps": [ + { + "nodeId": "//aws:main@bazel" + }, + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//google_cloud:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//services/resync:main@bazel" + }, + { + "nodeId": "//utils/fsort:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-s3@1.12.84" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-sts@1.12.84" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.dataformat:jackson-dataformat-smile@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.api-client:google-api-client@1.31.1" + }, + { + "nodeId": "com.google.apis:google-api-services-storage@v1-rev20200326-1.30.9" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "com.google.http-client:google-http-client@1.39.2" + }, + { + "nodeId": "com.google.oauth-client:google-oauth-client@1.23.0" + }, + { + "nodeId": "com.microsoft.azure:azure-storage@8.6.3" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.apache.avro:avro@1.11.0" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-common@2.31" + }, + { + "nodeId": "org.slf4j:slf4j-api@1.7.13" + } + ] + }, + { + "nodeId": "//services/resync:main@bazel", + "pkgId": "//services/resync:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//core_interfaces/cursor:main@bazel" + }, + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//services:exceptions@bazel" + }, + { + "nodeId": "//services:integration_control@bazel" + }, + { + "nodeId": "//services/logging:main@bazel" + }, + { + "nodeId": "//utils/nullability:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "//utils/validations:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "org.glassfish.hk2.external:jakarta.inject@2.6.1" + } + ] + }, + { + "nodeId": "//services:exceptions@bazel", + "pkgId": "//services:exceptions@bazel", + "deps": [ + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + } + ] + }, + { + "nodeId": "//services:integration_control@bazel", + "pkgId": "//services:integration_control@bazel", + "deps": [ + { + "nodeId": "//services:exceptions@bazel" + }, + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "org.glassfish.hk2.external:jakarta.inject@2.6.1" + } + ] + }, + { + "nodeId": "//utils/fsort:main@bazel", + "pkgId": "//utils/fsort:main@bazel", + "deps": [ + { + "nodeId": "//crypto:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + } + ] + }, + { + "nodeId": "info.picocli:picocli@4.5.1", + "pkgId": "info.picocli:picocli@4.5.1", + "deps": [] + }, + { + "nodeId": "com.cronutils:cron-utils@9.0.2", + "pkgId": "com.cronutils:cron-utils@9.0.2", + "deps": [ + { + "nodeId": "org.slf4j:slf4j-api@1.7.13" + } + ] + }, + { + "nodeId": "org.hibernate:hibernate-validator@5.4.3.Final", + "pkgId": "org.hibernate:hibernate-validator@5.4.3.Final", + "deps": [ + { + "nodeId": "com.fasterxml:classmate@1.3.4" + }, + { + "nodeId": "javax.validation:validation-api@1.1.0.Final" + }, + { + "nodeId": "org.jboss.logging:jboss-logging@3.3.2.Final" + } + ] + }, + { + "nodeId": "com.fasterxml:classmate@1.3.4", + "pkgId": "com.fasterxml:classmate@1.3.4", + "deps": [] + }, + { + "nodeId": "org.jboss.logging:jboss-logging@3.3.2.Final", + "pkgId": "org.jboss.logging:jboss-logging@3.3.2.Final", + "deps": [] + }, + { + "nodeId": "//donkey:main@bazel", + "pkgId": "//donkey:main@bazel", + "deps": [ + { + "nodeId": "//common:main@bazel" + }, + { + "nodeId": "//core_implementation:main@bazel" + }, + { + "nodeId": "//core_implementation/column_blocking:main@bazel" + }, + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//core_interfaces/cursor:main@bazel" + }, + { + "nodeId": "//crypto:main@bazel" + }, + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//database/exceptions:main@bazel" + }, + { + "nodeId": "//database/resilience:main@bazel" + }, + { + "nodeId": "//event_bus:main@bazel" + }, + { + "nodeId": "//feature_flag:flags@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//feature_flag/service:main@bazel" + }, + { + "nodeId": "//globals:main@bazel" + }, + { + "nodeId": "//google_cloud:main@bazel" + }, + { + "nodeId": "//heartbeat:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//integrated_scheduler/scheduler:pubsub@bazel" + }, + { + "nodeId": "//integrations/netsuite:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//logging:main@bazel" + }, + { + "nodeId": "//micrometer:main@bazel" + }, + { + "nodeId": "//pipeline_queue:main@bazel" + }, + { + "nodeId": "//schema_migration:schema_migration_info@bazel" + }, + { + "nodeId": "//schema_migration:service@bazel" + }, + { + "nodeId": "//schema_service:main@bazel" + }, + { + "nodeId": "//secred/client:main@bazel" + }, + { + "nodeId": "//secred/common:main@bazel" + }, + { + "nodeId": "//secred/util:main@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//secrets/group:main@bazel" + }, + { + "nodeId": "//secrets/services:main@bazel" + }, + { + "nodeId": "//secrets/system:main@bazel" + }, + { + "nodeId": "//services:main@bazel" + }, + { + "nodeId": "//services/resync:main@bazel" + }, + { + "nodeId": "//services/setup_test_runner:main@bazel" + }, + { + "nodeId": "//slack:main@bazel" + }, + { + "nodeId": "//transformation_runner:client@bazel" + }, + { + "nodeId": "//util:main@bazel" + }, + { + "nodeId": "//utils/exceptions:main@bazel" + }, + { + "nodeId": "//utils/hook:main@bazel" + }, + { + "nodeId": "//utils/network_monitor:main@bazel" + }, + { + "nodeId": "//utils/nullability:main@bazel" + }, + { + "nodeId": "//utils/sync_statistics:main@bazel" + }, + { + "nodeId": "//utils/threading:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "//warehouses/common:main@bazel" + }, + { + "nodeId": "@com_google_cloud_google_cloud_bigquerydatatransfer//:main@bazel" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-cloudwatch@1.12.84" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-core@1.12.84" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-dynamodb@1.12.84" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.github.f4b6a3:ulid-creator@4.0.0" + }, + { + "nodeId": "com.google.api:gax@2.3.0" + }, + { + "nodeId": "com.google.auth:google-auth-library-credentials@0.9.1" + }, + { + "nodeId": "com.google.auth:google-auth-library-oauth2-http@0.22.0" + }, + { + "nodeId": "com.google.cloud:google-cloud-pubsub@1.119.1" + }, + { + "nodeId": "com.google.cloud:google-cloud-storage@1.108.0" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "com.google.protobuf:protobuf-java@3.18.2" + }, + { + "nodeId": "com.google.protobuf:protobuf-java-util@3.18.2" + }, + { + "nodeId": "io.micrometer:micrometer-core@1.5.3" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.apache.commons:commons-lang3@3.12.0" + }, + { + "nodeId": "org.glassfish.hk2.external:jakarta.inject@2.6.1" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + }, + { + "nodeId": "org.slf4j:slf4j-jdk14@1.7.13" + } + ] + }, + { + "nodeId": "//event_bus:main@bazel", + "pkgId": "//event_bus:main@bazel", + "deps": [ + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//logger:acmecorp_logger@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//utils/nullability:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.github.f4b6a3:ulid-creator@4.0.0" + }, + { + "nodeId": "com.google.api:api-common@1.9.0" + }, + { + "nodeId": "com.google.api:gax@2.3.0" + }, + { + "nodeId": "com.google.api.grpc:proto-google-cloud-pubsub-v1@1.101.1" + }, + { + "nodeId": "com.google.auth:google-auth-library-oauth2-http@0.22.0" + }, + { + "nodeId": "com.google.cloud:google-cloud-pubsub@1.119.1" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "com.google.protobuf:protobuf-java@3.18.2" + }, + { + "nodeId": "org.apache.commons:commons-lang3@3.12.0" + } + ] + }, + { + "nodeId": "com.github.f4b6a3:ulid-creator@4.0.0", + "pkgId": "com.github.f4b6a3:ulid-creator@4.0.0", + "deps": [] + }, + { + "nodeId": "//integrated_scheduler/scheduler:pubsub@bazel", + "pkgId": "//integrated_scheduler/scheduler:pubsub@bazel", + "deps": [ + { + "nodeId": "//integrated_scheduler/scheduler:messages@bazel" + }, + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//secrets/system:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.google.api:api-common@1.9.0" + }, + { + "nodeId": "com.google.api.grpc:proto-google-cloud-pubsub-v1@1.101.1" + }, + { + "nodeId": "com.google.apis:google-api-services-pubsub@v1-rev452-1.25.0" + }, + { + "nodeId": "com.google.auth:google-auth-library-credentials@0.9.1" + }, + { + "nodeId": "com.google.auth:google-auth-library-oauth2-http@0.22.0" + }, + { + "nodeId": "com.google.cloud:google-cloud-pubsub@1.119.1" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "com.google.protobuf:protobuf-java@3.18.2" + }, + { + "nodeId": "org.glassfish.hk2.external:jakarta.inject@2.6.1" + } + ] + }, + { + "nodeId": "//integrated_scheduler/scheduler:messages@bazel", + "pkgId": "//integrated_scheduler/scheduler:messages@bazel", + "deps": [ + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + } + ] + }, + { + "nodeId": "com.google.apis:google-api-services-pubsub@v1-rev452-1.25.0", + "pkgId": "com.google.apis:google-api-services-pubsub@v1-rev452-1.25.0", + "deps": [ + { + "nodeId": "com.google.api-client:google-api-client@1.31.1" + } + ] + }, + { + "nodeId": "//integrations/netsuite:main@bazel", + "pkgId": "//integrations/netsuite:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//core_utils:main@bazel" + }, + { + "nodeId": "//dblike:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//google_cloud:main@bazel" + }, + { + "nodeId": "//integrations/db:main@bazel" + }, + { + "nodeId": "//integrations/db_like_standardization:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//logging:main@bazel" + }, + { + "nodeId": "//markdown:main@bazel" + }, + { + "nodeId": "//port_forwarder:main@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//secrets/system:main@bazel" + }, + { + "nodeId": "//services/resync:main@bazel" + }, + { + "nodeId": "//slack:main@bazel" + }, + { + "nodeId": "//util:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "//utils/validations:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.cloud:google-cloud-storage@1.108.0" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "com.intellij:annotations@12.0" + }, + { + "nodeId": "commons-codec:commons-codec@1.10" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-common@2.31" + } + ] + }, + { + "nodeId": "//core_utils:main@bazel", + "pkgId": "//core_utils:main@bazel", + "deps": [ + { + "nodeId": "//core_implementation/column_blocking:main@bazel" + }, + { + "nodeId": "//core_implementation/proto:main@bazel" + }, + { + "nodeId": "//core_implementation/proto:row_java_proto@bazel" + }, + { + "nodeId": "//core_implementation/transform:main@bazel" + }, + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//util:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.google.protobuf:protobuf-java@3.18.2" + } + ] + }, + { + "nodeId": "//dblike:main@bazel", + "pkgId": "//dblike:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//core_utils:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//markdown:main@bazel" + }, + { + "nodeId": "//util:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.javassist:javassist@3.21.0-GA" + } + ] + }, + { + "nodeId": "//integrations/db:main@bazel", + "pkgId": "//integrations/db:main@bazel", + "deps": [ + { + "nodeId": "//aws:main@bazel" + }, + { + "nodeId": "//cloud_storage:main@bazel" + }, + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//core_utils:main@bazel" + }, + { + "nodeId": "//crypto:main@bazel" + }, + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//google_cloud:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//integrations/hvr/hvr_tool:main@bazel" + }, + { + "nodeId": "//integrations/isolated_endpoint_sync:main@bazel" + }, + { + "nodeId": "//integrations/speed_test:main@bazel" + }, + { + "nodeId": "//integrations/speed_test:utils@bazel" + }, + { + "nodeId": "//ip_utils:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//kms:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//logging:main@bazel" + }, + { + "nodeId": "//markdown:main@bazel" + }, + { + "nodeId": "//micrometer:main@bazel" + }, + { + "nodeId": "//port_forwarder:main@bazel" + }, + { + "nodeId": "//schema_migration:schema_migration_info@bazel" + }, + { + "nodeId": "//secred/util:main@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//secrets/services:main@bazel" + }, + { + "nodeId": "//secrets/system:main@bazel" + }, + { + "nodeId": "//ssh:main@bazel" + }, + { + "nodeId": "//testing:main@bazel" + }, + { + "nodeId": "//util:main@bazel" + }, + { + "nodeId": "//utils/beans:main@bazel" + }, + { + "nodeId": "//utils/exceptions:main@bazel" + }, + { + "nodeId": "//utils/os:main@bazel" + }, + { + "nodeId": "//utils/run_shell:main@bazel" + }, + { + "nodeId": "//utils/segmented_input_stream:main@bazel" + }, + { + "nodeId": "//utils/serializers:main@bazel" + }, + { + "nodeId": "//utils/threading:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "//verification:main@bazel" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-core@1.12.84" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-s3@1.12.84" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.github.jsqlparser:jsqlparser@4.2" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "com.walkmind.extensions:collections@1.20" + }, + { + "nodeId": "io.micrometer:micrometer-core@1.5.3" + }, + { + "nodeId": "io.netty:netty-buffer@4.1.50.Final" + }, + { + "nodeId": "junit:junit@4.13" + }, + { + "nodeId": "org.apache.httpcomponents:httpclient@4.5.13" + }, + { + "nodeId": "org.apache.httpcomponents:httpcore@4.4.13" + }, + { + "nodeId": "org.hamcrest:hamcrest@2.2" + }, + { + "nodeId": "org.jooq:jool-java-8@0.9.14" + }, + { + "nodeId": "org.mockito:mockito-core@2.28.2" + } + ] + }, + { + "nodeId": "//integrations/hvr/hvr_tool:main@bazel", + "pkgId": "//integrations/hvr/hvr_tool:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//crypto:main@bazel" + }, + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//globals:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//ssh:main@bazel" + }, + { + "nodeId": "//utils/cipher_adapter:main@bazel" + }, + { + "nodeId": "//utils/run_shell:main@bazel" + }, + { + "nodeId": "//utils/segmented_input_stream:main@bazel" + }, + { + "nodeId": "//utils/sleep_control:main@bazel" + }, + { + "nodeId": "//utils/socket_receiver:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.dataformat:jackson-dataformat-xml@2.9.8" + } + ] + }, + { + "nodeId": "//utils/cipher_adapter:main@bazel", + "pkgId": "//utils/cipher_adapter:main@bazel", + "deps": [ + { + "nodeId": "//crypto:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + } + ] + }, + { + "nodeId": "//utils/run_shell:main@bazel", + "pkgId": "//utils/run_shell:main@bazel", + "deps": [ + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//utils/sleep_control:main@bazel" + }, + { + "nodeId": "@jsch_patched//:main@bazel" + } + ] + }, + { + "nodeId": "//utils/sleep_control:main@bazel", + "pkgId": "//utils/sleep_control:main@bazel", + "deps": [] + }, + { + "nodeId": "//utils/segmented_input_stream:main@bazel", + "pkgId": "//utils/segmented_input_stream:main@bazel", + "deps": [ + { + "nodeId": "//logger:main@bazel" + } + ] + }, + { + "nodeId": "//utils/socket_receiver:main@bazel", + "pkgId": "//utils/socket_receiver:main@bazel", + "deps": [ + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//utils/sleep_control:main@bazel" + } + ] + }, + { + "nodeId": "//integrations/isolated_endpoint_sync:main@bazel", + "pkgId": "//integrations/isolated_endpoint_sync:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + } + ] + }, + { + "nodeId": "//integrations/speed_test:main@bazel", + "pkgId": "//integrations/speed_test:main@bazel", + "deps": [ + { + "nodeId": "//integrations/speed_test:utils@bazel" + }, + { + "nodeId": "//common:main@bazel" + }, + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//micrometer:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + } + ] + }, + { + "nodeId": "//integrations/speed_test:utils@bazel", + "pkgId": "//integrations/speed_test:utils@bazel", + "deps": [] + }, + { + "nodeId": "//ip_utils:main@bazel", + "pkgId": "//ip_utils:main@bazel", + "deps": [] + }, + { + "nodeId": "//port_forwarder:main@bazel", + "pkgId": "//port_forwarder:main@bazel", + "deps": [ + { + "nodeId": "//:databricks_jdbc@bazel" + }, + { + "nodeId": "//:netsuite_jdbc_connector@bazel" + }, + { + "nodeId": "//:sap_s4hana_jdbc_connector@bazel" + }, + { + "nodeId": "//aws:main@bazel" + }, + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//database:postgresql_jdbc_fix@bazel" + }, + { + "nodeId": "//database:tls_verify@bazel" + }, + { + "nodeId": "//dynamo:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//globals:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//logging:main@bazel" + }, + { + "nodeId": "//ssh:main@bazel" + }, + { + "nodeId": "//util:main@bazel" + }, + { + "nodeId": "//utils/exceptions:main@bazel" + }, + { + "nodeId": "//utils/oracle:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "//verification:main@bazel" + }, + { + "nodeId": "@jsch_patched//:main@bazel" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-core@1.12.84" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-redshift@1.12.84" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-sts@1.12.84" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "com.ibm.db2:jcc@11.5.0.0" + }, + { + "nodeId": "com.microsoft.sqlserver:mssql-jdbc@9.4.0.jre11" + }, + { + "nodeId": "commons-io:commons-io@2.4" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "mysql:mysql-connector-java@8.0.13" + }, + { + "nodeId": "net.snowflake:snowflake-jdbc@3.13.18" + }, + { + "nodeId": "org.bouncycastle:bcpkix-jdk15on@1.70" + }, + { + "nodeId": "org.bouncycastle:bcprov-jdk15to18@1.70" + }, + { + "nodeId": "org.eclipse.jetty:jetty-server@9.4.40.v20210413" + }, + { + "nodeId": "org.eclipse.jetty:jetty-servlet@9.4.40.v20210413" + }, + { + "nodeId": "org.glassfish.jersey.containers:jersey-container-servlet-core@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-server@2.31" + }, + { + "nodeId": "org.mariadb.jdbc:mariadb-java-client@2.5.4" + }, + { + "nodeId": "org.postgresql:postgresql@42.3.3" + } + ] + }, + { + "nodeId": "//:databricks_jdbc@bazel", + "pkgId": "//:databricks_jdbc@bazel", + "deps": [] + }, + { + "nodeId": "//:netsuite_jdbc_connector@bazel", + "pkgId": "//:netsuite_jdbc_connector@bazel", + "deps": [] + }, + { + "nodeId": "//:sap_s4hana_jdbc_connector@bazel", + "pkgId": "//:sap_s4hana_jdbc_connector@bazel", + "deps": [] + }, + { + "nodeId": "//utils/oracle:main@bazel", + "pkgId": "//utils/oracle:main@bazel", + "deps": [ + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//verification:main@bazel" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "commons-io:commons-io@2.4" + }, + { + "nodeId": "org.apache.commons:commons-lang3@3.12.0" + } + ] + }, + { + "nodeId": "//verification:main@bazel", + "pkgId": "//verification:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//core_interfaces:warning@bazel" + }, + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//database:tls_verify@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//util:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "commons-codec:commons-codec@1.10" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "mysql:mysql-connector-java@8.0.13" + }, + { + "nodeId": "org.mariadb.jdbc:mariadb-java-client@2.5.4" + }, + { + "nodeId": "@mysql_binlog_connector//:main@bazel" + } + ] + }, + { + "nodeId": "mysql:mysql-connector-java@8.0.13", + "pkgId": "mysql:mysql-connector-java@8.0.13", + "deps": [ + { + "nodeId": "com.google.protobuf:protobuf-java@3.18.2" + } + ] + }, + { + "nodeId": "org.mariadb.jdbc:mariadb-java-client@2.5.4", + "pkgId": "org.mariadb.jdbc:mariadb-java-client@2.5.4", + "deps": [] + }, + { + "nodeId": "@mysql_binlog_connector//:main@bazel", + "pkgId": "@mysql_binlog_connector//:main@bazel", + "deps": [ + { + "nodeId": "com.sun.xml.bind:jaxb-core@2.2.11" + }, + { + "nodeId": "com.sun.xml.bind:jaxb-impl@2.2.11" + }, + { + "nodeId": "javax.xml.bind:jaxb-api@2.2.2" + } + ] + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-redshift@1.12.84", + "pkgId": "com.amazonaws:aws-java-sdk-redshift@1.12.84", + "deps": [ + { + "nodeId": "com.amazonaws:aws-java-sdk-core@1.12.84" + }, + { + "nodeId": "com.amazonaws:jmespath-java@1.11.91" + } + ] + }, + { + "nodeId": "com.ibm.db2:jcc@11.5.0.0", + "pkgId": "com.ibm.db2:jcc@11.5.0.0", + "deps": [] + }, + { + "nodeId": "com.microsoft.sqlserver:mssql-jdbc@9.4.0.jre11", + "pkgId": "com.microsoft.sqlserver:mssql-jdbc@9.4.0.jre11", + "deps": [] + }, + { + "nodeId": "net.snowflake:snowflake-jdbc@3.13.18", + "pkgId": "net.snowflake:snowflake-jdbc@3.13.18", + "deps": [] + }, + { + "nodeId": "//testing:main@bazel", + "pkgId": "//testing:main@bazel", + "deps": [ + { + "nodeId": "//core_implementation/transform:main@bazel" + }, + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//core_mocks:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//secrets/system:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.github.tomakehurst:wiremock-jre8-standalone@2.27.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "com.google.http-client:google-http-client@1.39.2" + }, + { + "nodeId": "com.google.protobuf:protobuf-java@3.18.2" + }, + { + "nodeId": "commons-io:commons-io@2.4" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "javax.websocket:javax.websocket-api@1.1" + }, + { + "nodeId": "junit:junit@4.13" + }, + { + "nodeId": "org.apache.commons:commons-lang3@3.12.0" + }, + { + "nodeId": "org.glassfish.hk2.external:jakarta.inject@2.6.1" + }, + { + "nodeId": "org.glassfish.hk2:hk2-api@2.6.1" + }, + { + "nodeId": "org.hamcrest:hamcrest@2.2" + }, + { + "nodeId": "org.mockito:mockito-core@2.28.2" + } + ] + }, + { + "nodeId": "//core_mocks:main@bazel", + "pkgId": "//core_mocks:main@bazel", + "deps": [ + { + "nodeId": "//core_implementation:main@bazel" + }, + { + "nodeId": "//core_implementation/column_blocking:main@bazel" + }, + { + "nodeId": "//core_implementation/proto:main@bazel" + }, + { + "nodeId": "//core_implementation/proto:row_java_proto@bazel" + }, + { + "nodeId": "//core_implementation/transform:main@bazel" + }, + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "com.jayway.jsonpath:json-path@2.4.0" + } + ] + }, + { + "nodeId": "com.jayway.jsonpath:json-path@2.4.0", + "pkgId": "com.jayway.jsonpath:json-path@2.4.0", + "deps": [ + { + "nodeId": "net.minidev:json-smart@2.3" + }, + { + "nodeId": "org.slf4j:slf4j-api@1.7.13" + } + ] + }, + { + "nodeId": "net.minidev:json-smart@2.3", + "pkgId": "net.minidev:json-smart@2.3", + "deps": [ + { + "nodeId": "net.minidev:accessors-smart@1.2" + } + ] + }, + { + "nodeId": "net.minidev:accessors-smart@1.2", + "pkgId": "net.minidev:accessors-smart@1.2", + "deps": [ + { + "nodeId": "org.ow2.asm:asm@8.0.1" + } + ] + }, + { + "nodeId": "com.github.tomakehurst:wiremock-jre8-standalone@2.27.2", + "pkgId": "com.github.tomakehurst:wiremock-jre8-standalone@2.27.2", + "deps": [] + }, + { + "nodeId": "javax.websocket:javax.websocket-api@1.1", + "pkgId": "javax.websocket:javax.websocket-api@1.1", + "deps": [] + }, + { + "nodeId": "junit:junit@4.13", + "pkgId": "junit:junit@4.13", + "deps": [ + { + "nodeId": "org.hamcrest:hamcrest-core@2.2" + } + ] + }, + { + "nodeId": "org.hamcrest:hamcrest-core@2.2", + "pkgId": "org.hamcrest:hamcrest-core@2.2", + "deps": [ + { + "nodeId": "org.hamcrest:hamcrest@2.2" + } + ] + }, + { + "nodeId": "org.hamcrest:hamcrest@2.2", + "pkgId": "org.hamcrest:hamcrest@2.2", + "deps": [] + }, + { + "nodeId": "org.mockito:mockito-core@2.28.2", + "pkgId": "org.mockito:mockito-core@2.28.2", + "deps": [ + { + "nodeId": "net.bytebuddy:byte-buddy@1.10.14" + }, + { + "nodeId": "net.bytebuddy:byte-buddy-agent@1.10.14" + }, + { + "nodeId": "org.objenesis:objenesis@2.6" + } + ] + }, + { + "nodeId": "net.bytebuddy:byte-buddy@1.10.14", + "pkgId": "net.bytebuddy:byte-buddy@1.10.14", + "deps": [] + }, + { + "nodeId": "net.bytebuddy:byte-buddy-agent@1.10.14", + "pkgId": "net.bytebuddy:byte-buddy-agent@1.10.14", + "deps": [] + }, + { + "nodeId": "//utils/beans:main@bazel", + "pkgId": "//utils/beans:main@bazel", + "deps": [ + { + "nodeId": "//lambda:main@bazel" + } + ] + }, + { + "nodeId": "com.github.jsqlparser:jsqlparser@4.2", + "pkgId": "com.github.jsqlparser:jsqlparser@4.2", + "deps": [] + }, + { + "nodeId": "com.walkmind.extensions:collections@1.20", + "pkgId": "com.walkmind.extensions:collections@1.20", + "deps": [] + }, + { + "nodeId": "//integrations/db_like_standardization:main@bazel", + "pkgId": "//integrations/db_like_standardization:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + } + ] + }, + { + "nodeId": "//secrets/group:main@bazel", + "pkgId": "//secrets/group:main@bazel", + "deps": [ + { + "nodeId": "//secred/client:main@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + } + ] + }, + { + "nodeId": "//services/setup_test_runner:main@bazel", + "pkgId": "//services/setup_test_runner:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//micrometer:main@bazel" + }, + { + "nodeId": "//partners:main@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//secrets/system:main@bazel" + }, + { + "nodeId": "//services:main@bazel" + }, + { + "nodeId": "//services/logging:main@bazel" + }, + { + "nodeId": "//setup_test_runner:client@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "//utils/validations:main@bazel" + }, + { + "nodeId": "//warehouses/big_query:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "io.micrometer:micrometer-core@1.5.3" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.glassfish.hk2.external:jakarta.inject@2.6.1" + }, + { + "nodeId": "org.glassfish.hk2:hk2-api@2.6.1" + }, + { + "nodeId": "org.jooq:jool-java-8@0.9.14" + } + ] + }, + { + "nodeId": "//setup_test_runner:client@bazel", + "pkgId": "//setup_test_runner:client@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//http:basic_auth_credentials@bazel" + }, + { + "nodeId": "//http:curl_request@bazel" + }, + { + "nodeId": "//http:exception_mappers@bazel" + }, + { + "nodeId": "//http:json@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//util:main@bazel" + }, + { + "nodeId": "//utils/uri:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "javax.websocket:javax.websocket-api@1.1" + }, + { + "nodeId": "org.eclipse.jetty:jetty-util@9.4.40.v20210413" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + } + ] + }, + { + "nodeId": "//http:exception_mappers@bazel", + "pkgId": "//http:exception_mappers@bazel", + "deps": [ + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "javax.servlet:javax.servlet-api@3.1.0" + }, + { + "nodeId": "org.glassfish.hk2.external:jakarta.inject@2.6.1" + }, + { + "nodeId": "org.glassfish.hk2:hk2-api@2.6.1" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-common@2.31" + } + ] + }, + { + "nodeId": "//http:json@bazel", + "pkgId": "//http:json@bazel", + "deps": [ + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-common@2.31" + } + ] + }, + { + "nodeId": "//transformation_runner:client@bazel", + "pkgId": "//transformation_runner:client@bazel", + "deps": [ + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//http:basic_auth_credentials@bazel" + }, + { + "nodeId": "//http:curl_request@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//utils/uri:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + } + ] + }, + { + "nodeId": "org.slf4j:slf4j-jdk14@1.7.13", + "pkgId": "org.slf4j:slf4j-jdk14@1.7.13", + "deps": [ + { + "nodeId": "org.slf4j:slf4j-api@1.7.13" + } + ] + }, + { + "nodeId": "//events:main@bazel", + "pkgId": "//events:main@bazel", + "deps": [ + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + } + ] + }, + { + "nodeId": "//feature_flag/sandbox:main@bazel", + "pkgId": "//feature_flag/sandbox:main@bazel", + "deps": [ + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//feature_flag:flags@bazel" + }, + { + "nodeId": "//feature_flag/json:main@bazel" + }, + { + "nodeId": "//feature_flag/service:main@bazel" + }, + { + "nodeId": "//globals:main@bazel" + } + ] + }, + { + "nodeId": "//feature_flag/json:main@bazel", + "pkgId": "//feature_flag/json:main@bazel", + "deps": [ + { + "nodeId": "//database:enums@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "commons-io:commons-io@2.4" + } + ] + }, + { + "nodeId": "//integrated_scheduler/dag:main@bazel", + "pkgId": "//integrated_scheduler/dag:main@bazel", + "deps": [ + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//dbt/manifest:main@bazel" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + } + ] + }, + { + "nodeId": "//integrated_scheduler/pipeline:main@bazel", + "pkgId": "//integrated_scheduler/pipeline:main@bazel", + "deps": [ + { + "nodeId": "//crypto:main@bazel" + }, + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//dbt/manifest:main@bazel" + }, + { + "nodeId": "//dbt/runner:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//integrated_scheduler/dag:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "org.apache.commons:commons-lang3@3.12.0" + }, + { + "nodeId": "org.glassfish.hk2.external:jakarta.inject@2.6.1" + } + ] + }, + { + "nodeId": "//dbt/runner:main@bazel", + "pkgId": "//dbt/runner:main@bazel", + "deps": [ + { + "nodeId": "//aws:main@bazel" + }, + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//database:hikari@bazel" + }, + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//dbt/agent:common@bazel" + }, + { + "nodeId": "//dbt/git:main@bazel" + }, + { + "nodeId": "//dbt/manifest:main@bazel" + }, + { + "nodeId": "//dbt/services:main@bazel" + }, + { + "nodeId": "//emails:core@bazel" + }, + { + "nodeId": "//emails:main@bazel" + }, + { + "nodeId": "//event_bus:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//feature_flag/service:main@bazel" + }, + { + "nodeId": "//globals:main@bazel" + }, + { + "nodeId": "//google_cloud:main@bazel" + }, + { + "nodeId": "//http:curl_request@bazel" + }, + { + "nodeId": "//http:json@bazel" + }, + { + "nodeId": "//integrated_scheduler/scheduler:messages@bazel" + }, + { + "nodeId": "//integrated_scheduler/scheduler:pubsub@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//log_appender/cloudwatch:main@bazel" + }, + { + "nodeId": "//log_appender/datadog:main@bazel" + }, + { + "nodeId": "//log_appender/log_analytics:main@bazel" + }, + { + "nodeId": "//log_appender/splunk:main@bazel" + }, + { + "nodeId": "//log_appender/stackdriver:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//logging:main@bazel" + }, + { + "nodeId": "//logging:ufl@bazel" + }, + { + "nodeId": "//port_forwarder:main@bazel" + }, + { + "nodeId": "//secred/client:main@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//secrets/services:main@bazel" + }, + { + "nodeId": "//secrets/system:main@bazel" + }, + { + "nodeId": "//services:main@bazel" + }, + { + "nodeId": "//ssh:main@bazel" + }, + { + "nodeId": "//utils/bootstrap:main@bazel" + }, + { + "nodeId": "//utils/exceptions:main@bazel" + }, + { + "nodeId": "//utils/threading:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "//warehouses/big_query:locations@bazel" + }, + { + "nodeId": "//warehouses/common:warehouse_type@bazel" + }, + { + "nodeId": "//warehouses/redshift:redshift_cluster_service@bazel" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-redshift@1.12.84" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.dataformat:jackson-dataformat-yaml@2.9.8" + }, + { + "nodeId": "com.github.f4b6a3:ulid-creator@4.0.0" + }, + { + "nodeId": "com.google.auth:google-auth-library-oauth2-http@0.22.0" + }, + { + "nodeId": "com.google.cloud:google-cloud-pubsub@1.119.1" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "commons-io:commons-io@2.4" + }, + { + "nodeId": "commons-lang:commons-lang@2.6" + }, + { + "nodeId": "info.picocli:picocli@4.5.1" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.glassfish.hk2.external:jakarta.inject@2.6.1" + }, + { + "nodeId": "org.glassfish.hk2:hk2-api@2.6.1" + } + ] + }, + { + "nodeId": "//dbt/agent:common@bazel", + "pkgId": "//dbt/agent:common@bazel", + "deps": [ + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "org.glassfish.hk2.external:jakarta.inject@2.6.1" + } + ] + }, + { + "nodeId": "//log_appender/datadog:main@bazel", + "pkgId": "//log_appender/datadog:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//utils/exceptions:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + } + ] + }, + { + "nodeId": "//log_appender/log_analytics:main@bazel", + "pkgId": "//log_appender/log_analytics:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//secrets/system:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "commons-codec:commons-codec@1.10" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + } + ] + }, + { + "nodeId": "//log_appender/splunk:main@bazel", + "pkgId": "//log_appender/splunk:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//utils/exceptions:main@bazel" + }, + { + "nodeId": "//utils/hook:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.auth:google-auth-library-oauth2-http@0.22.0" + }, + { + "nodeId": "com.google.cloud:google-cloud-core@1.48.0" + }, + { + "nodeId": "com.google.cloud:google-cloud-storage@1.108.0" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + } + ] + }, + { + "nodeId": "//logging:ufl@bazel", + "pkgId": "//logging:ufl@bazel", + "deps": [ + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + } + ] + }, + { + "nodeId": "//warehouses/big_query:locations@bazel", + "pkgId": "//warehouses/big_query:locations@bazel", + "deps": [ + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + } + ] + }, + { + "nodeId": "//warehouses/redshift:redshift_cluster_service@bazel", + "pkgId": "//warehouses/redshift:redshift_cluster_service@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-core@1.12.84" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-redshift@1.12.84" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-sts@1.12.84" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + } + ] + }, + { + "nodeId": "//log_tailer:main@bazel", + "pkgId": "//log_tailer:main@bazel", + "deps": [ + { + "nodeId": "//common:main@bazel" + }, + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//crypto:main@bazel" + }, + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//dynamo:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//globals:main@bazel" + }, + { + "nodeId": "//google_cloud:main@bazel" + }, + { + "nodeId": "//heartbeat:main@bazel" + }, + { + "nodeId": "//integrations/zuora:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//log_appender/cloudwatch:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//logging:fluent_bit@bazel" + }, + { + "nodeId": "//logging:main@bazel" + }, + { + "nodeId": "//micrometer:main@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//secrets/db:main@bazel" + }, + { + "nodeId": "//secrets/system:main@bazel" + }, + { + "nodeId": "//service_registry:main@bazel" + }, + { + "nodeId": "//util:main@bazel" + }, + { + "nodeId": "//utils/bootstrap:main@bazel" + }, + { + "nodeId": "//utils/exceptions:main@bazel" + }, + { + "nodeId": "//utils/nullability:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.google.api:api-common@1.9.0" + }, + { + "nodeId": "com.google.api-client:google-api-client@1.31.1" + }, + { + "nodeId": "com.google.api:gax@2.3.0" + }, + { + "nodeId": "com.google.api.grpc:proto-google-cloud-pubsub-v1@1.101.1" + }, + { + "nodeId": "com.google.auth:google-auth-library-credentials@0.9.1" + }, + { + "nodeId": "com.google.auth:google-auth-library-oauth2-http@0.22.0" + }, + { + "nodeId": "com.google.cloud:google-cloud-bigquery@1.48.0" + }, + { + "nodeId": "com.google.cloud:google-cloud-core@1.48.0" + }, + { + "nodeId": "com.google.cloud:google-cloud-datastore@1.70.0" + }, + { + "nodeId": "com.google.cloud:google-cloud-pubsub@1.119.1" + }, + { + "nodeId": "com.google.cloud:google-cloud-storage@1.108.0" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "com.google.protobuf:protobuf-java@3.18.2" + }, + { + "nodeId": "info.picocli:picocli@4.5.1" + }, + { + "nodeId": "io.micrometer:micrometer-core@1.5.3" + }, + { + "nodeId": "org.apache.axis:axis@1.4" + }, + { + "nodeId": "org.json:json@20171018" + }, + { + "nodeId": "org.threeten:threetenbp@1.3.3" + } + ] + }, + { + "nodeId": "//integrations/zuora:main@bazel", + "pkgId": "//integrations/zuora:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//core_utils:main@bazel" + }, + { + "nodeId": "//crypto:main@bazel" + }, + { + "nodeId": "//dblike:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//integrations/db_like_standardization:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//markdown:main@bazel" + }, + { + "nodeId": "//secrets/integration:main@bazel" + }, + { + "nodeId": "//services/resync:main@bazel" + }, + { + "nodeId": "//slack:main@bazel" + }, + { + "nodeId": "//util:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "@com_fasterxml_jackson_dataformat_jackson_dataformat_csv//:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "com.sun.xml.bind:jaxb-core@2.2.11" + }, + { + "nodeId": "com.sun.xml.bind:jaxb-impl@2.2.11" + }, + { + "nodeId": "commons-io:commons-io@2.4" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "javax.xml.bind:jaxb-api@2.2.2" + }, + { + "nodeId": "org.apache.commons:commons-lang3@3.12.0" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-common@2.31" + } + ] + }, + { + "nodeId": "//secrets/integration:main@bazel", + "pkgId": "//secrets/integration:main@bazel", + "deps": [ + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//secred/client:main@bazel" + }, + { + "nodeId": "//secred/common:main@bazel" + }, + { + "nodeId": "//secred/util:main@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//secrets/services:main@bazel" + } + ] + }, + { + "nodeId": "//logging:fluent_bit@bazel", + "pkgId": "//logging:fluent_bit@bazel", + "deps": [ + { + "nodeId": "//logging:ufl@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + } + ] + }, + { + "nodeId": "//service_registry:main@bazel", + "pkgId": "//service_registry:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//google_cloud:main@bazel" + }, + { + "nodeId": "//coil:main@bazel" + }, + { + "nodeId": "//integrations/chartio:main@bazel" + }, + { + "nodeId": "//integrations/google_data_studio:main@bazel" + }, + { + "nodeId": "//integrations/periscope:main@bazel" + }, + { + "nodeId": "//integrations/sigma_computing:main@bazel" + }, + { + "nodeId": "//integrations/sisense:main@bazel" + }, + { + "nodeId": "//integrations/tableau:main@bazel" + }, + { + "nodeId": "//integrations/looker:main@bazel" + }, + { + "nodeId": "//integrations/postgres2020:main@bazel" + }, + { + "nodeId": "//log_appender/cloudwatch:main@bazel" + }, + { + "nodeId": "//log_appender/datadog:main@bazel" + }, + { + "nodeId": "//log_appender/log_analytics:main@bazel" + }, + { + "nodeId": "//log_appender/splunk:main@bazel" + }, + { + "nodeId": "//log_appender/stackdriver:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//secrets/db:main@bazel" + }, + { + "nodeId": "//sources/bridge:main@bazel" + }, + { + "nodeId": "//warehouses/azure:main@bazel" + }, + { + "nodeId": "//warehouses/big_query:main@bazel" + }, + { + "nodeId": "//warehouses/databricks:main@bazel" + }, + { + "nodeId": "//warehouses/mysql:main@bazel" + }, + { + "nodeId": "//warehouses/panoply:main@bazel" + }, + { + "nodeId": "//warehouses/periscope:main@bazel" + }, + { + "nodeId": "//warehouses/postgres:main@bazel" + }, + { + "nodeId": "//warehouses/redshift:main@bazel" + }, + { + "nodeId": "//warehouses/s3_data_lake:main@bazel" + }, + { + "nodeId": "//warehouses/snowflake:main@bazel" + }, + { + "nodeId": "//warehouses/sql_server:main@bazel" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "org.glassfish.hk2.external:jakarta.inject@2.6.1" + }, + { + "nodeId": "//integrations/adjust:main@bazel" + }, + { + "nodeId": "//integrations/adobe_analytics:main@bazel" + }, + { + "nodeId": "//integrations/adobe_analytics_data_feed:main@bazel" + }, + { + "nodeId": "//integrations/adp_workforce_now:main@bazel" + }, + { + "nodeId": "//integrations/adroll:main@bazel" + }, + { + "nodeId": "//integrations/adwords:main@bazel" + }, + { + "nodeId": "//integrations/google_ads:main@bazel" + }, + { + "nodeId": "//integrations/airtable:main@bazel" + }, + { + "nodeId": "//integrations/amazon_ads:main@bazel" + }, + { + "nodeId": "//integrations/amplitude:main@bazel" + }, + { + "nodeId": "//integrations/anaplan:main@bazel" + }, + { + "nodeId": "//integrations/apple_search_ads:main@bazel" + }, + { + "nodeId": "//integrations/appsflyer:main@bazel" + }, + { + "nodeId": "//integrations/asana:main@bazel" + }, + { + "nodeId": "//integrations/aws_cloudtrail:main@bazel" + }, + { + "nodeId": "//integrations/aws_inventory:main@bazel" + }, + { + "nodeId": "//integrations/azure_blob_storage:main@bazel" + }, + { + "nodeId": "//integrations/azure_consumer_file:main@bazel" + }, + { + "nodeId": "//integrations/azure_service_bus:main@bazel" + }, + { + "nodeId": "//integrations/big_commerce:main@bazel" + }, + { + "nodeId": "//integrations/bingads:main@bazel" + }, + { + "nodeId": "//integrations/box:main@bazel" + }, + { + "nodeId": "//integrations/braintree:main@bazel" + }, + { + "nodeId": "//integrations/branch:main@bazel" + }, + { + "nodeId": "//integrations/braze:main@bazel" + }, + { + "nodeId": "//integrations/business_central:main@bazel" + }, + { + "nodeId": "//integrations/cloudfront:main@bazel" + }, + { + "nodeId": "//integrations/coupa:main@bazel" + }, + { + "nodeId": "//integrations/criteo:main@bazel" + }, + { + "nodeId": "//integrations/db2:main@bazel" + }, + { + "nodeId": "//integrations/document:main@bazel" + }, + { + "nodeId": "//integrations/double_click_campaign_manager:main@bazel" + }, + { + "nodeId": "//integrations/dropbox:main@bazel" + }, + { + "nodeId": "//integrations/dummy_postgres:main@bazel" + }, + { + "nodeId": "//integrations/dynamics365:main@bazel" + }, + { + "nodeId": "//integrations/dynamodb:main@bazel" + }, + { + "nodeId": "//integrations/elasticsearch:main@bazel" + }, + { + "nodeId": "//integrations/eloqua:main@bazel" + }, + { + "nodeId": "//integrations/email:main@bazel" + }, + { + "nodeId": "//integrations/facebook:main@bazel" + }, + { + "nodeId": "//integrations/acmecorp_log:main@bazel" + }, + { + "nodeId": "//integrations/freshdesk:main@bazel" + }, + { + "nodeId": "//integrations/freshservice_classic:main@bazel" + }, + { + "nodeId": "//integrations/front:main@bazel" + }, + { + "nodeId": "//integrations/ftp:main@bazel" + }, + { + "nodeId": "//integrations/functions/aws_lambda:main@bazel" + }, + { + "nodeId": "//integrations/functions/azure_function:main@bazel" + }, + { + "nodeId": "//integrations/functions/google_cloud_function:main@bazel" + }, + { + "nodeId": "//integrations/gcs:main@bazel" + }, + { + "nodeId": "//integrations/gainsight_customer_success:main@bazel" + }, + { + "nodeId": "//integrations/gdrive:main@bazel" + }, + { + "nodeId": "//integrations/github:main@bazel" + }, + { + "nodeId": "//integrations/google_ad_manager:main@bazel" + }, + { + "nodeId": "//integrations/google_analytics:main@bazel" + }, + { + "nodeId": "//integrations/google_analytics_4:main@bazel" + }, + { + "nodeId": "//integrations/google_analytics_4_export:main@bazel" + }, + { + "nodeId": "//integrations/google_analytics_360:main@bazel" + }, + { + "nodeId": "//integrations/google_display_and_video_360:main@bazel" + }, + { + "nodeId": "//integrations/google_search_ads_360:main@bazel" + }, + { + "nodeId": "//integrations/google_play:main@bazel" + }, + { + "nodeId": "//integrations/google_search_console:main@bazel" + }, + { + "nodeId": "//integrations/greenhouse:main@bazel" + }, + { + "nodeId": "//integrations/gsheets:main@bazel" + }, + { + "nodeId": "//integrations/heap:main@bazel" + }, + { + "nodeId": "//integrations/height:main@bazel" + }, + { + "nodeId": "//integrations/helpscout:main@bazel" + }, + { + "nodeId": "//integrations/hubspot:main@bazel" + }, + { + "nodeId": "//integrations/instagram:main@bazel" + }, + { + "nodeId": "//integrations/intercom:main@bazel" + }, + { + "nodeId": "//integrations/iterable:main@bazel" + }, + { + "nodeId": "//integrations/itunes_connect:main@bazel" + }, + { + "nodeId": "//integrations/jira:main@bazel" + }, + { + "nodeId": "//integrations/kafka:main@bazel" + }, + { + "nodeId": "//integrations/kinesis:main@bazel" + }, + { + "nodeId": "//integrations/klaviyo:main@bazel" + }, + { + "nodeId": "//integrations/kustomer:main@bazel" + }, + { + "nodeId": "//integrations/lever:main@bazel" + }, + { + "nodeId": "//integrations/lightspeed_retail:main@bazel" + }, + { + "nodeId": "//integrations/linkedin:main@bazel" + }, + { + "nodeId": "//integrations/mailchimp:main@bazel" + }, + { + "nodeId": "//integrations/mandrill:main@bazel" + }, + { + "nodeId": "//integrations/marin:main@bazel" + }, + { + "nodeId": "//integrations/marketo:main@bazel" + }, + { + "nodeId": "//integrations/mavenlink:main@bazel" + }, + { + "nodeId": "//integrations/medallia:main@bazel" + }, + { + "nodeId": "//integrations/microsoft_lists:main@bazel" + }, + { + "nodeId": "//integrations/mixpanel:main@bazel" + }, + { + "nodeId": "//integrations/mongo:main@bazel" + }, + { + "nodeId": "//integrations/mysql:main@bazel" + }, + { + "nodeId": "//integrations/netsuite:main@bazel" + }, + { + "nodeId": "//integrations/optimizely:main@bazel" + }, + { + "nodeId": "//integrations/oracle_cloud_apps_cx:main@bazel" + }, + { + "nodeId": "//integrations/oracle_cloud_apps_erp_scm:main@bazel" + }, + { + "nodeId": "//integrations/oracle_fusion_cloud_apps:main@bazel" + }, + { + "nodeId": "//integrations/oracle:main@bazel" + }, + { + "nodeId": "//integrations/oracle_hva:main@bazel" + }, + { + "nodeId": "//integrations/oracle_hva2:main@bazel" + }, + { + "nodeId": "//integrations/outbrain:main@bazel" + }, + { + "nodeId": "//integrations/outreach:main@bazel" + }, + { + "nodeId": "//integrations/pardot:main@bazel" + }, + { + "nodeId": "//integrations/paypal:main@bazel" + }, + { + "nodeId": "//integrations/pendo:main@bazel" + }, + { + "nodeId": "//integrations/pinterest:main@bazel" + }, + { + "nodeId": "//integrations/pipedrive:main@bazel" + }, + { + "nodeId": "//integrations/postgres:main@bazel" + }, + { + "nodeId": "//integrations/qualtrics:main@bazel" + }, + { + "nodeId": "//integrations/quickbooks:main@bazel" + }, + { + "nodeId": "//integrations/recharge:main@bazel" + }, + { + "nodeId": "//integrations/recurly:main@bazel" + }, + { + "nodeId": "//integrations/reddit:main@bazel" + }, + { + "nodeId": "//integrations/s3:main@bazel" + }, + { + "nodeId": "//integrations/sage_intacct:main@bazel" + }, + { + "nodeId": "//integrations/sailthru:main@bazel" + }, + { + "nodeId": "//integrations/salesforce:main@bazel" + }, + { + "nodeId": "//integrations/salesforce_commerce_cloud:main@bazel" + }, + { + "nodeId": "//integrations/salesforce_marketing_cloud:main@bazel" + }, + { + "nodeId": "//integrations/sap_business_bydesign:main@bazel" + }, + { + "nodeId": "//integrations/sap_concur:main@bazel" + }, + { + "nodeId": "//integrations/sap_s4hana:main@bazel" + }, + { + "nodeId": "//integrations/segment:main@bazel" + }, + { + "nodeId": "//integrations/sendgrid:main@bazel" + }, + { + "nodeId": "//integrations/service_now:main@bazel" + }, + { + "nodeId": "//integrations/sftp:main@bazel" + }, + { + "nodeId": "//integrations/shopify:main@bazel" + }, + { + "nodeId": "//integrations/snapchat_ads:main@bazel" + }, + { + "nodeId": "//integrations/snowplow:main@bazel" + }, + { + "nodeId": "//integrations/snowflake:main@bazel" + }, + { + "nodeId": "//integrations/splunk:main@bazel" + }, + { + "nodeId": "//integrations/sql_server:main@bazel" + }, + { + "nodeId": "//integrations/square:main@bazel" + }, + { + "nodeId": "//integrations/stripe:main@bazel" + }, + { + "nodeId": "//integrations/survey_monkey:main@bazel" + }, + { + "nodeId": "//integrations/spotify_ads:main@bazel" + }, + { + "nodeId": "//integrations/taboola:main@bazel" + }, + { + "nodeId": "//integrations/the_trade_desk:main@bazel" + }, + { + "nodeId": "//integrations/tiktok_ads:main@bazel" + }, + { + "nodeId": "//integrations/twilio:main@bazel" + }, + { + "nodeId": "//integrations/twitter:main@bazel" + }, + { + "nodeId": "//integrations/typeform:main@bazel" + }, + { + "nodeId": "//integrations/uservoice:main@bazel" + }, + { + "nodeId": "//integrations/webhooks:main@bazel" + }, + { + "nodeId": "//integrations/wordpress:main@bazel" + }, + { + "nodeId": "//integrations/workday:main@bazel" + }, + { + "nodeId": "//integrations/workday_hcm:main@bazel" + }, + { + "nodeId": "//integrations/xero:main@bazel" + }, + { + "nodeId": "//integrations/yahoo_gemini:main@bazel" + }, + { + "nodeId": "//integrations/youtube_analytics:main@bazel" + }, + { + "nodeId": "//integrations/zendesk:main@bazel" + }, + { + "nodeId": "//integrations/zendesk_chat:main@bazel" + }, + { + "nodeId": "//integrations/zendesk_sell:main@bazel" + }, + { + "nodeId": "//integrations/zendesk_sunshine:main@bazel" + }, + { + "nodeId": "//integrations/zoho_crm:main@bazel" + }, + { + "nodeId": "//integrations/zuora:main@bazel" + }, + { + "nodeId": "//integrations/coil_connectors:main@bazel" + }, + { + "nodeId": "//integrations/delighted:main@bazel" + }, + { + "nodeId": "//sources/delighted:main@bazel" + } + ] + }, + { + "nodeId": "//coil:main@bazel", + "pkgId": "//coil:main@bazel", + "deps": [ + { + "nodeId": "//coil:coil_framework_java@bazel" + }, + { + "nodeId": "//common:main@bazel" + }, + { + "nodeId": "//core_implementation:main@bazel" + }, + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//core_mocks:main@bazel" + }, + { + "nodeId": "//core_utils:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//integrations/coil_connectors:main@bazel" + }, + { + "nodeId": "//integrations/isolated_endpoint_sync:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//secrets/integration:main@bazel" + }, + { + "nodeId": "//secrets/system:main@bazel" + }, + { + "nodeId": "//sources/types:main@bazel" + }, + { + "nodeId": "//util:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "//webhook/client:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.dataformat:jackson-dataformat-yaml@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "com.jayway.jsonpath:json-path@2.4.0" + }, + { + "nodeId": "io.projectreactor:reactor-core@3.4.11" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "lambdaisland:deep-diff2@2.0.108" + }, + { + "nodeId": "org.apache.commons:commons-collections4@4.1" + }, + { + "nodeId": "org.apache.commons:commons-lang3@3.12.0" + }, + { + "nodeId": "org.apache.httpcomponents:httpclient@4.5.13" + }, + { + "nodeId": "org.apache.httpcomponents:httpcore@4.4.13" + }, + { + "nodeId": "org.clojure:clojure@1.10.1" + }, + { + "nodeId": "org.eclipse.jetty:jetty-util@9.4.40.v20210413" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-common@2.31" + }, + { + "nodeId": "org.jooq:jool-java-8@0.9.14" + } + ] + }, + { + "nodeId": "//coil:coil_framework_java@bazel", + "pkgId": "//coil:coil_framework_java@bazel", + "deps": [ + { + "nodeId": "//coil:coil_framework_clojure@bazel" + }, + { + "nodeId": "//integrations/coil_connectors:main@bazel" + } + ] + }, + { + "nodeId": "//coil:coil_framework_clojure@bazel", + "pkgId": "//coil:coil_framework_clojure@bazel", + "deps": [ + { + "nodeId": "//integrations/coil_connectors:main@bazel" + }, + { + "nodeId": "org.clojure:clojure@1.10.1" + }, + { + "nodeId": "org.clojure:core.specs.alpha@0.2.56" + }, + { + "nodeId": "org.clojure:data.json@1.1.0" + } + ] + }, + { + "nodeId": "//integrations/coil_connectors:main@bazel", + "pkgId": "//integrations/coil_connectors:main@bazel", + "deps": [ + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + } + ] + }, + { + "nodeId": "org.clojure:clojure@1.10.1", + "pkgId": "org.clojure:clojure@1.10.1", + "deps": [] + }, + { + "nodeId": "org.clojure:core.specs.alpha@0.2.56", + "pkgId": "org.clojure:core.specs.alpha@0.2.56", + "deps": [] + }, + { + "nodeId": "org.clojure:data.json@1.1.0", + "pkgId": "org.clojure:data.json@1.1.0", + "deps": [ + { + "nodeId": "org.clojure:clojure@1.10.1" + } + ] + }, + { + "nodeId": "//webhook/client:main@bazel", + "pkgId": "//webhook/client:main@bazel", + "deps": [ + { + "nodeId": "//cloud_storage:main@bazel" + }, + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//crypto:main@bazel" + }, + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//globals:main@bazel" + }, + { + "nodeId": "//google_cloud:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//markdown:main@bazel" + }, + { + "nodeId": "//secred/client:main@bazel" + }, + { + "nodeId": "//secred/common:main@bazel" + }, + { + "nodeId": "//secred/util:main@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//secrets/integration:main@bazel" + }, + { + "nodeId": "//secrets/services:main@bazel" + }, + { + "nodeId": "//util:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "//webhook/storage:main@bazel" + }, + { + "nodeId": "//webhook/utils:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.google.api.grpc:proto-google-cloud-monitoring-v3@1.75.0" + }, + { + "nodeId": "com.google.cloud:google-cloud-storage@1.108.0" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "commons-lang:commons-lang@2.6" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + } + ] + }, + { + "nodeId": "//webhook/storage:main@bazel", + "pkgId": "//webhook/storage:main@bazel", + "deps": [ + { + "nodeId": "//aws:main@bazel" + }, + { + "nodeId": "//cloud_storage:main@bazel" + }, + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//crypto:main@bazel" + }, + { + "nodeId": "//database:enums@bazel" + }, + { + "nodeId": "//globals:main@bazel" + }, + { + "nodeId": "//google_cloud:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//secrets/services:main@bazel" + }, + { + "nodeId": "//secrets/system:main@bazel" + }, + { + "nodeId": "//shaded_dependencies/azure:azure_identity_shaded@bazel" + }, + { + "nodeId": "//shaded_dependencies/azure:azure_storage_blob_shaded@bazel" + }, + { + "nodeId": "//util:main@bazel" + }, + { + "nodeId": "//utils/os:main@bazel" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-core@1.12.84" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-s3@1.12.84" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.google.api:gax@2.3.0" + }, + { + "nodeId": "com.google.auth:google-auth-library-oauth2-http@0.22.0" + }, + { + "nodeId": "com.google.cloud:google-cloud-storage@1.108.0" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "org.glassfish.hk2.external:jakarta.inject@2.6.1" + } + ] + }, + { + "nodeId": "//webhook/utils:main@bazel", + "pkgId": "//webhook/utils:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//core_interfaces:pojos@bazel" + }, + { + "nodeId": "//database:enums@bazel" + }, + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//database/exceptions:main@bazel" + }, + { + "nodeId": "//dockerized/postgres:main@bazel" + }, + { + "nodeId": "//globals:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//logging:main@bazel" + }, + { + "nodeId": "//utils/exceptions:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "com.mchange:c3p0@0.9.5.1" + }, + { + "nodeId": "io.kubernetes:client-java@3.0.0-beta2" + }, + { + "nodeId": "io.kubernetes:client-java-api@3.0.0-beta2" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.glassfish.hk2.external:jakarta.inject@2.6.1" + } + ] + }, + { + "nodeId": "//core_interfaces:pojos@bazel", + "pkgId": "//core_interfaces:pojos@bazel", + "deps": [ + { + "nodeId": "//database:credential_models@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//utils/validations:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "org.apache.commons:commons-lang3@3.12.0" + } + ] + }, + { + "nodeId": "io.kubernetes:client-java@3.0.0-beta2", + "pkgId": "io.kubernetes:client-java@3.0.0-beta2", + "deps": [ + { + "nodeId": "org.slf4j:slf4j-api@1.7.13" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "io.kubernetes:client-java-api@3.0.0-beta2" + }, + { + "nodeId": "com.microsoft.azure:adal4j@1.6.3" + }, + { + "nodeId": "org.apache.commons:commons-lang3@3.12.0" + }, + { + "nodeId": "com.squareup.okhttp:okhttp-ws@2.7.5" + }, + { + "nodeId": "org.bouncycastle:bcprov-ext-jdk15on@1.70" + }, + { + "nodeId": "org.bouncycastle:bcpkix-jdk15on@1.70" + }, + { + "nodeId": "commons-codec:commons-codec@1.10" + }, + { + "nodeId": "org.yaml:snakeyaml@1.23" + }, + { + "nodeId": "io.kubernetes:client-java-proto@3.0.0" + }, + { + "nodeId": "com.google.protobuf:protobuf-java@3.18.2" + } + ] + }, + { + "nodeId": "io.kubernetes:client-java-api@3.0.0-beta2", + "pkgId": "io.kubernetes:client-java-api@3.0.0-beta2", + "deps": [ + { + "nodeId": "com.google.code.gson:gson@2.9.0" + }, + { + "nodeId": "org.apache.commons:commons-lang3@3.12.0" + }, + { + "nodeId": "com.squareup.okhttp:okhttp@2.7.5" + }, + { + "nodeId": "org.joda:joda-convert@1.2" + }, + { + "nodeId": "com.squareup.okhttp:logging-interceptor@2.7.5" + }, + { + "nodeId": "io.sundr:builder-annotations@0.8.0" + }, + { + "nodeId": "joda-time:joda-time@2.9.2" + }, + { + "nodeId": "io.swagger:swagger-annotations@1.6.0" + } + ] + }, + { + "nodeId": "com.squareup.okhttp:okhttp@2.7.5", + "pkgId": "com.squareup.okhttp:okhttp@2.7.5", + "deps": [ + { + "nodeId": "com.squareup.okio:okio@1.13.0" + } + ] + }, + { + "nodeId": "com.squareup.okio:okio@1.13.0", + "pkgId": "com.squareup.okio:okio@1.13.0", + "deps": [] + }, + { + "nodeId": "org.joda:joda-convert@1.2", + "pkgId": "org.joda:joda-convert@1.2", + "deps": [] + }, + { + "nodeId": "com.squareup.okhttp:logging-interceptor@2.7.5", + "pkgId": "com.squareup.okhttp:logging-interceptor@2.7.5", + "deps": [ + { + "nodeId": "com.squareup.okhttp:okhttp@2.7.5" + } + ] + }, + { + "nodeId": "io.sundr:builder-annotations@0.8.0", + "pkgId": "io.sundr:builder-annotations@0.8.0", + "deps": [ + { + "nodeId": "io.sundr:sundr-codegen@0.8.0" + }, + { + "nodeId": "io.sundr:sundr-core@0.8.0" + } + ] + }, + { + "nodeId": "io.sundr:sundr-codegen@0.8.0", + "pkgId": "io.sundr:sundr-codegen@0.8.0", + "deps": [] + }, + { + "nodeId": "io.sundr:sundr-core@0.8.0", + "pkgId": "io.sundr:sundr-core@0.8.0", + "deps": [] + }, + { + "nodeId": "io.swagger:swagger-annotations@1.6.0", + "pkgId": "io.swagger:swagger-annotations@1.6.0", + "deps": [] + }, + { + "nodeId": "com.microsoft.azure:adal4j@1.6.3", + "pkgId": "com.microsoft.azure:adal4j@1.6.3", + "deps": [ + { + "nodeId": "com.nimbusds:oauth2-oidc-sdk@5.64.4" + }, + { + "nodeId": "org.slf4j:slf4j-api@1.7.13" + }, + { + "nodeId": "com.google.code.gson:gson@2.9.0" + }, + { + "nodeId": "org.apache.commons:commons-lang3@3.12.0" + }, + { + "nodeId": "commons-codec:commons-codec@1.10" + } + ] + }, + { + "nodeId": "com.nimbusds:oauth2-oidc-sdk@5.64.4", + "pkgId": "com.nimbusds:oauth2-oidc-sdk@5.64.4", + "deps": [ + { + "nodeId": "com.github.stephenc.jcip:jcip-annotations@1.0-1" + }, + { + "nodeId": "com.sun.mail:javax.mail@1.5.4" + }, + { + "nodeId": "com.nimbusds:nimbus-jose-jwt@5.5" + }, + { + "nodeId": "com.nimbusds:lang-tag@1.4.3" + }, + { + "nodeId": "net.minidev:json-smart@2.3" + } + ] + }, + { + "nodeId": "com.github.stephenc.jcip:jcip-annotations@1.0-1", + "pkgId": "com.github.stephenc.jcip:jcip-annotations@1.0-1", + "deps": [] + }, + { + "nodeId": "com.sun.mail:javax.mail@1.5.4", + "pkgId": "com.sun.mail:javax.mail@1.5.4", + "deps": [ + { + "nodeId": "javax.activation:activation@1.1" + } + ] + }, + { + "nodeId": "com.nimbusds:nimbus-jose-jwt@5.5", + "pkgId": "com.nimbusds:nimbus-jose-jwt@5.5", + "deps": [ + { + "nodeId": "com.github.stephenc.jcip:jcip-annotations@1.0-1" + }, + { + "nodeId": "net.minidev:json-smart@2.3" + } + ] + }, + { + "nodeId": "com.nimbusds:lang-tag@1.4.3", + "pkgId": "com.nimbusds:lang-tag@1.4.3", + "deps": [ + { + "nodeId": "net.minidev:json-smart@2.3" + } + ] + }, + { + "nodeId": "com.squareup.okhttp:okhttp-ws@2.7.5", + "pkgId": "com.squareup.okhttp:okhttp-ws@2.7.5", + "deps": [ + { + "nodeId": "com.squareup.okhttp:okhttp@2.7.5" + } + ] + }, + { + "nodeId": "io.kubernetes:client-java-proto@3.0.0", + "pkgId": "io.kubernetes:client-java-proto@3.0.0", + "deps": [ + { + "nodeId": "com.google.protobuf:protobuf-java@3.18.2" + } + ] + }, + { + "nodeId": "lambdaisland:deep-diff2@2.0.108", + "pkgId": "lambdaisland:deep-diff2@2.0.108", + "deps": [ + { + "nodeId": "fipp:fipp@0.6.23" + }, + { + "nodeId": "lambdaisland:clj-diff@1.1.58" + }, + { + "nodeId": "mvxcvi:arrangement@1.2.1" + }, + { + "nodeId": "org.clojure:core.rrb-vector@0.1.1" + } + ] + }, + { + "nodeId": "fipp:fipp@0.6.23", + "pkgId": "fipp:fipp@0.6.23", + "deps": [ + { + "nodeId": "org.clojure:clojure@1.10.1" + }, + { + "nodeId": "org.clojure:core.rrb-vector@0.1.1" + } + ] + }, + { + "nodeId": "org.clojure:core.rrb-vector@0.1.1", + "pkgId": "org.clojure:core.rrb-vector@0.1.1", + "deps": [ + { + "nodeId": "org.clojure:clojure@1.10.1" + } + ] + }, + { + "nodeId": "lambdaisland:clj-diff@1.1.58", + "pkgId": "lambdaisland:clj-diff@1.1.58", + "deps": [] + }, + { + "nodeId": "mvxcvi:arrangement@1.2.1", + "pkgId": "mvxcvi:arrangement@1.2.1", + "deps": [] + }, + { + "nodeId": "org.apache.commons:commons-collections4@4.1", + "pkgId": "org.apache.commons:commons-collections4@4.1", + "deps": [] + }, + { + "nodeId": "//integrations/chartio:main@bazel", + "pkgId": "//integrations/chartio:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//services:main@bazel" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-s3@1.12.84" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.api-client:google-api-client@1.31.1" + }, + { + "nodeId": "com.google.apis:google-api-services-bigquery@v2-rev459-1.25.0" + }, + { + "nodeId": "com.google.apis:google-api-services-cloudresourcemanager@v1-rev495-1.23.0" + }, + { + "nodeId": "com.google.apis:google-api-services-iam@v1-rev193-1.22.0" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "com.google.oauth-client:google-oauth-client@1.23.0" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + } + ] + }, + { + "nodeId": "//integrations/google_data_studio:main@bazel", + "pkgId": "//integrations/google_data_studio:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//secrets/system:main@bazel" + }, + { + "nodeId": "//services:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.api-client:google-api-client@1.31.1" + }, + { + "nodeId": "com.google.apis:google-api-services-bigquery@v2-rev459-1.25.0" + }, + { + "nodeId": "com.google.apis:google-api-services-cloudresourcemanager@v1-rev495-1.23.0" + }, + { + "nodeId": "com.google.apis:google-api-services-iam@v1-rev193-1.22.0" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "com.google.oauth-client:google-oauth-client@1.23.0" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + } + ] + }, + { + "nodeId": "//integrations/periscope:main@bazel", + "pkgId": "//integrations/periscope:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//services:main@bazel" + }, + { + "nodeId": "//warehouses/common:tasks@bazel" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-s3@1.12.84" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.google.api-client:google-api-client@1.31.1" + }, + { + "nodeId": "com.google.apis:google-api-services-bigquery@v2-rev459-1.25.0" + }, + { + "nodeId": "com.google.apis:google-api-services-iam@v1-rev193-1.22.0" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "com.google.oauth-client:google-oauth-client@1.23.0" + } + ] + }, + { + "nodeId": "//warehouses/common:tasks@bazel", + "pkgId": "//warehouses/common:tasks@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//markdown:main@bazel" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + } + ] + }, + { + "nodeId": "//integrations/sigma_computing:main@bazel", + "pkgId": "//integrations/sigma_computing:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//secrets/system:main@bazel" + }, + { + "nodeId": "//services:main@bazel" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-s3@1.12.84" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.api-client:google-api-client@1.31.1" + }, + { + "nodeId": "com.google.apis:google-api-services-bigquery@v2-rev459-1.25.0" + }, + { + "nodeId": "com.google.apis:google-api-services-cloudresourcemanager@v1-rev495-1.23.0" + }, + { + "nodeId": "com.google.apis:google-api-services-iam@v1-rev193-1.22.0" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "com.google.oauth-client:google-oauth-client@1.23.0" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + } + ] + }, + { + "nodeId": "//integrations/sisense:main@bazel", + "pkgId": "//integrations/sisense:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//secrets/system:main@bazel" + }, + { + "nodeId": "//services:main@bazel" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-s3@1.12.84" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.google.api-client:google-api-client@1.31.1" + }, + { + "nodeId": "com.google.apis:google-api-services-bigquery@v2-rev459-1.25.0" + }, + { + "nodeId": "com.google.apis:google-api-services-iam@v1-rev193-1.22.0" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "com.google.oauth-client:google-oauth-client@1.23.0" + } + ] + }, + { + "nodeId": "//integrations/tableau:main@bazel", + "pkgId": "//integrations/tableau:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//secrets/system:main@bazel" + }, + { + "nodeId": "//services:main@bazel" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-s3@1.12.84" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.api-client:google-api-client@1.31.1" + }, + { + "nodeId": "com.google.apis:google-api-services-bigquery@v2-rev459-1.25.0" + }, + { + "nodeId": "com.google.apis:google-api-services-cloudresourcemanager@v1-rev495-1.23.0" + }, + { + "nodeId": "com.google.apis:google-api-services-iam@v1-rev193-1.22.0" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "com.google.oauth-client:google-oauth-client@1.23.0" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + } + ] + }, + { + "nodeId": "//integrations/looker:main@bazel", + "pkgId": "//integrations/looker:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//services:main@bazel" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-s3@1.12.84" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.google.api-client:google-api-client@1.31.1" + }, + { + "nodeId": "com.google.apis:google-api-services-bigquery@v2-rev459-1.25.0" + }, + { + "nodeId": "com.google.apis:google-api-services-iam@v1-rev193-1.22.0" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "com.google.oauth-client:google-oauth-client@1.23.0" + } + ] + }, + { + "nodeId": "//integrations/postgres2020:main@bazel", + "pkgId": "//integrations/postgres2020:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//core_interfaces:warning@bazel" + }, + { + "nodeId": "//crypto:main@bazel" + }, + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//feature_flag:flags@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//geo:main@bazel" + }, + { + "nodeId": "//globals:main@bazel" + }, + { + "nodeId": "//integrations/configuration_tracker:main@bazel" + }, + { + "nodeId": "//integrations/db:main@bazel" + }, + { + "nodeId": "//integrations/speed_test:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//logging:main@bazel" + }, + { + "nodeId": "//markdown:main@bazel" + }, + { + "nodeId": "//metal:main@bazel" + }, + { + "nodeId": "//micrometer:main@bazel" + }, + { + "nodeId": "//port_forwarder:main@bazel" + }, + { + "nodeId": "//schema_migration:schema_migration_info@bazel" + }, + { + "nodeId": "//secred/util:main@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//secrets/services:main@bazel" + }, + { + "nodeId": "//services:ab_tests@bazel" + }, + { + "nodeId": "//services/resync:main@bazel" + }, + { + "nodeId": "//ssh:main@bazel" + }, + { + "nodeId": "//teleport:main@bazel" + }, + { + "nodeId": "//util:main@bazel" + }, + { + "nodeId": "//utils/binary:main@bazel" + }, + { + "nodeId": "//utils/exceptions:main@bazel" + }, + { + "nodeId": "//utils/operations:main@bazel" + }, + { + "nodeId": "//utils/serializers:main@bazel" + }, + { + "nodeId": "//utils/sync_statistics:main@bazel" + }, + { + "nodeId": "//utils/threading:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "//verification:main@bazel" + }, + { + "nodeId": "@com_fasterxml_jackson_dataformat_jackson_dataformat_csv//:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.google.cloud:google-cloud-core@1.48.0" + }, + { + "nodeId": "com.google.cloud:google-cloud-logging@1.19.0" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.code.gson:gson@2.9.0" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "com.intellij:annotations@12.0" + }, + { + "nodeId": "commons-codec:commons-codec@1.10" + }, + { + "nodeId": "commons-lang:commons-lang@2.6" + }, + { + "nodeId": "io.micrometer:micrometer-core@1.5.3" + }, + { + "nodeId": "io.netty:netty-buffer@4.1.50.Final" + }, + { + "nodeId": "org.apache.commons:commons-lang3@3.12.0" + }, + { + "nodeId": "org.postgresql:postgresql@42.3.3" + } + ] + }, + { + "nodeId": "//geo:main@bazel", + "pkgId": "//geo:main@bazel", + "deps": [ + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//utils/binary:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + } + ] + }, + { + "nodeId": "//utils/binary:main@bazel", + "pkgId": "//utils/binary:main@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/configuration_tracker:main@bazel", + "pkgId": "//integrations/configuration_tracker:main@bazel", + "deps": [ + { + "nodeId": "//google_cloud:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//utils/exceptions:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.google.apis:google-api-services-bigquery@v2-rev459-1.25.0" + }, + { + "nodeId": "com.google.auth:google-auth-library-oauth2-http@0.22.0" + }, + { + "nodeId": "com.google.cloud:google-cloud-bigquery@1.48.0" + }, + { + "nodeId": "com.google.cloud:google-cloud-core@1.48.0" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "commons-codec:commons-codec@1.10" + }, + { + "nodeId": "commons-lang:commons-lang@2.6" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.jeasy:easy-rules-core@4.1.0" + } + ] + }, + { + "nodeId": "com.google.cloud:google-cloud-bigquery@1.48.0", + "pkgId": "com.google.cloud:google-cloud-bigquery@1.48.0", + "deps": [ + { + "nodeId": "com.google.apis:google-api-services-bigquery@v2-rev459-1.25.0" + }, + { + "nodeId": "com.google.auto.value:auto-value@1.5.3" + }, + { + "nodeId": "com.google.cloud:google-cloud-core@1.48.0" + }, + { + "nodeId": "com.google.cloud:google-cloud-core-http@1.48.0" + } + ] + }, + { + "nodeId": "com.google.auto.value:auto-value@1.5.3", + "pkgId": "com.google.auto.value:auto-value@1.5.3", + "deps": [] + }, + { + "nodeId": "org.jeasy:easy-rules-core@4.1.0", + "pkgId": "org.jeasy:easy-rules-core@4.1.0", + "deps": [ + { + "nodeId": "org.slf4j:slf4j-api@1.7.13" + } + ] + }, + { + "nodeId": "//services:ab_tests@bazel", + "pkgId": "//services:ab_tests@bazel", + "deps": [ + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "org.glassfish.hk2.external:jakarta.inject@2.6.1" + } + ] + }, + { + "nodeId": "//teleport:main@bazel", + "pkgId": "//teleport:main@bazel", + "deps": [ + { + "nodeId": "//cloud_storage:main@bazel" + }, + { + "nodeId": "//common:main@bazel" + }, + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//crypto:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//google_cloud:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:acmecorp_logger@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//micrometer:main@bazel" + }, + { + "nodeId": "//shaded_dependencies/azure:azure_identity_shaded@bazel" + }, + { + "nodeId": "//shaded_dependencies/azure:azure_storage_blob_shaded@bazel" + }, + { + "nodeId": "//utils/exceptions:main@bazel" + }, + { + "nodeId": "//utils/fsort:main@bazel" + }, + { + "nodeId": "//utils/os:main@bazel" + }, + { + "nodeId": "//utils/serializers:main@bazel" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-core@1.12.84" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-s3@1.12.84" + }, + { + "nodeId": "com.google.cloud:google-cloud-core@1.48.0" + }, + { + "nodeId": "com.google.cloud:google-cloud-storage@1.108.0" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "commons-codec:commons-codec@1.10" + }, + { + "nodeId": "io.micrometer:micrometer-core@1.5.3" + }, + { + "nodeId": "io.netty:netty-buffer@4.1.50.Final" + }, + { + "nodeId": "org.apache.velocity:velocity@1.7" + } + ] + }, + { + "nodeId": "//utils/operations:main@bazel", + "pkgId": "//utils/operations:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "com.intellij:annotations@12.0" + } + ] + }, + { + "nodeId": "//sources/bridge:main@bazel", + "pkgId": "//sources/bridge:main@bazel", + "deps": [ + { + "nodeId": "//api:connector_config_formatter@bazel" + }, + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//services/resync:main@bazel" + }, + { + "nodeId": "//sources/form:main@bazel" + }, + { + "nodeId": "//sources/types:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "org.apache.commons:commons-lang3@3.12.0" + }, + { + "nodeId": "org.jooq:jool-java-8@0.9.14" + } + ] + }, + { + "nodeId": "//api:connector_config_formatter@bazel", + "pkgId": "//api:connector_config_formatter@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//core_interfaces:pojos@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//sources/form:main@bazel" + }, + { + "nodeId": "//sources/types:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + } + ] + }, + { + "nodeId": "//sources/form:main@bazel", + "pkgId": "//sources/form:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "org.apache.commons:commons-lang3@3.12.0" + } + ] + }, + { + "nodeId": "//warehouses/azure:main@bazel", + "pkgId": "//warehouses/azure:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//crypto:main@bazel" + }, + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//dynamo:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//heartbeat:lite@bazel" + }, + { + "nodeId": "//integrations/db:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//markdown:main@bazel" + }, + { + "nodeId": "//port_forwarder:azure@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//secrets/system:main@bazel" + }, + { + "nodeId": "//ssh:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "//warehouses/common:feature_flags@bazel" + }, + { + "nodeId": "//warehouses/common:main@bazel" + }, + { + "nodeId": "//warehouses/common:staging_azure@bazel" + }, + { + "nodeId": "//warehouses/common:tasks@bazel" + }, + { + "nodeId": "//warehouses/common-local:writer_avro_base@bazel" + }, + { + "nodeId": "//warehouses/common-local:writer_base@bazel" + }, + { + "nodeId": "//warehouses/common-local:writer_parquet@bazel" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "com.google.protobuf:protobuf-java@3.18.2" + }, + { + "nodeId": "org.apache.avro:avro@1.11.0" + }, + { + "nodeId": "org.apache.commons:commons-lang3@3.12.0" + }, + { + "nodeId": "org.apache.parquet:parquet-common@1.12.2" + } + ] + }, + { + "nodeId": "//port_forwarder:azure@bazel", + "pkgId": "//port_forwarder:azure@bazel", + "deps": [ + { + "nodeId": "com.microsoft.sqlserver:mssql-jdbc@9.4.0.jre11" + }, + { + "nodeId": "//aws:instance_id@bazel" + }, + { + "nodeId": "//dynamo:main@bazel" + }, + { + "nodeId": "//database:postgresql_jdbc_fix@bazel" + }, + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logging:main@bazel" + }, + { + "nodeId": "//globals:main@bazel" + }, + { + "nodeId": "@jsch_patched//:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//ssh:main@bazel" + }, + { + "nodeId": "//util:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.eclipse.jetty:jetty-server@9.4.40.v20210413" + }, + { + "nodeId": "org.eclipse.jetty:jetty-servlet@9.4.40.v20210413" + }, + { + "nodeId": "org.glassfish.jersey.containers:jersey-container-servlet-core@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-server@2.31" + }, + { + "nodeId": "org.bouncycastle:bcpkix-jdk15on@1.70" + } + ] + }, + { + "nodeId": "//warehouses/common-local:writer_parquet@bazel", + "pkgId": "//warehouses/common-local:writer_parquet@bazel", + "deps": [ + { + "nodeId": "//warehouses/common-local:writer_avro_base@bazel" + }, + { + "nodeId": "//warehouses/common-local:writer_base@bazel" + }, + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//warehouses/common:feature_flags@bazel" + }, + { + "nodeId": "org.apache.avro:avro@1.11.0" + }, + { + "nodeId": "org.apache.hadoop:hadoop-common@2.7.7" + }, + { + "nodeId": "org.apache.hadoop:hadoop-mapreduce-client-core@2.7.7" + }, + { + "nodeId": "org.apache.parquet:parquet-avro@1.12.2" + }, + { + "nodeId": "org.apache.parquet:parquet-column@1.12.2" + }, + { + "nodeId": "org.apache.parquet:parquet-common@1.12.2" + }, + { + "nodeId": "org.apache.parquet:parquet-hadoop@1.12.2" + } + ] + }, + { + "nodeId": "org.apache.hadoop:hadoop-common@2.7.7", + "pkgId": "org.apache.hadoop:hadoop-common@2.7.7", + "deps": [ + { + "nodeId": "org.apache.htrace:htrace-core@3.1.0-incubating" + }, + { + "nodeId": "xmlenc:xmlenc@0.52" + }, + { + "nodeId": "org.mortbay.jetty:jetty@6.1.26" + }, + { + "nodeId": "commons-collections:commons-collections@3.2.2" + }, + { + "nodeId": "commons-logging:commons-logging@1.2" + }, + { + "nodeId": "net.java.dev.jets3t:jets3t@0.9.0" + }, + { + "nodeId": "org.slf4j:slf4j-api@1.7.13" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "org.codehaus.jackson:jackson-mapper-asl@1.9.13" + }, + { + "nodeId": "org.apache.curator:curator-client@2.7.1" + }, + { + "nodeId": "com.jcraft:jsch@0.1.54" + }, + { + "nodeId": "commons-io:commons-io@2.4" + }, + { + "nodeId": "com.sun.jersey:jersey-json@1.13" + }, + { + "nodeId": "commons-lang:commons-lang@2.6" + }, + { + "nodeId": "com.google.code.gson:gson@2.9.0" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "log4j:log4j@1.2.17" + }, + { + "nodeId": "org.mortbay.jetty:jetty-sslengine@6.1.26" + }, + { + "nodeId": "commons-configuration:commons-configuration@1.10" + }, + { + "nodeId": "org.apache.avro:avro@1.11.0" + }, + { + "nodeId": "org.mortbay.jetty:jetty-util@6.1.26" + }, + { + "nodeId": "org.apache.commons:commons-math3@3.6.1" + }, + { + "nodeId": "commons-cli:commons-cli@1.3.1" + }, + { + "nodeId": "org.codehaus.jackson:jackson-core-asl@1.9.13" + }, + { + "nodeId": "org.apache.zookeeper:zookeeper@3.4.6" + }, + { + "nodeId": "org.apache.hadoop:hadoop-auth@2.7.7" + }, + { + "nodeId": "commons-codec:commons-codec@1.10" + }, + { + "nodeId": "com.sun.jersey:jersey-core@1.13" + }, + { + "nodeId": "org.apache.commons:commons-compress@1.16" + }, + { + "nodeId": "javax.servlet.jsp:jsp-api@2.1" + }, + { + "nodeId": "commons-net:commons-net@3.3" + }, + { + "nodeId": "org.apache.curator:curator-recipes@2.7.1" + }, + { + "nodeId": "commons-httpclient:commons-httpclient@3.1" + }, + { + "nodeId": "javax.servlet:servlet-api@2.5" + }, + { + "nodeId": "com.sun.jersey:jersey-server@1.9" + }, + { + "nodeId": "org.apache.hadoop:hadoop-annotations@2.7.7" + }, + { + "nodeId": "com.google.protobuf:protobuf-java@3.18.2" + } + ] + }, + { + "nodeId": "org.apache.htrace:htrace-core@3.1.0-incubating", + "pkgId": "org.apache.htrace:htrace-core@3.1.0-incubating", + "deps": [] + }, + { + "nodeId": "xmlenc:xmlenc@0.52", + "pkgId": "xmlenc:xmlenc@0.52", + "deps": [] + }, + { + "nodeId": "org.mortbay.jetty:jetty@6.1.26", + "pkgId": "org.mortbay.jetty:jetty@6.1.26", + "deps": [ + { + "nodeId": "org.mortbay.jetty:jetty-util@6.1.26" + }, + { + "nodeId": "org.mortbay.jetty:servlet-api@2.5-20081211" + } + ] + }, + { + "nodeId": "org.mortbay.jetty:jetty-util@6.1.26", + "pkgId": "org.mortbay.jetty:jetty-util@6.1.26", + "deps": [] + }, + { + "nodeId": "org.mortbay.jetty:servlet-api@2.5-20081211", + "pkgId": "org.mortbay.jetty:servlet-api@2.5-20081211", + "deps": [] + }, + { + "nodeId": "net.java.dev.jets3t:jets3t@0.9.0", + "pkgId": "net.java.dev.jets3t:jets3t@0.9.0", + "deps": [ + { + "nodeId": "commons-logging:commons-logging@1.2" + }, + { + "nodeId": "com.jamesmurty.utils:java-xmlbuilder@0.4" + }, + { + "nodeId": "org.apache.httpcomponents:httpcore@4.4.13" + }, + { + "nodeId": "commons-codec:commons-codec@1.10" + }, + { + "nodeId": "org.apache.httpcomponents:httpclient@4.5.13" + } + ] + }, + { + "nodeId": "com.jamesmurty.utils:java-xmlbuilder@0.4", + "pkgId": "com.jamesmurty.utils:java-xmlbuilder@0.4", + "deps": [] + }, + { + "nodeId": "org.codehaus.jackson:jackson-mapper-asl@1.9.13", + "pkgId": "org.codehaus.jackson:jackson-mapper-asl@1.9.13", + "deps": [ + { + "nodeId": "org.codehaus.jackson:jackson-core-asl@1.9.13" + } + ] + }, + { + "nodeId": "org.apache.curator:curator-client@2.7.1", + "pkgId": "org.apache.curator:curator-client@2.7.1", + "deps": [ + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "org.apache.zookeeper:zookeeper@3.4.6" + }, + { + "nodeId": "org.slf4j:slf4j-api@1.7.13" + } + ] + }, + { + "nodeId": "org.apache.zookeeper:zookeeper@3.4.6", + "pkgId": "org.apache.zookeeper:zookeeper@3.4.6", + "deps": [ + { + "nodeId": "io.netty:netty@3.7.0.Final" + }, + { + "nodeId": "log4j:log4j@1.2.17" + }, + { + "nodeId": "org.slf4j:slf4j-api@1.7.13" + } + ] + }, + { + "nodeId": "io.netty:netty@3.7.0.Final", + "pkgId": "io.netty:netty@3.7.0.Final", + "deps": [] + }, + { + "nodeId": "log4j:log4j@1.2.17", + "pkgId": "log4j:log4j@1.2.17", + "deps": [] + }, + { + "nodeId": "com.jcraft:jsch@0.1.54", + "pkgId": "com.jcraft:jsch@0.1.54", + "deps": [] + }, + { + "nodeId": "com.sun.jersey:jersey-json@1.13", + "pkgId": "com.sun.jersey:jersey-json@1.13", + "deps": [ + { + "nodeId": "com.sun.xml.bind:jaxb-impl@2.2.11" + }, + { + "nodeId": "org.codehaus.jackson:jackson-mapper-asl@1.9.13" + }, + { + "nodeId": "org.codehaus.jackson:jackson-xc@1.9.13" + }, + { + "nodeId": "org.codehaus.jettison:jettison@1.1" + }, + { + "nodeId": "org.codehaus.jackson:jackson-core-asl@1.9.13" + }, + { + "nodeId": "org.codehaus.jackson:jackson-jaxrs@1.9.13" + }, + { + "nodeId": "com.sun.jersey:jersey-core@1.13" + } + ] + }, + { + "nodeId": "org.codehaus.jackson:jackson-xc@1.9.13", + "pkgId": "org.codehaus.jackson:jackson-xc@1.9.13", + "deps": [ + { + "nodeId": "org.codehaus.jackson:jackson-core-asl@1.9.13" + }, + { + "nodeId": "org.codehaus.jackson:jackson-mapper-asl@1.9.13" + } + ] + }, + { + "nodeId": "org.codehaus.jettison:jettison@1.1", + "pkgId": "org.codehaus.jettison:jettison@1.1", + "deps": [ + { + "nodeId": "stax:stax-api@1.0.1" + } + ] + }, + { + "nodeId": "stax:stax-api@1.0.1", + "pkgId": "stax:stax-api@1.0.1", + "deps": [] + }, + { + "nodeId": "org.codehaus.jackson:jackson-jaxrs@1.9.13", + "pkgId": "org.codehaus.jackson:jackson-jaxrs@1.9.13", + "deps": [ + { + "nodeId": "org.codehaus.jackson:jackson-core-asl@1.9.13" + }, + { + "nodeId": "org.codehaus.jackson:jackson-mapper-asl@1.9.13" + } + ] + }, + { + "nodeId": "com.sun.jersey:jersey-core@1.13", + "pkgId": "com.sun.jersey:jersey-core@1.13", + "deps": [] + }, + { + "nodeId": "org.mortbay.jetty:jetty-sslengine@6.1.26", + "pkgId": "org.mortbay.jetty:jetty-sslengine@6.1.26", + "deps": [ + { + "nodeId": "org.mortbay.jetty:jetty@6.1.26" + } + ] + }, + { + "nodeId": "commons-cli:commons-cli@1.3.1", + "pkgId": "commons-cli:commons-cli@1.3.1", + "deps": [] + }, + { + "nodeId": "org.apache.hadoop:hadoop-auth@2.7.7", + "pkgId": "org.apache.hadoop:hadoop-auth@2.7.7", + "deps": [ + { + "nodeId": "org.slf4j:slf4j-api@1.7.13" + }, + { + "nodeId": "org.apache.directory.server:apacheds-kerberos-codec@2.0.0-M15" + }, + { + "nodeId": "log4j:log4j@1.2.17" + }, + { + "nodeId": "org.apache.curator:curator-framework@2.7.1" + }, + { + "nodeId": "org.apache.zookeeper:zookeeper@3.4.6" + }, + { + "nodeId": "commons-codec:commons-codec@1.10" + }, + { + "nodeId": "org.apache.httpcomponents:httpclient@4.5.13" + } + ] + }, + { + "nodeId": "org.apache.directory.server:apacheds-kerberos-codec@2.0.0-M15", + "pkgId": "org.apache.directory.server:apacheds-kerberos-codec@2.0.0-M15", + "deps": [ + { + "nodeId": "org.apache.directory.api:api-asn1-api@1.0.0-M20" + }, + { + "nodeId": "org.apache.directory.api:api-util@1.0.0-M20" + }, + { + "nodeId": "org.apache.directory.server:apacheds-i18n@2.0.0-M15" + }, + { + "nodeId": "org.slf4j:slf4j-api@1.7.13" + } + ] + }, + { + "nodeId": "org.apache.directory.api:api-asn1-api@1.0.0-M20", + "pkgId": "org.apache.directory.api:api-asn1-api@1.0.0-M20", + "deps": [ + { + "nodeId": "org.slf4j:slf4j-api@1.7.13" + } + ] + }, + { + "nodeId": "org.apache.directory.api:api-util@1.0.0-M20", + "pkgId": "org.apache.directory.api:api-util@1.0.0-M20", + "deps": [ + { + "nodeId": "org.slf4j:slf4j-api@1.7.13" + } + ] + }, + { + "nodeId": "org.apache.directory.server:apacheds-i18n@2.0.0-M15", + "pkgId": "org.apache.directory.server:apacheds-i18n@2.0.0-M15", + "deps": [ + { + "nodeId": "org.slf4j:slf4j-api@1.7.13" + } + ] + }, + { + "nodeId": "org.apache.curator:curator-framework@2.7.1", + "pkgId": "org.apache.curator:curator-framework@2.7.1", + "deps": [ + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "org.apache.curator:curator-client@2.7.1" + }, + { + "nodeId": "org.apache.zookeeper:zookeeper@3.4.6" + } + ] + }, + { + "nodeId": "javax.servlet.jsp:jsp-api@2.1", + "pkgId": "javax.servlet.jsp:jsp-api@2.1", + "deps": [] + }, + { + "nodeId": "org.apache.curator:curator-recipes@2.7.1", + "pkgId": "org.apache.curator:curator-recipes@2.7.1", + "deps": [ + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "org.apache.curator:curator-framework@2.7.1" + }, + { + "nodeId": "org.apache.zookeeper:zookeeper@3.4.6" + } + ] + }, + { + "nodeId": "commons-httpclient:commons-httpclient@3.1", + "pkgId": "commons-httpclient:commons-httpclient@3.1", + "deps": [ + { + "nodeId": "commons-codec:commons-codec@1.10" + }, + { + "nodeId": "commons-logging:commons-logging@1.2" + } + ] + }, + { + "nodeId": "javax.servlet:servlet-api@2.5", + "pkgId": "javax.servlet:servlet-api@2.5", + "deps": [] + }, + { + "nodeId": "com.sun.jersey:jersey-server@1.9", + "pkgId": "com.sun.jersey:jersey-server@1.9", + "deps": [ + { + "nodeId": "asm:asm@3.1" + }, + { + "nodeId": "com.sun.jersey:jersey-core@1.13" + } + ] + }, + { + "nodeId": "asm:asm@3.1", + "pkgId": "asm:asm@3.1", + "deps": [] + }, + { + "nodeId": "org.apache.hadoop:hadoop-annotations@2.7.7", + "pkgId": "org.apache.hadoop:hadoop-annotations@2.7.7", + "deps": [] + }, + { + "nodeId": "org.apache.hadoop:hadoop-mapreduce-client-core@2.7.7", + "pkgId": "org.apache.hadoop:hadoop-mapreduce-client-core@2.7.7", + "deps": [ + { + "nodeId": "org.slf4j:slf4j-api@1.7.13" + }, + { + "nodeId": "com.google.inject.extensions:guice-servlet@3.0" + }, + { + "nodeId": "org.apache.avro:avro@1.11.0" + }, + { + "nodeId": "org.apache.hadoop:hadoop-yarn-common@2.7.7" + }, + { + "nodeId": "io.netty:netty@3.7.0.Final" + }, + { + "nodeId": "org.apache.hadoop:hadoop-annotations@2.7.7" + }, + { + "nodeId": "com.google.protobuf:protobuf-java@3.18.2" + } + ] + }, + { + "nodeId": "com.google.inject.extensions:guice-servlet@3.0", + "pkgId": "com.google.inject.extensions:guice-servlet@3.0", + "deps": [ + { + "nodeId": "com.google.inject:guice@4.2.2" + } + ] + }, + { + "nodeId": "com.google.inject:guice@4.2.2", + "pkgId": "com.google.inject:guice@4.2.2", + "deps": [ + { + "nodeId": "aopalliance:aopalliance@1.0" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "javax.inject:javax.inject@1" + } + ] + }, + { + "nodeId": "aopalliance:aopalliance@1.0", + "pkgId": "aopalliance:aopalliance@1.0", + "deps": [] + }, + { + "nodeId": "javax.inject:javax.inject@1", + "pkgId": "javax.inject:javax.inject@1", + "deps": [] + }, + { + "nodeId": "org.apache.hadoop:hadoop-yarn-common@2.7.7", + "pkgId": "org.apache.hadoop:hadoop-yarn-common@2.7.7", + "deps": [ + { + "nodeId": "commons-logging:commons-logging@1.2" + }, + { + "nodeId": "org.slf4j:slf4j-api@1.7.13" + }, + { + "nodeId": "org.apache.hadoop:hadoop-yarn-api@2.7.7" + }, + { + "nodeId": "org.codehaus.jackson:jackson-mapper-asl@1.9.13" + }, + { + "nodeId": "com.google.inject.extensions:guice-servlet@3.0" + }, + { + "nodeId": "commons-io:commons-io@2.4" + }, + { + "nodeId": "com.sun.jersey:jersey-json@1.13" + }, + { + "nodeId": "commons-lang:commons-lang@2.6" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "org.codehaus.jackson:jackson-xc@1.9.13" + }, + { + "nodeId": "log4j:log4j@1.2.17" + }, + { + "nodeId": "com.google.inject:guice@4.2.2" + }, + { + "nodeId": "org.mortbay.jetty:jetty-util@6.1.26" + }, + { + "nodeId": "commons-cli:commons-cli@1.3.1" + }, + { + "nodeId": "javax.xml.bind:jaxb-api@2.2.2" + }, + { + "nodeId": "org.codehaus.jackson:jackson-core-asl@1.9.13" + }, + { + "nodeId": "com.sun.jersey:jersey-client@1.13" + }, + { + "nodeId": "org.codehaus.jackson:jackson-jaxrs@1.9.13" + }, + { + "nodeId": "commons-codec:commons-codec@1.10" + }, + { + "nodeId": "com.sun.jersey:jersey-core@1.13" + }, + { + "nodeId": "org.apache.commons:commons-compress@1.16" + }, + { + "nodeId": "com.sun.jersey.contribs:jersey-guice@1.9" + }, + { + "nodeId": "javax.servlet:servlet-api@2.5" + }, + { + "nodeId": "com.sun.jersey:jersey-server@1.9" + }, + { + "nodeId": "org.apache.hadoop:hadoop-annotations@2.7.7" + }, + { + "nodeId": "com.google.protobuf:protobuf-java@3.18.2" + } + ] + }, + { + "nodeId": "org.apache.hadoop:hadoop-yarn-api@2.7.7", + "pkgId": "org.apache.hadoop:hadoop-yarn-api@2.7.7", + "deps": [ + { + "nodeId": "commons-logging:commons-logging@1.2" + }, + { + "nodeId": "commons-lang:commons-lang@2.6" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "org.apache.hadoop:hadoop-annotations@2.7.7" + }, + { + "nodeId": "com.google.protobuf:protobuf-java@3.18.2" + } + ] + }, + { + "nodeId": "com.sun.jersey:jersey-client@1.13", + "pkgId": "com.sun.jersey:jersey-client@1.13", + "deps": [ + { + "nodeId": "com.sun.jersey:jersey-core@1.13" + } + ] + }, + { + "nodeId": "com.sun.jersey.contribs:jersey-guice@1.9", + "pkgId": "com.sun.jersey.contribs:jersey-guice@1.9", + "deps": [ + { + "nodeId": "com.google.inject:guice@4.2.2" + }, + { + "nodeId": "com.google.inject.extensions:guice-servlet@3.0" + }, + { + "nodeId": "com.sun.jersey:jersey-server@1.9" + }, + { + "nodeId": "javax.inject:javax.inject@1" + } + ] + }, + { + "nodeId": "org.apache.parquet:parquet-avro@1.12.2", + "pkgId": "org.apache.parquet:parquet-avro@1.12.2", + "deps": [ + { + "nodeId": "org.apache.avro:avro@1.11.0" + }, + { + "nodeId": "org.apache.parquet:parquet-column@1.12.2" + }, + { + "nodeId": "org.apache.parquet:parquet-format-structures@1.12.2" + }, + { + "nodeId": "org.apache.parquet:parquet-hadoop@1.12.2" + } + ] + }, + { + "nodeId": "org.apache.parquet:parquet-column@1.12.2", + "pkgId": "org.apache.parquet:parquet-column@1.12.2", + "deps": [ + { + "nodeId": "org.apache.parquet:parquet-common@1.12.2" + }, + { + "nodeId": "org.apache.parquet:parquet-encoding@1.12.2" + } + ] + }, + { + "nodeId": "org.apache.parquet:parquet-common@1.12.2", + "pkgId": "org.apache.parquet:parquet-common@1.12.2", + "deps": [ + { + "nodeId": "org.apache.parquet:parquet-format-structures@1.12.2" + }, + { + "nodeId": "org.apache.yetus:audience-annotations@0.12.0" + }, + { + "nodeId": "org.slf4j:slf4j-api@1.7.13" + } + ] + }, + { + "nodeId": "org.apache.parquet:parquet-format-structures@1.12.2", + "pkgId": "org.apache.parquet:parquet-format-structures@1.12.2", + "deps": [ + { + "nodeId": "javax.annotation:javax.annotation-api@1.3.2" + }, + { + "nodeId": "org.slf4j:slf4j-api@1.7.13" + } + ] + }, + { + "nodeId": "org.apache.yetus:audience-annotations@0.12.0", + "pkgId": "org.apache.yetus:audience-annotations@0.12.0", + "deps": [] + }, + { + "nodeId": "org.apache.parquet:parquet-encoding@1.12.2", + "pkgId": "org.apache.parquet:parquet-encoding@1.12.2", + "deps": [ + { + "nodeId": "org.apache.parquet:parquet-common@1.12.2" + } + ] + }, + { + "nodeId": "org.apache.parquet:parquet-hadoop@1.12.2", + "pkgId": "org.apache.parquet:parquet-hadoop@1.12.2", + "deps": [ + { + "nodeId": "org.apache.parquet:parquet-jackson@1.12.2" + }, + { + "nodeId": "com.github.luben:zstd-jni@1.4.9-1" + }, + { + "nodeId": "org.apache.parquet:parquet-format-structures@1.12.2" + }, + { + "nodeId": "org.xerial.snappy:snappy-java@1.1.8.4" + }, + { + "nodeId": "org.apache.parquet:parquet-column@1.12.2" + }, + { + "nodeId": "commons-pool:commons-pool@1.6" + } + ] + }, + { + "nodeId": "org.apache.parquet:parquet-jackson@1.12.2", + "pkgId": "org.apache.parquet:parquet-jackson@1.12.2", + "deps": [] + }, + { + "nodeId": "commons-pool:commons-pool@1.6", + "pkgId": "commons-pool:commons-pool@1.6", + "deps": [] + }, + { + "nodeId": "//warehouses/databricks:main@bazel", + "pkgId": "//warehouses/databricks:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//crypto:main@bazel" + }, + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//heartbeat:lite@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//json:default_object_mapper@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//markdown:main@bazel" + }, + { + "nodeId": "//port_forwarder:databricks@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//secrets/system:main@bazel" + }, + { + "nodeId": "//slack:main@bazel" + }, + { + "nodeId": "//utils/exceptions:main@bazel" + }, + { + "nodeId": "//warehouses/common:feature_flags@bazel" + }, + { + "nodeId": "//warehouses/common:main@bazel" + }, + { + "nodeId": "//warehouses/common:observability@bazel" + }, + { + "nodeId": "//warehouses/common:staging_azure@bazel" + }, + { + "nodeId": "//warehouses/common:staging_s3@bazel" + }, + { + "nodeId": "//warehouses/common:tasks@bazel" + }, + { + "nodeId": "//warehouses/common-local:writer_avro_base@bazel" + }, + { + "nodeId": "//warehouses/common-local:writer_base@bazel" + }, + { + "nodeId": "//warehouses/common-local:writer_parquet@bazel" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-sts@1.12.84" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "com.google.protobuf:protobuf-java@3.18.2" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.apache.avro:avro@1.11.0" + }, + { + "nodeId": "org.apache.commons:commons-lang3@3.12.0" + } + ] + }, + { + "nodeId": "//port_forwarder:databricks@bazel", + "pkgId": "//port_forwarder:databricks@bazel", + "deps": [ + { + "nodeId": "//:databricks_jdbc@bazel" + }, + { + "nodeId": "//aws:instance_id@bazel" + }, + { + "nodeId": "//dynamo:main@bazel" + }, + { + "nodeId": "//database:postgresql_jdbc_fix@bazel" + }, + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logging:main@bazel" + }, + { + "nodeId": "//globals:main@bazel" + }, + { + "nodeId": "@jsch_patched//:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//ssh:main@bazel" + }, + { + "nodeId": "//util:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.eclipse.jetty:jetty-server@9.4.40.v20210413" + }, + { + "nodeId": "org.eclipse.jetty:jetty-servlet@9.4.40.v20210413" + }, + { + "nodeId": "org.glassfish.jersey.containers:jersey-container-servlet-core@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-server@2.31" + }, + { + "nodeId": "org.bouncycastle:bcpkix-jdk15on@1.70" + } + ] + }, + { + "nodeId": "//warehouses/mysql:main@bazel", + "pkgId": "//warehouses/mysql:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//dynamo:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//heartbeat:lite@bazel" + }, + { + "nodeId": "//integrations/db:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//markdown:main@bazel" + }, + { + "nodeId": "//port_forwarder:mysql@bazel" + }, + { + "nodeId": "//ssh:main@bazel" + }, + { + "nodeId": "//util:main@bazel" + }, + { + "nodeId": "//utils/exceptions:main@bazel" + }, + { + "nodeId": "//warehouses/common:feature_flags@bazel" + }, + { + "nodeId": "//warehouses/common:main@bazel" + }, + { + "nodeId": "//warehouses/common:tasks@bazel" + }, + { + "nodeId": "//warehouses/common-local:writer_base@bazel" + }, + { + "nodeId": "//warehouses/common-local:writer_csv@bazel" + }, + { + "nodeId": "@com_fasterxml_jackson_dataformat_jackson_dataformat_csv//:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "com.google.protobuf:protobuf-java@3.18.2" + }, + { + "nodeId": "mysql:mysql-connector-java@8.0.13" + }, + { + "nodeId": "org.apache.commons:commons-lang3@3.12.0" + } + ] + }, + { + "nodeId": "//port_forwarder:mysql@bazel", + "pkgId": "//port_forwarder:mysql@bazel", + "deps": [ + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//database:tls_verify@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//verification:main@bazel" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "mysql:mysql-connector-java@8.0.13" + }, + { + "nodeId": "//aws:instance_id@bazel" + }, + { + "nodeId": "//dynamo:main@bazel" + }, + { + "nodeId": "//database:postgresql_jdbc_fix@bazel" + }, + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logging:main@bazel" + }, + { + "nodeId": "//globals:main@bazel" + }, + { + "nodeId": "@jsch_patched//:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//ssh:main@bazel" + }, + { + "nodeId": "//util:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.eclipse.jetty:jetty-server@9.4.40.v20210413" + }, + { + "nodeId": "org.eclipse.jetty:jetty-servlet@9.4.40.v20210413" + }, + { + "nodeId": "org.glassfish.jersey.containers:jersey-container-servlet-core@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-server@2.31" + }, + { + "nodeId": "org.bouncycastle:bcpkix-jdk15on@1.70" + } + ] + }, + { + "nodeId": "//warehouses/panoply:main@bazel", + "pkgId": "//warehouses/panoply:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//heartbeat:lite@bazel" + }, + { + "nodeId": "//integrations/db:main@bazel" + }, + { + "nodeId": "//port_forwarder:tunnel_data_source@bazel" + }, + { + "nodeId": "//ssh:main@bazel" + }, + { + "nodeId": "//warehouses/common:main@bazel" + }, + { + "nodeId": "//warehouses/common:tasks@bazel" + }, + { + "nodeId": "//warehouses/redshift:main@bazel" + } + ] + }, + { + "nodeId": "//warehouses/redshift:main@bazel", + "pkgId": "//warehouses/redshift:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//crypto:main@bazel" + }, + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//heartbeat:lite@bazel" + }, + { + "nodeId": "//integrations/db:main@bazel" + }, + { + "nodeId": "//ip_utils:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//markdown:main@bazel" + }, + { + "nodeId": "//port_forwarder:tunnel_data_source@bazel" + }, + { + "nodeId": "//ssh:main@bazel" + }, + { + "nodeId": "//utils/exceptions:main@bazel" + }, + { + "nodeId": "//warehouses/common:feature_flags@bazel" + }, + { + "nodeId": "//warehouses/common:main@bazel" + }, + { + "nodeId": "//warehouses/common:observability@bazel" + }, + { + "nodeId": "//warehouses/common:staging_s3@bazel" + }, + { + "nodeId": "//warehouses/common:tasks@bazel" + }, + { + "nodeId": "//warehouses/common-local:writer_base@bazel" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-core@1.12.84" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-redshift@1.12.84" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-sts@1.12.84" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "com.intellij:annotations@12.0" + }, + { + "nodeId": "commons-lang:commons-lang@2.6" + }, + { + "nodeId": "io.netty:netty-all@4.1.45.Final" + }, + { + "nodeId": "org.apache.commons:commons-collections4@4.1" + }, + { + "nodeId": "org.apache.commons:commons-lang3@3.12.0" + }, + { + "nodeId": "@redshift_jdbc42//jar:jar@bazel" + } + ] + }, + { + "nodeId": "io.netty:netty-all@4.1.45.Final", + "pkgId": "io.netty:netty-all@4.1.45.Final", + "deps": [] + }, + { + "nodeId": "@redshift_jdbc42//jar:jar@bazel", + "pkgId": "@redshift_jdbc42//jar:jar@bazel", + "deps": [] + }, + { + "nodeId": "//warehouses/periscope:main@bazel", + "pkgId": "//warehouses/periscope:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//heartbeat:lite@bazel" + }, + { + "nodeId": "//integrations/db:main@bazel" + }, + { + "nodeId": "//port_forwarder:tunnel_data_source@bazel" + }, + { + "nodeId": "//ssh:main@bazel" + }, + { + "nodeId": "//warehouses/common:main@bazel" + }, + { + "nodeId": "//warehouses/redshift:main@bazel" + } + ] + }, + { + "nodeId": "//warehouses/postgres:main@bazel", + "pkgId": "//warehouses/postgres:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//dynamo:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//heartbeat:lite@bazel" + }, + { + "nodeId": "//integrations/db:setup_form_utils@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//markdown:main@bazel" + }, + { + "nodeId": "//port_forwarder:postgres@bazel" + }, + { + "nodeId": "//ssh:main@bazel" + }, + { + "nodeId": "//util:main@bazel" + }, + { + "nodeId": "//utils/exceptions:main@bazel" + }, + { + "nodeId": "//warehouses/common:feature_flags@bazel" + }, + { + "nodeId": "//warehouses/common:main@bazel" + }, + { + "nodeId": "//warehouses/common:observability@bazel" + }, + { + "nodeId": "//warehouses/common:tasks@bazel" + }, + { + "nodeId": "//warehouses/common-local:writer_base@bazel" + }, + { + "nodeId": "//warehouses/common-local:writer_csv@bazel" + }, + { + "nodeId": "@com_fasterxml_jackson_dataformat_jackson_dataformat_csv//:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "org.postgresql:postgresql@42.3.3" + } + ] + }, + { + "nodeId": "//integrations/db:setup_form_utils@bazel", + "pkgId": "//integrations/db:setup_form_utils@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//integrations/hvr/hvr_tool:main@bazel" + }, + { + "nodeId": "//integrations/speed_test:main@bazel" + }, + { + "nodeId": "//integrations/speed_test:utils@bazel" + }, + { + "nodeId": "//ip_utils:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//port_forwarder:tunnel_data_source@bazel" + }, + { + "nodeId": "//ssh:main@bazel" + }, + { + "nodeId": "//verification:main@bazel" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + } + ] + }, + { + "nodeId": "//port_forwarder:postgres@bazel", + "pkgId": "//port_forwarder:postgres@bazel", + "deps": [ + { + "nodeId": "//verification:main@bazel" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//database:tls_verify@bazel" + }, + { + "nodeId": "org.postgresql:postgresql@42.3.3" + }, + { + "nodeId": "//aws:instance_id@bazel" + }, + { + "nodeId": "//dynamo:main@bazel" + }, + { + "nodeId": "//database:postgresql_jdbc_fix@bazel" + }, + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logging:main@bazel" + }, + { + "nodeId": "//globals:main@bazel" + }, + { + "nodeId": "@jsch_patched//:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//ssh:main@bazel" + }, + { + "nodeId": "//util:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.eclipse.jetty:jetty-server@9.4.40.v20210413" + }, + { + "nodeId": "org.eclipse.jetty:jetty-servlet@9.4.40.v20210413" + }, + { + "nodeId": "org.glassfish.jersey.containers:jersey-container-servlet-core@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-server@2.31" + }, + { + "nodeId": "org.bouncycastle:bcpkix-jdk15on@1.70" + } + ] + }, + { + "nodeId": "//warehouses/s3_data_lake:main@bazel", + "pkgId": "//warehouses/s3_data_lake:main@bazel", + "deps": [ + { + "nodeId": "//aws:main@bazel" + }, + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//heartbeat:lite@bazel" + }, + { + "nodeId": "//integrations/db:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//markdown:main@bazel" + }, + { + "nodeId": "//port_forwarder:tunnel_data_source@bazel" + }, + { + "nodeId": "//ssh:main@bazel" + }, + { + "nodeId": "//utils/exceptions:main@bazel" + }, + { + "nodeId": "//warehouses/common:main@bazel" + }, + { + "nodeId": "//warehouses/common-local:writer_base@bazel" + }, + { + "nodeId": "//warehouses/common-local:writer_csv@bazel" + }, + { + "nodeId": "//warehouses/redshift:main@bazel" + }, + { + "nodeId": "@com_fasterxml_jackson_dataformat_jackson_dataformat_csv//:main@bazel" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-core@1.12.84" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-glue@1.12.84" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-s3@1.12.84" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-sts@1.12.84" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "com.google.protobuf:protobuf-java@3.18.2" + }, + { + "nodeId": "com.intellij:annotations@12.0" + }, + { + "nodeId": "commons-lang:commons-lang@2.6" + }, + { + "nodeId": "io.netty:netty-all@4.1.45.Final" + }, + { + "nodeId": "org.apache.commons:commons-lang3@3.12.0" + }, + { + "nodeId": "org.apache.iceberg:iceberg-api@0.13.1" + }, + { + "nodeId": "org.apache.iceberg:iceberg-core@0.13.1" + }, + { + "nodeId": "org.apache.iceberg:iceberg-data@0.13.1" + }, + { + "nodeId": "org.apache.iceberg:iceberg-parquet@0.13.1" + } + ] + }, + { + "nodeId": "org.apache.iceberg:iceberg-api@0.13.1", + "pkgId": "org.apache.iceberg:iceberg-api@0.13.1", + "deps": [ + { + "nodeId": "com.github.stephenc.findbugs:findbugs-annotations@1.3.9-1" + }, + { + "nodeId": "org.apache.iceberg:iceberg-bundled-guava@0.13.1" + }, + { + "nodeId": "org.slf4j:slf4j-api@1.7.13" + } + ] + }, + { + "nodeId": "com.github.stephenc.findbugs:findbugs-annotations@1.3.9-1", + "pkgId": "com.github.stephenc.findbugs:findbugs-annotations@1.3.9-1", + "deps": [] + }, + { + "nodeId": "org.apache.iceberg:iceberg-bundled-guava@0.13.1", + "pkgId": "org.apache.iceberg:iceberg-bundled-guava@0.13.1", + "deps": [] + }, + { + "nodeId": "org.apache.iceberg:iceberg-core@0.13.1", + "pkgId": "org.apache.iceberg:iceberg-core@0.13.1", + "deps": [ + { + "nodeId": "org.roaringbitmap:RoaringBitmap@0.9.22" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "org.slf4j:slf4j-api@1.7.13" + }, + { + "nodeId": "org.apache.iceberg:iceberg-api@0.13.1" + }, + { + "nodeId": "org.apache.avro:avro@1.11.0" + }, + { + "nodeId": "com.github.stephenc.findbugs:findbugs-annotations@1.3.9-1" + }, + { + "nodeId": "org.apache.iceberg:iceberg-bundled-guava@0.13.1" + }, + { + "nodeId": "com.github.ben-manes.caffeine:caffeine@2.8.4" + }, + { + "nodeId": "org.apache.iceberg:iceberg-common@0.13.1" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + } + ] + }, + { + "nodeId": "org.roaringbitmap:RoaringBitmap@0.9.22", + "pkgId": "org.roaringbitmap:RoaringBitmap@0.9.22", + "deps": [ + { + "nodeId": "org.roaringbitmap:shims@0.9.22" + } + ] + }, + { + "nodeId": "org.roaringbitmap:shims@0.9.22", + "pkgId": "org.roaringbitmap:shims@0.9.22", + "deps": [] + }, + { + "nodeId": "com.github.ben-manes.caffeine:caffeine@2.8.4", + "pkgId": "com.github.ben-manes.caffeine:caffeine@2.8.4", + "deps": [ + { + "nodeId": "com.google.errorprone:error_prone_annotations@2.13.1" + }, + { + "nodeId": "org.checkerframework:checker-qual@3.22.0" + } + ] + }, + { + "nodeId": "org.apache.iceberg:iceberg-common@0.13.1", + "pkgId": "org.apache.iceberg:iceberg-common@0.13.1", + "deps": [ + { + "nodeId": "com.github.stephenc.findbugs:findbugs-annotations@1.3.9-1" + }, + { + "nodeId": "org.apache.iceberg:iceberg-bundled-guava@0.13.1" + }, + { + "nodeId": "org.slf4j:slf4j-api@1.7.13" + } + ] + }, + { + "nodeId": "org.apache.iceberg:iceberg-data@0.13.1", + "pkgId": "org.apache.iceberg:iceberg-data@0.13.1", + "deps": [ + { + "nodeId": "org.slf4j:slf4j-api@1.7.13" + }, + { + "nodeId": "org.apache.iceberg:iceberg-api@0.13.1" + }, + { + "nodeId": "org.apache.orc:orc-core:jar:nohive@1.7.2" + }, + { + "nodeId": "com.github.stephenc.findbugs:findbugs-annotations@1.3.9-1" + }, + { + "nodeId": "org.apache.iceberg:iceberg-bundled-guava@0.13.1" + }, + { + "nodeId": "org.apache.iceberg:iceberg-core@0.13.1" + }, + { + "nodeId": "org.apache.parquet:parquet-avro@1.12.2" + } + ] + }, + { + "nodeId": "org.apache.orc:orc-core:jar:nohive@1.7.2", + "pkgId": "org.apache.orc:orc-core:jar:nohive@1.7.2", + "deps": [ + { + "nodeId": "org.slf4j:slf4j-api@1.7.13" + }, + { + "nodeId": "io.airlift:aircompressor@0.9" + }, + { + "nodeId": "org.apache.orc:orc-shims@1.7.2" + }, + { + "nodeId": "org.apache.commons:commons-lang3@3.12.0" + }, + { + "nodeId": "org.jetbrains:annotations@17.0.0" + }, + { + "nodeId": "org.threeten:threeten-extra@0.9" + } + ] + }, + { + "nodeId": "io.airlift:aircompressor@0.9", + "pkgId": "io.airlift:aircompressor@0.9", + "deps": [ + { + "nodeId": "io.airlift:slice@0.10" + } + ] + }, + { + "nodeId": "io.airlift:slice@0.10", + "pkgId": "io.airlift:slice@0.10", + "deps": [] + }, + { + "nodeId": "org.apache.orc:orc-shims@1.7.2", + "pkgId": "org.apache.orc:orc-shims@1.7.2", + "deps": [ + { + "nodeId": "org.slf4j:slf4j-api@1.7.13" + } + ] + }, + { + "nodeId": "org.threeten:threeten-extra@0.9", + "pkgId": "org.threeten:threeten-extra@0.9", + "deps": [] + }, + { + "nodeId": "org.apache.iceberg:iceberg-parquet@0.13.1", + "pkgId": "org.apache.iceberg:iceberg-parquet@0.13.1", + "deps": [ + { + "nodeId": "org.slf4j:slf4j-api@1.7.13" + }, + { + "nodeId": "org.apache.iceberg:iceberg-api@0.13.1" + }, + { + "nodeId": "com.github.stephenc.findbugs:findbugs-annotations@1.3.9-1" + }, + { + "nodeId": "org.apache.iceberg:iceberg-bundled-guava@0.13.1" + }, + { + "nodeId": "org.apache.iceberg:iceberg-core@0.13.1" + }, + { + "nodeId": "org.apache.parquet:parquet-avro@1.12.2" + }, + { + "nodeId": "org.apache.iceberg:iceberg-common@0.13.1" + } + ] + }, + { + "nodeId": "//warehouses/snowflake:main@bazel", + "pkgId": "//warehouses/snowflake:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//crypto:main@bazel" + }, + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//dynamo:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//globals:main@bazel" + }, + { + "nodeId": "//google_cloud:main@bazel" + }, + { + "nodeId": "//heartbeat:lite@bazel" + }, + { + "nodeId": "//integrations/db:main@bazel" + }, + { + "nodeId": "//json:default_object_mapper@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//markdown:main@bazel" + }, + { + "nodeId": "//port_forwarder:snowflake@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//secrets/system:main@bazel" + }, + { + "nodeId": "//util:main@bazel" + }, + { + "nodeId": "//utils/exceptions:main@bazel" + }, + { + "nodeId": "//warehouses/common:feature_flags@bazel" + }, + { + "nodeId": "//warehouses/common:main@bazel" + }, + { + "nodeId": "//warehouses/common:observability@bazel" + }, + { + "nodeId": "//warehouses/common:staging_azure@bazel" + }, + { + "nodeId": "//warehouses/common:staging_gcs@bazel" + }, + { + "nodeId": "//warehouses/common:staging_s3@bazel" + }, + { + "nodeId": "//warehouses/common:tasks@bazel" + }, + { + "nodeId": "//warehouses/common-local:writer_base@bazel" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-core@1.12.84" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-sts@1.12.84" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "com.google.protobuf:protobuf-java@3.18.2" + }, + { + "nodeId": "net.snowflake:snowflake-jdbc@3.13.18" + }, + { + "nodeId": "org.apache.commons:commons-lang3@3.12.0" + }, + { + "nodeId": "org.bouncycastle:bcpkix-jdk15on@1.70" + }, + { + "nodeId": "org.bouncycastle:bcprov-jdk15to18@1.70" + } + ] + }, + { + "nodeId": "//port_forwarder:snowflake@bazel", + "pkgId": "//port_forwarder:snowflake@bazel", + "deps": [ + { + "nodeId": "net.snowflake:snowflake-jdbc@3.13.18" + }, + { + "nodeId": "org.bouncycastle:bcprov-jdk15to18@1.70" + }, + { + "nodeId": "//aws:instance_id@bazel" + }, + { + "nodeId": "//dynamo:main@bazel" + }, + { + "nodeId": "//database:postgresql_jdbc_fix@bazel" + }, + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logging:main@bazel" + }, + { + "nodeId": "//globals:main@bazel" + }, + { + "nodeId": "@jsch_patched//:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//ssh:main@bazel" + }, + { + "nodeId": "//util:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.eclipse.jetty:jetty-server@9.4.40.v20210413" + }, + { + "nodeId": "org.eclipse.jetty:jetty-servlet@9.4.40.v20210413" + }, + { + "nodeId": "org.glassfish.jersey.containers:jersey-container-servlet-core@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-server@2.31" + }, + { + "nodeId": "org.bouncycastle:bcpkix-jdk15on@1.70" + } + ] + }, + { + "nodeId": "//warehouses/sql_server:main@bazel", + "pkgId": "//warehouses/sql_server:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//dynamo:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//heartbeat:lite@bazel" + }, + { + "nodeId": "//integrations/db:main@bazel" + }, + { + "nodeId": "//ip_utils:main@bazel" + }, + { + "nodeId": "//json:default_object_mapper@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//markdown:main@bazel" + }, + { + "nodeId": "//port_forwarder:sqlserver@bazel" + }, + { + "nodeId": "//ssh:main@bazel" + }, + { + "nodeId": "//warehouses/common:feature_flags@bazel" + }, + { + "nodeId": "//warehouses/common:main@bazel" + }, + { + "nodeId": "//warehouses/common:tasks@bazel" + }, + { + "nodeId": "//warehouses/common-local:writer_base@bazel" + }, + { + "nodeId": "//warehouses/common-local:writer_csv@bazel" + }, + { + "nodeId": "@com_fasterxml_jackson_dataformat_jackson_dataformat_csv//:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "com.google.protobuf:protobuf-java@3.18.2" + }, + { + "nodeId": "com.microsoft.sqlserver:mssql-jdbc@9.4.0.jre11" + }, + { + "nodeId": "org.apache.commons:commons-lang3@3.12.0" + } + ] + }, + { + "nodeId": "//port_forwarder:sqlserver@bazel", + "pkgId": "//port_forwarder:sqlserver@bazel", + "deps": [ + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//database:tls_verify@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//utils/exceptions:main@bazel" + }, + { + "nodeId": "//verification:main@bazel" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "com.microsoft.sqlserver:mssql-jdbc@9.4.0.jre11" + }, + { + "nodeId": "//aws:instance_id@bazel" + }, + { + "nodeId": "//dynamo:main@bazel" + }, + { + "nodeId": "//database:postgresql_jdbc_fix@bazel" + }, + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logging:main@bazel" + }, + { + "nodeId": "//globals:main@bazel" + }, + { + "nodeId": "@jsch_patched//:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//ssh:main@bazel" + }, + { + "nodeId": "//util:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.eclipse.jetty:jetty-server@9.4.40.v20210413" + }, + { + "nodeId": "org.eclipse.jetty:jetty-servlet@9.4.40.v20210413" + }, + { + "nodeId": "org.glassfish.jersey.containers:jersey-container-servlet-core@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-server@2.31" + }, + { + "nodeId": "org.bouncycastle:bcpkix-jdk15on@1.70" + } + ] + }, + { + "nodeId": "//integrations/adjust:main@bazel", + "pkgId": "//integrations/adjust:main@bazel", + "deps": [ + { + "nodeId": "//aws:main@bazel" + }, + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//core_utils:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//google_cloud:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "@com_fasterxml_jackson_dataformat_jackson_dataformat_csv//:main@bazel" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-core@1.12.84" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-s3@1.12.84" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.google.api-client:google-api-client@1.31.1" + }, + { + "nodeId": "com.google.apis:google-api-services-storage@v1-rev20200326-1.30.9" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "com.google.http-client:google-http-client@1.39.2" + }, + { + "nodeId": "com.google.oauth-client:google-oauth-client@1.23.0" + } + ] + }, + { + "nodeId": "//integrations/adobe_analytics:main@bazel", + "pkgId": "//integrations/adobe_analytics:main@bazel", + "deps": [ + { + "nodeId": "//aws:main@bazel" + }, + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//core_utils:main@bazel" + }, + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//integrations/bidirectional_cube:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//secrets/system:main@bazel" + }, + { + "nodeId": "//util:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.api-ads:ads-lib@4.4.0" + }, + { + "nodeId": "com.google.api-ads:adwords-axis@4.4.0" + }, + { + "nodeId": "com.google.api-client:google-api-client@1.31.1" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "com.google.http-client:google-http-client@1.39.2" + }, + { + "nodeId": "com.google.oauth-client:google-oauth-client@1.23.0" + }, + { + "nodeId": "commons-codec:commons-codec@1.10" + }, + { + "nodeId": "commons-collections:commons-collections@3.2.2" + }, + { + "nodeId": "commons-configuration:commons-configuration@1.10" + }, + { + "nodeId": "io.jsonwebtoken:jjwt@0.9.0" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-common@2.31" + } + ] + }, + { + "nodeId": "//integrations/bidirectional_cube:main@bazel", + "pkgId": "//integrations/bidirectional_cube:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//integrations/priority_sync:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//markdown:main@bazel" + }, + { + "nodeId": "//utils/threading:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "io.projectreactor:reactor-core@3.4.11" + }, + { + "nodeId": "org.apache.commons:commons-lang3@3.12.0" + } + ] + }, + { + "nodeId": "//integrations/priority_sync:main@bazel", + "pkgId": "//integrations/priority_sync:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//logging:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "io.projectreactor:reactor-core@3.4.11" + }, + { + "nodeId": "org.apache.commons:commons-lang3@3.12.0" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-common@2.31" + } + ] + }, + { + "nodeId": "com.google.api-ads:ads-lib@4.4.0", + "pkgId": "com.google.api-ads:ads-lib@4.4.0", + "deps": [ + { + "nodeId": "com.google.inject.extensions:guice-multibindings@4.0" + }, + { + "nodeId": "com.google.inject.extensions:guice-assistedinject@4.0" + }, + { + "nodeId": "commons-collections:commons-collections@3.2.2" + }, + { + "nodeId": "org.slf4j:slf4j-api@1.7.13" + }, + { + "nodeId": "commons-lang:commons-lang@2.6" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "com.google.api-client:google-api-client@1.31.1" + }, + { + "nodeId": "com.google.inject:guice@4.2.2" + }, + { + "nodeId": "commons-configuration:commons-configuration@1.10" + }, + { + "nodeId": "net.sf.opencsv:opencsv@1.8" + }, + { + "nodeId": "commons-beanutils:commons-beanutils@1.9.2" + }, + { + "nodeId": "com.google.http-client:google-http-client-jackson2@1.35.0" + }, + { + "nodeId": "com.beust:jcommander@1.82" + }, + { + "nodeId": "joda-time:joda-time@2.9.2" + } + ] + }, + { + "nodeId": "com.google.inject.extensions:guice-multibindings@4.0", + "pkgId": "com.google.inject.extensions:guice-multibindings@4.0", + "deps": [ + { + "nodeId": "com.google.inject:guice@4.2.2" + } + ] + }, + { + "nodeId": "com.google.inject.extensions:guice-assistedinject@4.0", + "pkgId": "com.google.inject.extensions:guice-assistedinject@4.0", + "deps": [ + { + "nodeId": "com.google.inject:guice@4.2.2" + } + ] + }, + { + "nodeId": "net.sf.opencsv:opencsv@1.8", + "pkgId": "net.sf.opencsv:opencsv@1.8", + "deps": [] + }, + { + "nodeId": "commons-beanutils:commons-beanutils@1.9.2", + "pkgId": "commons-beanutils:commons-beanutils@1.9.2", + "deps": [ + { + "nodeId": "commons-collections:commons-collections@3.2.2" + }, + { + "nodeId": "commons-logging:commons-logging@1.2" + } + ] + }, + { + "nodeId": "com.beust:jcommander@1.82", + "pkgId": "com.beust:jcommander@1.82", + "deps": [] + }, + { + "nodeId": "com.google.api-ads:adwords-axis@4.4.0", + "pkgId": "com.google.api-ads:adwords-axis@4.4.0", + "deps": [ + { + "nodeId": "com.google.api-ads:ads-lib@4.4.0" + }, + { + "nodeId": "com.google.api-ads:ads-lib-axis@4.4.0" + } + ] + }, + { + "nodeId": "com.google.api-ads:ads-lib-axis@4.4.0", + "pkgId": "com.google.api-ads:ads-lib-axis@4.4.0", + "deps": [ + { + "nodeId": "com.google.http-client:google-http-client@1.39.2" + }, + { + "nodeId": "javax.xml:jaxrpc-api@1.1" + }, + { + "nodeId": "com.google.api-ads:ads-lib@4.4.0" + }, + { + "nodeId": "wsdl4j:wsdl4j@1.6.2" + }, + { + "nodeId": "commons-discovery:commons-discovery@0.5" + }, + { + "nodeId": "org.apache.axis:axis@1.4" + } + ] + }, + { + "nodeId": "javax.xml:jaxrpc-api@1.1", + "pkgId": "javax.xml:jaxrpc-api@1.1", + "deps": [] + }, + { + "nodeId": "wsdl4j:wsdl4j@1.6.2", + "pkgId": "wsdl4j:wsdl4j@1.6.2", + "deps": [] + }, + { + "nodeId": "commons-discovery:commons-discovery@0.5", + "pkgId": "commons-discovery:commons-discovery@0.5", + "deps": [ + { + "nodeId": "commons-logging:commons-logging@1.2" + } + ] + }, + { + "nodeId": "org.apache.axis:axis@1.4", + "pkgId": "org.apache.axis:axis@1.4", + "deps": [] + }, + { + "nodeId": "//integrations/adobe_analytics_data_feed:main@bazel", + "pkgId": "//integrations/adobe_analytics_data_feed:main@bazel", + "deps": [ + { + "nodeId": "//aws:main@bazel" + }, + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//integrations/ftp:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//markdown:main@bazel" + }, + { + "nodeId": "//port_forwarder:main@bazel" + }, + { + "nodeId": "//ssh:main@bazel" + }, + { + "nodeId": "//utils/exceptions:main@bazel" + }, + { + "nodeId": "@com_fasterxml_jackson_dataformat_jackson_dataformat_csv//:main@bazel" + }, + { + "nodeId": "@jsch_patched//:main@bazel" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-s3@1.12.84" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "com.microsoft.azure:azure-storage@8.6.3" + }, + { + "nodeId": "commons-net:commons-net@3.3" + }, + { + "nodeId": "org.apache.commons:commons-compress@1.16" + } + ] + }, + { + "nodeId": "//integrations/ftp:main@bazel", + "pkgId": "//integrations/ftp:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//integrations/file:main@bazel" + }, + { + "nodeId": "//ip_utils:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//port_forwarder:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "commons-net:commons-net@3.3" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.awaitility:awaitility@4.0.3" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-common@2.31" + } + ] + }, + { + "nodeId": "//integrations/file:main@bazel", + "pkgId": "//integrations/file:main@bazel", + "deps": [ + { + "nodeId": "//common:main@bazel" + }, + { + "nodeId": "//core_implementation:main@bazel" + }, + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//crypto:main@bazel" + }, + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//markdown:main@bazel" + }, + { + "nodeId": "//micrometer:main@bazel" + }, + { + "nodeId": "//ssh:main@bazel" + }, + { + "nodeId": "//utils/exceptions:main@bazel" + }, + { + "nodeId": "//utils/fsort:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "@com_fasterxml_jackson_dataformat_jackson_dataformat_csv//:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.fasterxml.util:java-merge-sort@1.0.0" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "com.monitorjbl:xlsx-streamer@1.2.1" + }, + { + "nodeId": "commons-io:commons-io@2.4" + }, + { + "nodeId": "commons-lang:commons-lang@2.6" + }, + { + "nodeId": "io.micrometer:micrometer-core@1.5.3" + }, + { + "nodeId": "io.projectreactor:reactor-core@3.4.11" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.apache.avro:avro@1.11.0" + }, + { + "nodeId": "org.apache.commons:commons-compress@1.16" + }, + { + "nodeId": "org.apache.commons:commons-lang3@3.12.0" + }, + { + "nodeId": "org.apache.hadoop:hadoop-auth@2.7.7" + }, + { + "nodeId": "org.apache.hadoop:hadoop-common@2.7.7" + }, + { + "nodeId": "org.apache.hadoop:hadoop-mapreduce-client-core@2.7.7" + }, + { + "nodeId": "org.apache.parquet:parquet-column@1.12.2" + }, + { + "nodeId": "org.apache.parquet:parquet-common@1.12.2" + }, + { + "nodeId": "org.apache.parquet:parquet-hadoop@1.12.2" + }, + { + "nodeId": "org.apache.poi:poi@3.17" + }, + { + "nodeId": "org.apache.poi:poi-ooxml@3.17" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-common@2.31" + } + ] + }, + { + "nodeId": "com.fasterxml.util:java-merge-sort@1.0.0", + "pkgId": "com.fasterxml.util:java-merge-sort@1.0.0", + "deps": [] + }, + { + "nodeId": "com.monitorjbl:xlsx-streamer@1.2.1", + "pkgId": "com.monitorjbl:xlsx-streamer@1.2.1", + "deps": [ + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "org.slf4j:slf4j-api@1.7.13" + }, + { + "nodeId": "org.apache.poi:ooxml-schemas@1.3" + }, + { + "nodeId": "org.apache.poi:poi-ooxml@3.17" + }, + { + "nodeId": "com.rackspace.apache:xerces2-xsd11@2.11.1" + }, + { + "nodeId": "xml-apis:xml-apis@1.4.01" + } + ] + }, + { + "nodeId": "org.apache.poi:ooxml-schemas@1.3", + "pkgId": "org.apache.poi:ooxml-schemas@1.3", + "deps": [ + { + "nodeId": "org.apache.xmlbeans:xmlbeans@2.6.0" + } + ] + }, + { + "nodeId": "org.apache.xmlbeans:xmlbeans@2.6.0", + "pkgId": "org.apache.xmlbeans:xmlbeans@2.6.0", + "deps": [ + { + "nodeId": "stax:stax-api@1.0.1" + } + ] + }, + { + "nodeId": "org.apache.poi:poi-ooxml@3.17", + "pkgId": "org.apache.poi:poi-ooxml@3.17", + "deps": [ + { + "nodeId": "com.github.virtuald:curvesapi@1.04" + }, + { + "nodeId": "org.apache.poi:poi@3.17" + }, + { + "nodeId": "org.apache.poi:poi-ooxml-schemas@3.17" + } + ] + }, + { + "nodeId": "com.github.virtuald:curvesapi@1.04", + "pkgId": "com.github.virtuald:curvesapi@1.04", + "deps": [] + }, + { + "nodeId": "org.apache.poi:poi@3.17", + "pkgId": "org.apache.poi:poi@3.17", + "deps": [ + { + "nodeId": "commons-codec:commons-codec@1.10" + }, + { + "nodeId": "org.apache.commons:commons-collections4@4.1" + } + ] + }, + { + "nodeId": "org.apache.poi:poi-ooxml-schemas@3.17", + "pkgId": "org.apache.poi:poi-ooxml-schemas@3.17", + "deps": [ + { + "nodeId": "org.apache.xmlbeans:xmlbeans@2.6.0" + } + ] + }, + { + "nodeId": "com.rackspace.apache:xerces2-xsd11@2.11.1", + "pkgId": "com.rackspace.apache:xerces2-xsd11@2.11.1", + "deps": [ + { + "nodeId": "com.rackspace.eclipse.webtools.sourceediting:org.eclipse.wst.xml.xpath2.processor@2.1.100" + }, + { + "nodeId": "xml-resolver:xml-resolver@1.2" + } + ] + }, + { + "nodeId": "com.rackspace.eclipse.webtools.sourceediting:org.eclipse.wst.xml.xpath2.processor@2.1.100", + "pkgId": "com.rackspace.eclipse.webtools.sourceediting:org.eclipse.wst.xml.xpath2.processor@2.1.100", + "deps": [ + { + "nodeId": "com.ibm.icu:icu4j@62.1" + }, + { + "nodeId": "edu.princeton.cup:java-cup@10k" + } + ] + }, + { + "nodeId": "edu.princeton.cup:java-cup@10k", + "pkgId": "edu.princeton.cup:java-cup@10k", + "deps": [] + }, + { + "nodeId": "xml-resolver:xml-resolver@1.2", + "pkgId": "xml-resolver:xml-resolver@1.2", + "deps": [] + }, + { + "nodeId": "xml-apis:xml-apis@1.4.01", + "pkgId": "xml-apis:xml-apis@1.4.01", + "deps": [] + }, + { + "nodeId": "org.awaitility:awaitility@4.0.3", + "pkgId": "org.awaitility:awaitility@4.0.3", + "deps": [ + { + "nodeId": "org.hamcrest:hamcrest@2.2" + } + ] + }, + { + "nodeId": "//integrations/adp_workforce_now:main@bazel", + "pkgId": "//integrations/adp_workforce_now:main@bazel", + "deps": [ + { + "nodeId": "//aws:main@bazel" + }, + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//core_utils:main@bazel" + }, + { + "nodeId": "//crypto:main@bazel" + }, + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//ecomm:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//integrations/isolated_endpoint_sync:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//util:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.bouncycastle:bcpkix-jdk15on@1.70" + }, + { + "nodeId": "org.bouncycastle:bcprov-jdk15to18@1.70" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-common@2.31" + } + ] + }, + { + "nodeId": "//ecomm:main@bazel", + "pkgId": "//ecomm:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//core_utils:main@bazel" + }, + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//secrets/system:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.dataformat:jackson-dataformat-xml@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-xml-provider@2.9.8" + }, + { + "nodeId": "com.fasterxml.woodstox:woodstox-core@5.0.3" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "com.intellij:annotations@12.0" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "javax.xml.stream:stax-api@1.0-2" + }, + { + "nodeId": "org.codehaus.woodstox:stax2-api@3.1.4" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-common@2.31" + }, + { + "nodeId": "stax:stax-api@1.0.1" + } + ] + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-xml-provider@2.9.8", + "pkgId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-xml-provider@2.9.8", + "deps": [ + { + "nodeId": "org.codehaus.woodstox:stax2-api@3.1.4" + }, + { + "nodeId": "org.codehaus.woodstox:woodstox-core-asl@4.2.0" + }, + { + "nodeId": "com.fasterxml.jackson.dataformat:jackson-dataformat-xml@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.module:jackson-module-jaxb-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-base@2.9.8" + } + ] + }, + { + "nodeId": "org.codehaus.woodstox:woodstox-core-asl@4.2.0", + "pkgId": "org.codehaus.woodstox:woodstox-core-asl@4.2.0", + "deps": [ + { + "nodeId": "javax.xml.stream:stax-api@1.0-2" + }, + { + "nodeId": "org.codehaus.woodstox:stax2-api@3.1.4" + } + ] + }, + { + "nodeId": "//integrations/adroll:main@bazel", + "pkgId": "//integrations/adroll:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//integrations/bidirectional_cube:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//markdown:main@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//secrets/integration:main@bazel" + }, + { + "nodeId": "//secrets/system:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.api-client:google-api-client@1.31.1" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "com.google.http-client:google-http-client@1.39.2" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.apache.commons:commons-lang3@3.12.0" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-common@2.31" + }, + { + "nodeId": "org.json:json@20171018" + } + ] + }, + { + "nodeId": "//integrations/adwords:main@bazel", + "pkgId": "//integrations/adwords:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//core_utils:main@bazel" + }, + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//integrations/cube:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//markdown:main@bazel" + }, + { + "nodeId": "//micrometer:main@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//secrets/system:main@bazel" + }, + { + "nodeId": "//services/resync:main@bazel" + }, + { + "nodeId": "//utils/exceptions:main@bazel" + }, + { + "nodeId": "//utils/threading:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "@com_fasterxml_jackson_dataformat_jackson_dataformat_csv//:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.google.api-ads:ads-lib@4.4.0" + }, + { + "nodeId": "com.google.api-ads:adwords-axis@4.4.0" + }, + { + "nodeId": "com.google.api-ads:google-ads@19.0.0" + }, + { + "nodeId": "com.google.api-ads:google-ads-stubs-v11@19.0.0" + }, + { + "nodeId": "com.google.api-client:google-api-client@1.31.1" + }, + { + "nodeId": "com.google.api:gax@2.3.0" + }, + { + "nodeId": "com.google.api:gax-grpc@2.3.0" + }, + { + "nodeId": "com.google.auth:google-auth-library-credentials@0.9.1" + }, + { + "nodeId": "com.google.auth:google-auth-library-oauth2-http@0.22.0" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "com.google.http-client:google-http-client@1.39.2" + }, + { + "nodeId": "com.google.oauth-client:google-oauth-client@1.23.0" + }, + { + "nodeId": "com.google.protobuf:protobuf-java@3.18.2" + }, + { + "nodeId": "com.google.protobuf:protobuf-java-util@3.18.2" + }, + { + "nodeId": "commons-beanutils:commons-beanutils@1.9.2" + }, + { + "nodeId": "commons-configuration:commons-configuration@1.10" + }, + { + "nodeId": "org.apache.commons:commons-collections4@4.1" + }, + { + "nodeId": "org.apache.commons:commons-lang3@3.12.0" + }, + { + "nodeId": "org.threeten:threetenbp@1.3.3" + } + ] + }, + { + "nodeId": "//integrations/cube:main@bazel", + "pkgId": "//integrations/cube:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//markdown:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + } + ] + }, + { + "nodeId": "com.google.api-ads:google-ads@19.0.0", + "pkgId": "com.google.api-ads:google-ads@19.0.0", + "deps": [ + { + "nodeId": "com.google.api:gax@2.3.0" + }, + { + "nodeId": "org.slf4j:slf4j-api@1.7.13" + }, + { + "nodeId": "com.google.auth:google-auth-library-oauth2-http@0.22.0" + }, + { + "nodeId": "io.grpc:grpc-stub@1.32.2" + }, + { + "nodeId": "com.google.auto.service:auto-service@1.0-rc2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "com.google.api-ads:google-ads-codegen@19.0.0" + }, + { + "nodeId": "com.google.auto.value:auto-value-annotations@1.9" + }, + { + "nodeId": "com.google.api:gax-grpc@2.3.0" + }, + { + "nodeId": "javax.annotation:javax.annotation-api@1.3.2" + }, + { + "nodeId": "io.grpc:grpc-protobuf@1.32.2" + }, + { + "nodeId": "com.google.protobuf:protobuf-java@3.18.2" + } + ] + }, + { + "nodeId": "com.google.auto.service:auto-service@1.0-rc2", + "pkgId": "com.google.auto.service:auto-service@1.0-rc2", + "deps": [ + { + "nodeId": "com.google.auto:auto-common@0.10" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + } + ] + }, + { + "nodeId": "com.google.auto:auto-common@0.10", + "pkgId": "com.google.auto:auto-common@0.10", + "deps": [ + { + "nodeId": "com.google.guava:guava@25.1-jre" + } + ] + }, + { + "nodeId": "com.google.api-ads:google-ads-codegen@19.0.0", + "pkgId": "com.google.api-ads:google-ads-codegen@19.0.0", + "deps": [ + { + "nodeId": "com.google.api:gax@2.3.0" + }, + { + "nodeId": "com.google.api-ads:google-ads-stubs-v11@19.0.0" + }, + { + "nodeId": "org.slf4j:slf4j-api@1.7.13" + }, + { + "nodeId": "com.google.auth:google-auth-library-oauth2-http@0.22.0" + }, + { + "nodeId": "io.grpc:grpc-stub@1.32.2" + }, + { + "nodeId": "com.google.auto.service:auto-service@1.0-rc2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "com.google.api-ads:google-ads-stubs-v10@19.0.0" + }, + { + "nodeId": "com.google.api-ads:google-ads-stubs-v9@19.0.0" + }, + { + "nodeId": "com.squareup:javapoet@1.11.1" + }, + { + "nodeId": "org.reflections:reflections@0.9.12" + }, + { + "nodeId": "com.google.api:gax-grpc@2.3.0" + }, + { + "nodeId": "javax.annotation:javax.annotation-api@1.3.2" + }, + { + "nodeId": "com.google.api-ads:google-ads-stubs-lib@19.0.0" + }, + { + "nodeId": "io.grpc:grpc-protobuf@1.32.2" + }, + { + "nodeId": "com.google.protobuf:protobuf-java@3.18.2" + } + ] + }, + { + "nodeId": "com.google.api-ads:google-ads-stubs-v11@19.0.0", + "pkgId": "com.google.api-ads:google-ads-stubs-v11@19.0.0", + "deps": [ + { + "nodeId": "com.google.api:gax@2.3.0" + }, + { + "nodeId": "com.google.auth:google-auth-library-oauth2-http@0.22.0" + }, + { + "nodeId": "io.grpc:grpc-stub@1.32.2" + }, + { + "nodeId": "com.google.auto.service:auto-service@1.0-rc2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "com.google.api:gax-grpc@2.3.0" + }, + { + "nodeId": "javax.annotation:javax.annotation-api@1.3.2" + }, + { + "nodeId": "com.google.api-ads:google-ads-stubs-lib@19.0.0" + }, + { + "nodeId": "io.grpc:grpc-protobuf@1.32.2" + }, + { + "nodeId": "com.google.protobuf:protobuf-java@3.18.2" + } + ] + }, + { + "nodeId": "com.google.api-ads:google-ads-stubs-lib@19.0.0", + "pkgId": "com.google.api-ads:google-ads-stubs-lib@19.0.0", + "deps": [ + { + "nodeId": "com.google.api:gax@2.3.0" + }, + { + "nodeId": "org.slf4j:slf4j-api@1.7.13" + }, + { + "nodeId": "com.google.auth:google-auth-library-oauth2-http@0.22.0" + }, + { + "nodeId": "io.grpc:grpc-stub@1.32.2" + }, + { + "nodeId": "com.google.auto.service:auto-service@1.0-rc2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "com.google.api:gax-grpc@2.3.0" + }, + { + "nodeId": "javax.annotation:javax.annotation-api@1.3.2" + }, + { + "nodeId": "io.grpc:grpc-protobuf@1.32.2" + }, + { + "nodeId": "com.google.protobuf:protobuf-java@3.18.2" + } + ] + }, + { + "nodeId": "com.google.api-ads:google-ads-stubs-v10@19.0.0", + "pkgId": "com.google.api-ads:google-ads-stubs-v10@19.0.0", + "deps": [ + { + "nodeId": "com.google.api:gax@2.3.0" + }, + { + "nodeId": "com.google.auth:google-auth-library-oauth2-http@0.22.0" + }, + { + "nodeId": "io.grpc:grpc-stub@1.32.2" + }, + { + "nodeId": "com.google.auto.service:auto-service@1.0-rc2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "com.google.api:gax-grpc@2.3.0" + }, + { + "nodeId": "javax.annotation:javax.annotation-api@1.3.2" + }, + { + "nodeId": "com.google.api-ads:google-ads-stubs-lib@19.0.0" + }, + { + "nodeId": "io.grpc:grpc-protobuf@1.32.2" + }, + { + "nodeId": "com.google.protobuf:protobuf-java@3.18.2" + } + ] + }, + { + "nodeId": "com.google.api-ads:google-ads-stubs-v9@19.0.0", + "pkgId": "com.google.api-ads:google-ads-stubs-v9@19.0.0", + "deps": [ + { + "nodeId": "com.google.api:gax@2.3.0" + }, + { + "nodeId": "com.google.auth:google-auth-library-oauth2-http@0.22.0" + }, + { + "nodeId": "io.grpc:grpc-stub@1.32.2" + }, + { + "nodeId": "com.google.auto.service:auto-service@1.0-rc2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "com.google.api:gax-grpc@2.3.0" + }, + { + "nodeId": "javax.annotation:javax.annotation-api@1.3.2" + }, + { + "nodeId": "com.google.api-ads:google-ads-stubs-lib@19.0.0" + }, + { + "nodeId": "io.grpc:grpc-protobuf@1.32.2" + }, + { + "nodeId": "com.google.protobuf:protobuf-java@3.18.2" + } + ] + }, + { + "nodeId": "com.squareup:javapoet@1.11.1", + "pkgId": "com.squareup:javapoet@1.11.1", + "deps": [] + }, + { + "nodeId": "org.reflections:reflections@0.9.12", + "pkgId": "org.reflections:reflections@0.9.12", + "deps": [ + { + "nodeId": "org.javassist:javassist@3.21.0-GA" + } + ] + }, + { + "nodeId": "//integrations/google_ads:main@bazel", + "pkgId": "//integrations/google_ads:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//core_utils:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//integrations/adwords:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "commons-beanutils:commons-beanutils@1.9.2" + } + ] + }, + { + "nodeId": "//integrations/airtable:main@bazel", + "pkgId": "//integrations/airtable:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//markdown:main@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//secrets/integration:main@bazel" + }, + { + "nodeId": "//secrets/system:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + } + ] + }, + { + "nodeId": "//integrations/amazon_ads:main@bazel", + "pkgId": "//integrations/amazon_ads:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//core_utils:main@bazel" + }, + { + "nodeId": "//crypto:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//integrations/bidirectional_cube:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//secrets/system:main@bazel" + }, + { + "nodeId": "//util:main@bazel" + }, + { + "nodeId": "//utils/exceptions:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "com.intellij:annotations@12.0" + }, + { + "nodeId": "commons-io:commons-io@2.4" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.apache.commons:commons-collections4@4.1" + }, + { + "nodeId": "org.apache.commons:commons-lang3@3.12.0" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + } + ] + }, + { + "nodeId": "//integrations/amplitude:main@bazel", + "pkgId": "//integrations/amplitude:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//integrations/priority_sync:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//secrets/integration:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "commons-io:commons-io@2.4" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-common@2.31" + } + ] + }, + { + "nodeId": "//integrations/anaplan:main@bazel", + "pkgId": "//integrations/anaplan:main@bazel", + "deps": [ + { + "nodeId": "//aws:main@bazel" + }, + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//crypto:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//integrations/isolated_endpoint_sync:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//utils/exceptions:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "@com_fasterxml_jackson_dataformat_jackson_dataformat_csv//:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "commons-lang:commons-lang@2.6" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + } + ] + }, + { + "nodeId": "//integrations/apple_search_ads:main@bazel", + "pkgId": "//integrations/apple_search_ads:main@bazel", + "deps": [ + { + "nodeId": "//aws:main@bazel" + }, + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//core_utils:main@bazel" + }, + { + "nodeId": "//crypto:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//integrations/bidirectional_cube:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//util:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "io.jsonwebtoken:jjwt@0.9.0" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.bouncycastle:bcpkix-jdk15on@1.70" + }, + { + "nodeId": "org.bouncycastle:bcprov-jdk15to18@1.70" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-common@2.31" + } + ] + }, + { + "nodeId": "//integrations/appsflyer:main@bazel", + "pkgId": "//integrations/appsflyer:main@bazel", + "deps": [ + { + "nodeId": "//aws:main@bazel" + }, + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//core_utils:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//integrations/file:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//markdown:main@bazel" + }, + { + "nodeId": "//webhook/client:main@bazel" + }, + { + "nodeId": "@com_fasterxml_jackson_dataformat_jackson_dataformat_csv//:main@bazel" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-core@1.12.84" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-s3@1.12.84" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.api-client:google-api-client@1.31.1" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "com.google.http-client:google-http-client@1.39.2" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.apache.avro:avro@1.11.0" + }, + { + "nodeId": "org.apache.commons:commons-lang3@3.12.0" + }, + { + "nodeId": "org.apache.hadoop:hadoop-auth@2.7.7" + }, + { + "nodeId": "org.apache.hadoop:hadoop-common@2.7.7" + }, + { + "nodeId": "org.apache.hadoop:hadoop-mapreduce-client-core@2.7.7" + }, + { + "nodeId": "org.apache.parquet:parquet-avro@1.12.2" + }, + { + "nodeId": "org.apache.parquet:parquet-column@1.12.2" + }, + { + "nodeId": "org.apache.parquet:parquet-common@1.12.2" + }, + { + "nodeId": "org.apache.parquet:parquet-hadoop@1.12.2" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-common@2.31" + } + ] + }, + { + "nodeId": "//integrations/asana:main@bazel", + "pkgId": "//integrations/asana:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//logging:main@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//secrets/system:main@bazel" + }, + { + "nodeId": "//util:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.api-client:google-api-client@1.31.1" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "com.google.http-client:google-http-client@1.39.2" + }, + { + "nodeId": "io.projectreactor:reactor-core@3.4.11" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-common@2.31" + } + ] + }, + { + "nodeId": "//integrations/aws_cloudtrail:main@bazel", + "pkgId": "//integrations/aws_cloudtrail:main@bazel", + "deps": [ + { + "nodeId": "//aws:main@bazel" + }, + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//integrations/file:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-s3@1.12.84" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + } + ] + }, + { + "nodeId": "//integrations/aws_inventory:main@bazel", + "pkgId": "//integrations/aws_inventory:main@bazel", + "deps": [ + { + "nodeId": "//aws:main@bazel" + }, + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//integrations/file:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-cloudtrail@1.12.84" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-config@1.12.84" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-core@1.12.84" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-ec2@1.12.84" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-elasticloadbalancingv2@1.12.84" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-iam@1.12.84" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-kms@1.12.84" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-route53@1.12.84" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-s3@1.12.84" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + } + ] + }, + { + "nodeId": "//integrations/azure_blob_storage:main@bazel", + "pkgId": "//integrations/azure_blob_storage:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//integrations/file:main@bazel" + }, + { + "nodeId": "//ip_utils:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "com.microsoft.azure:azure-storage@8.6.3" + }, + { + "nodeId": "io.projectreactor:reactor-core@3.4.11" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-common@2.31" + } + ] + }, + { + "nodeId": "//integrations/azure_consumer_file:main@bazel", + "pkgId": "//integrations/azure_consumer_file:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//integrations/file:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//markdown:main@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//secrets/integration:main@bazel" + }, + { + "nodeId": "//secrets/system:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.apache.poi:poi@3.17" + } + ] + }, + { + "nodeId": "//integrations/azure_service_bus:main@bazel", + "pkgId": "//integrations/azure_service_bus:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//integrations/kafka:main@bazel" + }, + { + "nodeId": "//ip_utils:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//secrets/integration:main@bazel" + }, + { + "nodeId": "//secrets/system:main@bazel" + }, + { + "nodeId": "//shaded_dependencies/azure:azure_core_shaded@bazel" + }, + { + "nodeId": "//shaded_dependencies/azure:azure_messaging_servicebus_shaded@bazel" + }, + { + "nodeId": "//shaded_dependencies/azure:microsoft_azure_servicebus_shaded@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "//ssh:main@bazel" + }, + { + "nodeId": "@jsch_patched//:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "io.projectreactor:reactor-core@3.4.11" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.apache.avro:avro@1.11.0" + }, + { + "nodeId": "com.azure:azure-core-amqp@2.3.3" + }, + { + "nodeId": "com.azure:azure-core-http-netty@1.11.1" + } + ] + }, + { + "nodeId": "//integrations/kafka:main@bazel", + "pkgId": "//integrations/kafka:main@bazel", + "deps": [ + { + "nodeId": "//aws:main@bazel" + }, + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//crypto:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//ip_utils:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//markdown:main@bazel" + }, + { + "nodeId": "//shaded_dependencies/azure:azure_messaging_eventhubs_shaded@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "com.google.protobuf:protobuf-java@3.18.2" + }, + { + "nodeId": "commons-lang:commons-lang@2.6" + }, + { + "nodeId": "io.confluent:kafka-protobuf-serializer@5.5.1" + }, + { + "nodeId": "io.projectreactor:reactor-core@3.4.11" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "javax.xml.bind:jaxb-api@2.2.2" + }, + { + "nodeId": "org.apache.avro:avro@1.11.0" + }, + { + "nodeId": "org.apache.kafka:kafka-clients@2.1.0" + }, + { + "nodeId": "org.bouncycastle:bcpkix-jdk15on@1.70" + }, + { + "nodeId": "org.bouncycastle:bcprov-jdk15to18@1.70" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-common@2.31" + } + ] + }, + { + "nodeId": "//shaded_dependencies/azure:azure_messaging_eventhubs_shaded@bazel", + "pkgId": "//shaded_dependencies/azure:azure_messaging_eventhubs_shaded@bazel", + "deps": [] + }, + { + "nodeId": "io.confluent:kafka-protobuf-serializer@5.5.1", + "pkgId": "io.confluent:kafka-protobuf-serializer@5.5.1", + "deps": [ + { + "nodeId": "io.confluent:kafka-schema-serializer@5.5.1" + }, + { + "nodeId": "io.confluent:kafka-protobuf-provider@5.5.1" + }, + { + "nodeId": "com.google.protobuf:protobuf-java-util@3.18.2" + }, + { + "nodeId": "io.confluent:common-utils@5.5.1" + }, + { + "nodeId": "io.confluent:kafka-schema-registry-client@5.5.1" + } + ] + }, + { + "nodeId": "io.confluent:kafka-schema-serializer@5.5.1", + "pkgId": "io.confluent:kafka-schema-serializer@5.5.1", + "deps": [ + { + "nodeId": "io.confluent:common-config@5.5.1" + }, + { + "nodeId": "io.confluent:common-utils@5.5.1" + }, + { + "nodeId": "io.confluent:kafka-schema-registry-client@5.5.1" + } + ] + }, + { + "nodeId": "io.confluent:common-config@5.5.1", + "pkgId": "io.confluent:common-config@5.5.1", + "deps": [ + { + "nodeId": "io.confluent:common-utils@5.5.1" + }, + { + "nodeId": "org.slf4j:slf4j-api@1.7.13" + } + ] + }, + { + "nodeId": "io.confluent:common-utils@5.5.1", + "pkgId": "io.confluent:common-utils@5.5.1", + "deps": [ + { + "nodeId": "org.slf4j:slf4j-api@1.7.13" + } + ] + }, + { + "nodeId": "io.confluent:kafka-schema-registry-client@5.5.1", + "pkgId": "io.confluent:kafka-schema-registry-client@5.5.1", + "deps": [ + { + "nodeId": "org.apache.kafka:kafka-clients@2.1.0" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "org.apache.avro:avro@1.11.0" + }, + { + "nodeId": "javax.ws.rs:javax.ws.rs-api@2.1.1" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-common@2.31" + }, + { + "nodeId": "io.confluent:common-utils@5.5.1" + }, + { + "nodeId": "io.confluent:common-config@5.5.1" + }, + { + "nodeId": "io.swagger:swagger-annotations@1.6.0" + } + ] + }, + { + "nodeId": "org.apache.kafka:kafka-clients@2.1.0", + "pkgId": "org.apache.kafka:kafka-clients@2.1.0", + "deps": [ + { + "nodeId": "com.github.luben:zstd-jni@1.4.9-1" + }, + { + "nodeId": "org.lz4:lz4-java@1.8.0" + }, + { + "nodeId": "org.slf4j:slf4j-api@1.7.13" + }, + { + "nodeId": "org.xerial.snappy:snappy-java@1.1.8.4" + } + ] + }, + { + "nodeId": "org.lz4:lz4-java@1.8.0", + "pkgId": "org.lz4:lz4-java@1.8.0", + "deps": [] + }, + { + "nodeId": "io.confluent:kafka-protobuf-provider@5.5.1", + "pkgId": "io.confluent:kafka-protobuf-provider@5.5.1", + "deps": [ + { + "nodeId": "com.squareup.wire:wire-schema@3.2.2" + }, + { + "nodeId": "com.google.protobuf:protobuf-java-util@3.18.2" + }, + { + "nodeId": "io.confluent:common-utils@5.5.1" + }, + { + "nodeId": "io.confluent:kafka-schema-registry-client@5.5.1" + }, + { + "nodeId": "com.google.protobuf:protobuf-java@3.18.2" + } + ] + }, + { + "nodeId": "com.squareup.wire:wire-schema@3.2.2", + "pkgId": "com.squareup.wire:wire-schema@3.2.2", + "deps": [ + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "com.squareup.wire:wire-runtime@3.2.2" + }, + { + "nodeId": "org.jetbrains.kotlin:kotlin-stdlib-jdk8@1.3.71" + }, + { + "nodeId": "org.jetbrains.kotlin:kotlin-stdlib-common@1.3.71" + }, + { + "nodeId": "com.squareup.okio:okio@1.13.0" + } + ] + }, + { + "nodeId": "com.squareup.wire:wire-runtime@3.2.2", + "pkgId": "com.squareup.wire:wire-runtime@3.2.2", + "deps": [ + { + "nodeId": "com.squareup.okio:okio@1.13.0" + }, + { + "nodeId": "org.jetbrains.kotlin:kotlin-stdlib@1.3.50" + }, + { + "nodeId": "org.jetbrains.kotlin:kotlin-stdlib-common@1.3.71" + } + ] + }, + { + "nodeId": "org.jetbrains.kotlin:kotlin-stdlib-jdk8@1.3.71", + "pkgId": "org.jetbrains.kotlin:kotlin-stdlib-jdk8@1.3.71", + "deps": [ + { + "nodeId": "org.jetbrains.kotlin:kotlin-stdlib@1.3.50" + }, + { + "nodeId": "org.jetbrains.kotlin:kotlin-stdlib-jdk7@1.3.71" + } + ] + }, + { + "nodeId": "org.jetbrains.kotlin:kotlin-stdlib-jdk7@1.3.71", + "pkgId": "org.jetbrains.kotlin:kotlin-stdlib-jdk7@1.3.71", + "deps": [ + { + "nodeId": "org.jetbrains.kotlin:kotlin-stdlib@1.3.50" + } + ] + }, + { + "nodeId": "//shaded_dependencies/azure:azure_core_shaded@bazel", + "pkgId": "//shaded_dependencies/azure:azure_core_shaded@bazel", + "deps": [] + }, + { + "nodeId": "//shaded_dependencies/azure:azure_messaging_servicebus_shaded@bazel", + "pkgId": "//shaded_dependencies/azure:azure_messaging_servicebus_shaded@bazel", + "deps": [] + }, + { + "nodeId": "//shaded_dependencies/azure:microsoft_azure_servicebus_shaded@bazel", + "pkgId": "//shaded_dependencies/azure:microsoft_azure_servicebus_shaded@bazel", + "deps": [] + }, + { + "nodeId": "com.azure:azure-core-amqp@2.3.3", + "pkgId": "com.azure:azure-core-amqp@2.3.3", + "deps": [ + { + "nodeId": "com.azure:azure-core@1.21.0" + }, + { + "nodeId": "com.microsoft.azure:qpid-proton-j-extensions@1.2.4" + }, + { + "nodeId": "org.apache.qpid:proton-j@0.33.8" + } + ] + }, + { + "nodeId": "com.azure:azure-core@1.21.0", + "pkgId": "com.azure:azure-core@1.21.0", + "deps": [ + { + "nodeId": "io.projectreactor:reactor-core@3.4.10" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.12.5" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.12.5" + }, + { + "nodeId": "io.netty:netty-tcnative-boringssl-static@2.0.43.Final" + }, + { + "nodeId": "org.slf4j:slf4j-api@1.7.32" + }, + { + "nodeId": "com.fasterxml.jackson.dataformat:jackson-dataformat-xml@2.12.5" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.12.5" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.12.5" + } + ] + }, + { + "nodeId": "io.projectreactor:reactor-core@3.4.10", + "pkgId": "io.projectreactor:reactor-core@3.4.10", + "deps": [ + { + "nodeId": "org.reactivestreams:reactive-streams@1.0.3" + } + ] + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.12.5", + "pkgId": "com.fasterxml.jackson.core:jackson-annotations@2.12.5", + "deps": [] + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.12.5", + "pkgId": "com.fasterxml.jackson.core:jackson-databind@2.12.5", + "deps": [ + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.12.5" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.12.5" + } + ] + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.12.5", + "pkgId": "com.fasterxml.jackson.core:jackson-core@2.12.5", + "deps": [] + }, + { + "nodeId": "io.netty:netty-tcnative-boringssl-static@2.0.43.Final", + "pkgId": "io.netty:netty-tcnative-boringssl-static@2.0.43.Final", + "deps": [] + }, + { + "nodeId": "org.slf4j:slf4j-api@1.7.32", + "pkgId": "org.slf4j:slf4j-api@1.7.32", + "deps": [] + }, + { + "nodeId": "com.fasterxml.jackson.dataformat:jackson-dataformat-xml@2.12.5", + "pkgId": "com.fasterxml.jackson.dataformat:jackson-dataformat-xml@2.12.5", + "deps": [ + { + "nodeId": "com.fasterxml.jackson.module:jackson-module-jaxb-annotations@2.12.5" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.12.5" + }, + { + "nodeId": "org.codehaus.woodstox:stax2-api@3.1.4" + }, + { + "nodeId": "com.fasterxml.woodstox:woodstox-core@5.0.3" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.12.5" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.12.5" + } + ] + }, + { + "nodeId": "com.fasterxml.jackson.module:jackson-module-jaxb-annotations@2.12.5", + "pkgId": "com.fasterxml.jackson.module:jackson-module-jaxb-annotations@2.12.5", + "deps": [ + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.12.5" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.12.5" + }, + { + "nodeId": "jakarta.activation:jakarta.activation-api@1.2.2" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.12.5" + }, + { + "nodeId": "jakarta.xml.bind:jakarta.xml.bind-api@2.3.3" + } + ] + }, + { + "nodeId": "jakarta.activation:jakarta.activation-api@1.2.2", + "pkgId": "jakarta.activation:jakarta.activation-api@1.2.2", + "deps": [] + }, + { + "nodeId": "jakarta.xml.bind:jakarta.xml.bind-api@2.3.3", + "pkgId": "jakarta.xml.bind:jakarta.xml.bind-api@2.3.3", + "deps": [ + { + "nodeId": "jakarta.activation:jakarta.activation-api@1.2.2" + } + ] + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.12.5", + "pkgId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.12.5", + "deps": [ + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.12.5" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.12.5" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.12.5" + } + ] + }, + { + "nodeId": "com.microsoft.azure:qpid-proton-j-extensions@1.2.4", + "pkgId": "com.microsoft.azure:qpid-proton-j-extensions@1.2.4", + "deps": [ + { + "nodeId": "org.apache.qpid:proton-j@0.33.8" + }, + { + "nodeId": "org.slf4j:slf4j-api@1.7.32" + } + ] + }, + { + "nodeId": "org.apache.qpid:proton-j@0.33.8", + "pkgId": "org.apache.qpid:proton-j@0.33.8", + "deps": [] + }, + { + "nodeId": "com.azure:azure-core-http-netty@1.11.1", + "pkgId": "com.azure:azure-core-http-netty@1.11.1", + "deps": [ + { + "nodeId": "io.netty:netty-handler-proxy@4.1.68.Final" + }, + { + "nodeId": "io.projectreactor.netty:reactor-netty-http@1.0.11" + }, + { + "nodeId": "io.netty:netty-buffer@4.1.68.Final" + }, + { + "nodeId": "io.netty:netty-handler@4.1.68.Final" + }, + { + "nodeId": "io.netty:netty-codec-http@4.1.68.Final" + }, + { + "nodeId": "io.netty:netty-transport-native-epoll:jar:linux-x86_64@4.1.68.Final" + }, + { + "nodeId": "io.netty:netty-transport-native-kqueue:jar:osx-x86_64@4.1.68.Final" + }, + { + "nodeId": "io.netty:netty-transport-native-unix-common@4.1.68.Final" + }, + { + "nodeId": "io.netty:netty-codec-http2@4.1.68.Final" + }, + { + "nodeId": "com.azure:azure-core@1.21.0" + } + ] + }, + { + "nodeId": "io.netty:netty-handler-proxy@4.1.68.Final", + "pkgId": "io.netty:netty-handler-proxy@4.1.68.Final", + "deps": [ + { + "nodeId": "io.netty:netty-common@4.1.68.Final" + }, + { + "nodeId": "io.netty:netty-codec@4.1.68.Final" + }, + { + "nodeId": "io.netty:netty-codec-socks@4.1.68.Final" + }, + { + "nodeId": "io.netty:netty-buffer@4.1.68.Final" + }, + { + "nodeId": "io.netty:netty-codec-http@4.1.68.Final" + }, + { + "nodeId": "io.netty:netty-transport@4.1.68.Final" + } + ] + }, + { + "nodeId": "io.netty:netty-common@4.1.68.Final", + "pkgId": "io.netty:netty-common@4.1.68.Final", + "deps": [] + }, + { + "nodeId": "io.netty:netty-codec@4.1.68.Final", + "pkgId": "io.netty:netty-codec@4.1.68.Final", + "deps": [ + { + "nodeId": "io.netty:netty-buffer@4.1.68.Final" + }, + { + "nodeId": "io.netty:netty-common@4.1.68.Final" + }, + { + "nodeId": "io.netty:netty-transport@4.1.68.Final" + } + ] + }, + { + "nodeId": "io.netty:netty-buffer@4.1.68.Final", + "pkgId": "io.netty:netty-buffer@4.1.68.Final", + "deps": [ + { + "nodeId": "io.netty:netty-common@4.1.68.Final" + } + ] + }, + { + "nodeId": "io.netty:netty-transport@4.1.68.Final", + "pkgId": "io.netty:netty-transport@4.1.68.Final", + "deps": [ + { + "nodeId": "io.netty:netty-buffer@4.1.68.Final" + }, + { + "nodeId": "io.netty:netty-common@4.1.68.Final" + }, + { + "nodeId": "io.netty:netty-resolver@4.1.68.Final" + } + ] + }, + { + "nodeId": "io.netty:netty-resolver@4.1.68.Final", + "pkgId": "io.netty:netty-resolver@4.1.68.Final", + "deps": [ + { + "nodeId": "io.netty:netty-common@4.1.68.Final" + } + ] + }, + { + "nodeId": "io.netty:netty-codec-socks@4.1.68.Final", + "pkgId": "io.netty:netty-codec-socks@4.1.68.Final", + "deps": [ + { + "nodeId": "io.netty:netty-buffer@4.1.68.Final" + }, + { + "nodeId": "io.netty:netty-codec@4.1.68.Final" + }, + { + "nodeId": "io.netty:netty-common@4.1.68.Final" + }, + { + "nodeId": "io.netty:netty-transport@4.1.68.Final" + } + ] + }, + { + "nodeId": "io.netty:netty-codec-http@4.1.68.Final", + "pkgId": "io.netty:netty-codec-http@4.1.68.Final", + "deps": [ + { + "nodeId": "io.netty:netty-common@4.1.68.Final" + }, + { + "nodeId": "io.netty:netty-codec@4.1.68.Final" + }, + { + "nodeId": "io.netty:netty-buffer@4.1.68.Final" + }, + { + "nodeId": "io.netty:netty-handler@4.1.68.Final" + }, + { + "nodeId": "io.netty:netty-transport@4.1.68.Final" + } + ] + }, + { + "nodeId": "io.netty:netty-handler@4.1.68.Final", + "pkgId": "io.netty:netty-handler@4.1.68.Final", + "deps": [ + { + "nodeId": "io.netty:netty-resolver@4.1.68.Final" + }, + { + "nodeId": "io.netty:netty-common@4.1.68.Final" + }, + { + "nodeId": "io.netty:netty-codec@4.1.68.Final" + }, + { + "nodeId": "io.netty:netty-buffer@4.1.68.Final" + }, + { + "nodeId": "io.netty:netty-transport@4.1.68.Final" + } + ] + }, + { + "nodeId": "io.projectreactor.netty:reactor-netty-http@1.0.11", + "pkgId": "io.projectreactor.netty:reactor-netty-http@1.0.11", + "deps": [ + { + "nodeId": "io.projectreactor.netty:reactor-netty-core@1.0.11" + }, + { + "nodeId": "io.projectreactor:reactor-core@3.4.10" + }, + { + "nodeId": "io.netty:netty-resolver-dns@4.1.68.Final" + }, + { + "nodeId": "io.netty:netty-codec-http@4.1.68.Final" + }, + { + "nodeId": "io.netty:netty-transport-native-epoll:jar:linux-x86_64@4.1.68.Final" + }, + { + "nodeId": "io.netty:netty-codec-http2@4.1.68.Final" + }, + { + "nodeId": "io.netty:netty-resolver-dns-native-macos:jar:osx-x86_64@4.1.68.Final" + } + ] + }, + { + "nodeId": "io.projectreactor.netty:reactor-netty-core@1.0.11", + "pkgId": "io.projectreactor.netty:reactor-netty-core@1.0.11", + "deps": [ + { + "nodeId": "io.netty:netty-handler-proxy@4.1.68.Final" + }, + { + "nodeId": "io.projectreactor:reactor-core@3.4.10" + }, + { + "nodeId": "io.netty:netty-resolver-dns@4.1.68.Final" + }, + { + "nodeId": "io.netty:netty-handler@4.1.68.Final" + }, + { + "nodeId": "io.netty:netty-transport-native-epoll:jar:linux-x86_64@4.1.68.Final" + }, + { + "nodeId": "io.netty:netty-resolver-dns-native-macos:jar:osx-x86_64@4.1.68.Final" + } + ] + }, + { + "nodeId": "io.netty:netty-resolver-dns@4.1.68.Final", + "pkgId": "io.netty:netty-resolver-dns@4.1.68.Final", + "deps": [ + { + "nodeId": "io.netty:netty-resolver@4.1.68.Final" + }, + { + "nodeId": "io.netty:netty-common@4.1.68.Final" + }, + { + "nodeId": "io.netty:netty-codec@4.1.68.Final" + }, + { + "nodeId": "io.netty:netty-buffer@4.1.68.Final" + }, + { + "nodeId": "io.netty:netty-handler@4.1.68.Final" + }, + { + "nodeId": "io.netty:netty-codec-dns@4.1.68.Final" + }, + { + "nodeId": "io.netty:netty-transport@4.1.68.Final" + } + ] + }, + { + "nodeId": "io.netty:netty-codec-dns@4.1.68.Final", + "pkgId": "io.netty:netty-codec-dns@4.1.68.Final", + "deps": [ + { + "nodeId": "io.netty:netty-buffer@4.1.68.Final" + }, + { + "nodeId": "io.netty:netty-codec@4.1.68.Final" + }, + { + "nodeId": "io.netty:netty-common@4.1.68.Final" + }, + { + "nodeId": "io.netty:netty-transport@4.1.68.Final" + } + ] + }, + { + "nodeId": "io.netty:netty-transport-native-epoll:jar:linux-x86_64@4.1.68.Final", + "pkgId": "io.netty:netty-transport-native-epoll:jar:linux-x86_64@4.1.68.Final", + "deps": [ + { + "nodeId": "io.netty:netty-buffer@4.1.68.Final" + }, + { + "nodeId": "io.netty:netty-common@4.1.68.Final" + }, + { + "nodeId": "io.netty:netty-transport@4.1.68.Final" + }, + { + "nodeId": "io.netty:netty-transport-native-unix-common@4.1.68.Final" + } + ] + }, + { + "nodeId": "io.netty:netty-transport-native-unix-common@4.1.68.Final", + "pkgId": "io.netty:netty-transport-native-unix-common@4.1.68.Final", + "deps": [ + { + "nodeId": "io.netty:netty-buffer@4.1.68.Final" + }, + { + "nodeId": "io.netty:netty-common@4.1.68.Final" + }, + { + "nodeId": "io.netty:netty-transport@4.1.68.Final" + } + ] + }, + { + "nodeId": "io.netty:netty-resolver-dns-native-macos:jar:osx-x86_64@4.1.68.Final", + "pkgId": "io.netty:netty-resolver-dns-native-macos:jar:osx-x86_64@4.1.68.Final", + "deps": [ + { + "nodeId": "io.netty:netty-common@4.1.68.Final" + }, + { + "nodeId": "io.netty:netty-resolver-dns@4.1.68.Final" + }, + { + "nodeId": "io.netty:netty-transport-native-unix-common@4.1.68.Final" + } + ] + }, + { + "nodeId": "io.netty:netty-codec-http2@4.1.68.Final", + "pkgId": "io.netty:netty-codec-http2@4.1.68.Final", + "deps": [ + { + "nodeId": "io.netty:netty-common@4.1.68.Final" + }, + { + "nodeId": "io.netty:netty-codec@4.1.68.Final" + }, + { + "nodeId": "io.netty:netty-buffer@4.1.68.Final" + }, + { + "nodeId": "io.netty:netty-handler@4.1.68.Final" + }, + { + "nodeId": "io.netty:netty-codec-http@4.1.68.Final" + }, + { + "nodeId": "io.netty:netty-transport@4.1.68.Final" + } + ] + }, + { + "nodeId": "io.netty:netty-transport-native-kqueue:jar:osx-x86_64@4.1.68.Final", + "pkgId": "io.netty:netty-transport-native-kqueue:jar:osx-x86_64@4.1.68.Final", + "deps": [ + { + "nodeId": "io.netty:netty-buffer@4.1.68.Final" + }, + { + "nodeId": "io.netty:netty-common@4.1.68.Final" + }, + { + "nodeId": "io.netty:netty-transport@4.1.68.Final" + }, + { + "nodeId": "io.netty:netty-transport-native-unix-common@4.1.68.Final" + } + ] + }, + { + "nodeId": "//integrations/big_commerce:main@bazel", + "pkgId": "//integrations/big_commerce:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//integrations/isolated_endpoint_sync:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//secrets/integration:main@bazel" + }, + { + "nodeId": "//secrets/system:main@bazel" + }, + { + "nodeId": "//util:main@bazel" + }, + { + "nodeId": "//utils/exceptions:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "//webhook/client:main@bazel" + }, + { + "nodeId": "//webhook/utils:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.apache.httpcomponents:httpcore@4.4.13" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-common@2.31" + }, + { + "nodeId": "org.json:json@20171018" + }, + { + "nodeId": "org.slf4j:slf4j-api@1.7.13" + } + ] + }, + { + "nodeId": "//integrations/bingads:main@bazel", + "pkgId": "//integrations/bingads:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//core_utils:main@bazel" + }, + { + "nodeId": "//crypto:main@bazel" + }, + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//integrations/bidirectional_cube:main@bazel" + }, + { + "nodeId": "//integrations/priority_sync:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//markdown:main@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//secrets/integration:main@bazel" + }, + { + "nodeId": "//secrets/system:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "//xml_util:main@bazel" + }, + { + "nodeId": "@com_fasterxml_jackson_dataformat_jackson_dataformat_csv//:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "com.microsoft.bingads:microsoft.bingads@12.0.3" + }, + { + "nodeId": "commons-io:commons-io@2.4" + }, + { + "nodeId": "io.projectreactor:reactor-core@3.4.11" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "javax.xml.bind:jaxb-api@2.2.2" + }, + { + "nodeId": "org.apache.commons:commons-lang3@3.12.0" + }, + { + "nodeId": "org.apache.httpcomponents:httpmime@4.5.13" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + }, + { + "nodeId": "org.json:json@20171018" + } + ] + }, + { + "nodeId": "//xml_util:main@bazel", + "pkgId": "//xml_util:main@bazel", + "deps": [ + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "com.sun.xml.bind:jaxb-core@2.2.11" + }, + { + "nodeId": "com.sun.xml.bind:jaxb-impl@2.2.11" + }, + { + "nodeId": "javax.xml.bind:jaxb-api@2.2.2" + } + ] + }, + { + "nodeId": "com.microsoft.bingads:microsoft.bingads@12.0.3", + "pkgId": "com.microsoft.bingads:microsoft.bingads@12.0.3", + "deps": [ + { + "nodeId": "com.googlecode.jcsv:jcsv@1.4.0" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "org.apache.cxf:cxf-rt-transports-http@3.2.14" + }, + { + "nodeId": "org.apache.cxf:cxf-rt-frontend-jaxws@3.2.14" + }, + { + "nodeId": "org.apache.httpcomponents:httpclient@4.5.13" + }, + { + "nodeId": "org.apache.httpcomponents:httpmime@4.5.13" + } + ] + }, + { + "nodeId": "com.googlecode.jcsv:jcsv@1.4.0", + "pkgId": "com.googlecode.jcsv:jcsv@1.4.0", + "deps": [] + }, + { + "nodeId": "org.apache.cxf:cxf-rt-transports-http@3.2.14", + "pkgId": "org.apache.cxf:cxf-rt-transports-http@3.2.14", + "deps": [ + { + "nodeId": "org.apache.cxf:cxf-core@3.2.14" + } + ] + }, + { + "nodeId": "org.apache.cxf:cxf-core@3.2.14", + "pkgId": "org.apache.cxf:cxf-core@3.2.14", + "deps": [ + { + "nodeId": "com.fasterxml.woodstox:woodstox-core@5.0.3" + }, + { + "nodeId": "org.apache.ws.xmlschema:xmlschema-core@2.2.5" + } + ] + }, + { + "nodeId": "org.apache.ws.xmlschema:xmlschema-core@2.2.5", + "pkgId": "org.apache.ws.xmlschema:xmlschema-core@2.2.5", + "deps": [] + }, + { + "nodeId": "org.apache.cxf:cxf-rt-frontend-jaxws@3.2.14", + "pkgId": "org.apache.cxf:cxf-rt-frontend-jaxws@3.2.14", + "deps": [ + { + "nodeId": "org.apache.cxf:cxf-core@3.2.14" + }, + { + "nodeId": "org.ow2.asm:asm@8.0.1" + }, + { + "nodeId": "xml-resolver:xml-resolver@1.2" + }, + { + "nodeId": "org.apache.cxf:cxf-rt-ws-addr@3.2.14" + }, + { + "nodeId": "org.apache.cxf:cxf-rt-bindings-xml@3.2.14" + }, + { + "nodeId": "org.apache.cxf:cxf-rt-bindings-soap@3.2.14" + }, + { + "nodeId": "org.apache.cxf:cxf-rt-frontend-simple@3.2.14" + } + ] + }, + { + "nodeId": "org.apache.cxf:cxf-rt-ws-addr@3.2.14", + "pkgId": "org.apache.cxf:cxf-rt-ws-addr@3.2.14", + "deps": [ + { + "nodeId": "org.apache.cxf:cxf-core@3.2.14" + }, + { + "nodeId": "org.apache.cxf:cxf-rt-bindings-soap@3.2.14" + }, + { + "nodeId": "org.apache.cxf:cxf-rt-ws-policy@3.2.14" + } + ] + }, + { + "nodeId": "org.apache.cxf:cxf-rt-bindings-soap@3.2.14", + "pkgId": "org.apache.cxf:cxf-rt-bindings-soap@3.2.14", + "deps": [ + { + "nodeId": "org.apache.cxf:cxf-core@3.2.14" + }, + { + "nodeId": "org.apache.cxf:cxf-rt-databinding-jaxb@3.2.14" + }, + { + "nodeId": "org.apache.cxf:cxf-rt-wsdl@3.2.14" + } + ] + }, + { + "nodeId": "org.apache.cxf:cxf-rt-databinding-jaxb@3.2.14", + "pkgId": "org.apache.cxf:cxf-rt-databinding-jaxb@3.2.14", + "deps": [ + { + "nodeId": "org.apache.cxf:cxf-core@3.2.14" + }, + { + "nodeId": "org.apache.cxf:cxf-rt-wsdl@3.2.14" + } + ] + }, + { + "nodeId": "org.apache.cxf:cxf-rt-wsdl@3.2.14", + "pkgId": "org.apache.cxf:cxf-rt-wsdl@3.2.14", + "deps": [ + { + "nodeId": "org.apache.cxf:cxf-core@3.2.14" + }, + { + "nodeId": "org.ow2.asm:asm@8.0.1" + }, + { + "nodeId": "wsdl4j:wsdl4j@1.6.2" + } + ] + }, + { + "nodeId": "org.apache.cxf:cxf-rt-ws-policy@3.2.14", + "pkgId": "org.apache.cxf:cxf-rt-ws-policy@3.2.14", + "deps": [ + { + "nodeId": "org.apache.cxf:cxf-core@3.2.14" + }, + { + "nodeId": "org.apache.neethi:neethi@3.1.1" + }, + { + "nodeId": "wsdl4j:wsdl4j@1.6.2" + } + ] + }, + { + "nodeId": "org.apache.neethi:neethi@3.1.1", + "pkgId": "org.apache.neethi:neethi@3.1.1", + "deps": [] + }, + { + "nodeId": "org.apache.cxf:cxf-rt-bindings-xml@3.2.14", + "pkgId": "org.apache.cxf:cxf-rt-bindings-xml@3.2.14", + "deps": [ + { + "nodeId": "org.apache.cxf:cxf-core@3.2.14" + }, + { + "nodeId": "org.ow2.asm:asm@8.0.1" + } + ] + }, + { + "nodeId": "org.apache.cxf:cxf-rt-frontend-simple@3.2.14", + "pkgId": "org.apache.cxf:cxf-rt-frontend-simple@3.2.14", + "deps": [ + { + "nodeId": "org.apache.cxf:cxf-core@3.2.14" + }, + { + "nodeId": "org.apache.cxf:cxf-rt-bindings-soap@3.2.14" + }, + { + "nodeId": "org.apache.cxf:cxf-rt-wsdl@3.2.14" + } + ] + }, + { + "nodeId": "org.apache.httpcomponents:httpmime@4.5.13", + "pkgId": "org.apache.httpcomponents:httpmime@4.5.13", + "deps": [ + { + "nodeId": "org.apache.httpcomponents:httpclient@4.5.13" + } + ] + }, + { + "nodeId": "//integrations/box:main@bazel", + "pkgId": "//integrations/box:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//integrations/file:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//secrets/integration:main@bazel" + }, + { + "nodeId": "//secrets/system:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + } + ] + }, + { + "nodeId": "//integrations/braintree:main@bazel", + "pkgId": "//integrations/braintree:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//core_utils:main@bazel" + }, + { + "nodeId": "//ecomm:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//integrations/isolated_endpoint_sync:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "com.braintreepayments.gateway:braintree-java@2.108.0" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "commons-codec:commons-codec@1.10" + }, + { + "nodeId": "io.projectreactor:reactor-core@3.4.11" + } + ] + }, + { + "nodeId": "com.braintreepayments.gateway:braintree-java@2.108.0", + "pkgId": "com.braintreepayments.gateway:braintree-java@2.108.0", + "deps": [ + { + "nodeId": "com.fasterxml.jackson.jr:jackson-jr-objects@2.9.9" + }, + { + "nodeId": "org.apache.commons:commons-csv@1.8" + }, + { + "nodeId": "org.osgi:org.osgi.core@4.2.0" + } + ] + }, + { + "nodeId": "com.fasterxml.jackson.jr:jackson-jr-objects@2.9.9", + "pkgId": "com.fasterxml.jackson.jr:jackson-jr-objects@2.9.9", + "deps": [ + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + } + ] + }, + { + "nodeId": "org.apache.commons:commons-csv@1.8", + "pkgId": "org.apache.commons:commons-csv@1.8", + "deps": [] + }, + { + "nodeId": "org.osgi:org.osgi.core@4.2.0", + "pkgId": "org.osgi:org.osgi.core@4.2.0", + "deps": [] + }, + { + "nodeId": "//integrations/branch:main@bazel", + "pkgId": "//integrations/branch:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//webhook/client:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.apache.commons:commons-lang3@3.12.0" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-common@2.31" + } + ] + }, + { + "nodeId": "//integrations/business_central:main@bazel", + "pkgId": "//integrations/business_central:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//core_utils:main@bazel" + }, + { + "nodeId": "//crypto:main@bazel" + }, + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//integrations/isolated_endpoint_sync:main@bazel" + }, + { + "nodeId": "//integrations/priority_sync:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//logging:main@bazel" + }, + { + "nodeId": "//markdown:main@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//secrets/integration:main@bazel" + }, + { + "nodeId": "//secrets/system:main@bazel" + }, + { + "nodeId": "//util:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "//webhook/client:main@bazel" + }, + { + "nodeId": "//webhook/utils:main@bazel" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-core@1.12.84" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-s3@1.12.84" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.dataformat:jackson-dataformat-smile@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.apis:google-api-services-bigquery@v2-rev459-1.25.0" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "com.intellij:annotations@12.0" + }, + { + "nodeId": "commons-io:commons-io@2.4" + }, + { + "nodeId": "io.projectreactor:reactor-core@3.4.11" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "joda-time:joda-time@2.9.2" + }, + { + "nodeId": "org.apache.httpcomponents:httpclient@4.5.13" + }, + { + "nodeId": "org.apache.httpcomponents:httpcore@4.4.13" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-common@2.31" + } + ] + }, + { + "nodeId": "//integrations/cloudfront:main@bazel", + "pkgId": "//integrations/cloudfront:main@bazel", + "deps": [ + { + "nodeId": "//aws:main@bazel" + }, + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//integrations/file:main@bazel" + }, + { + "nodeId": "//integrations/s3:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-s3@1.12.84" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.apache.commons:commons-lang3@3.12.0" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-common@2.31" + } + ] + }, + { + "nodeId": "//integrations/s3:main@bazel", + "pkgId": "//integrations/s3:main@bazel", + "deps": [ + { + "nodeId": "//aws:main@bazel" + }, + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//database:enums@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//integrations/file:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-core@1.12.84" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-s3@1.12.84" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-sts@1.12.84" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "io.projectreactor:reactor-core@3.4.11" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-common@2.31" + } + ] + }, + { + "nodeId": "//integrations/coupa:main@bazel", + "pkgId": "//integrations/coupa:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//integrations/isolated_endpoint_sync:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-common@2.31" + } + ] + }, + { + "nodeId": "//integrations/criteo:main@bazel", + "pkgId": "//integrations/criteo:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//core_utils:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//integrations/bidirectional_cube:main@bazel" + }, + { + "nodeId": "//integrations/priority_sync:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//util:main@bazel" + }, + { + "nodeId": "//utils/exceptions:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + } + ] + }, + { + "nodeId": "//integrations/db2:main@bazel", + "pkgId": "//integrations/db2:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//crypto:main@bazel" + }, + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//integrations/db:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//port_forwarder:main@bazel" + }, + { + "nodeId": "//secred/util:main@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//secrets/services:main@bazel" + }, + { + "nodeId": "//services/resync:main@bazel" + }, + { + "nodeId": "//ssh:main@bazel" + }, + { + "nodeId": "//utils/byte_array_list:main@bazel" + }, + { + "nodeId": "//utils/cipher_adapter:main@bazel" + }, + { + "nodeId": "//verification:main@bazel" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "com.google.protobuf:protobuf-java@3.18.2" + }, + { + "nodeId": "com.ibm.db2:jcc@11.5.0.0" + }, + { + "nodeId": "com.zaxxer:HikariCP@3.4.1" + } + ] + }, + { + "nodeId": "//utils/byte_array_list:main@bazel", + "pkgId": "//utils/byte_array_list:main@bazel", + "deps": [ + { + "nodeId": "//crypto:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//utils/cipher_adapter:main@bazel" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + } + ] + }, + { + "nodeId": "//integrations/document:main@bazel", + "pkgId": "//integrations/document:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//database:tls_verify@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//integrations/db:main@bazel" + }, + { + "nodeId": "//integrations/mongo:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//markdown:main@bazel" + }, + { + "nodeId": "//port_forwarder:main@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//services/resync:main@bazel" + }, + { + "nodeId": "//ssh:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "//verification:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "dnsjava:dnsjava@3.0.2" + }, + { + "nodeId": "org.mongodb:mongo-java-driver@3.12.0" + } + ] + }, + { + "nodeId": "//integrations/mongo:main@bazel", + "pkgId": "//integrations/mongo:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//database:tls_verify@bazel" + }, + { + "nodeId": "//ecomm:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//integrations/db:main@bazel" + }, + { + "nodeId": "//integrations/isolated_endpoint_sync:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//markdown:main@bazel" + }, + { + "nodeId": "//micrometer:main@bazel" + }, + { + "nodeId": "//port_forwarder:main@bazel" + }, + { + "nodeId": "//secrets/integration:main@bazel" + }, + { + "nodeId": "//services:ab_tests@bazel" + }, + { + "nodeId": "//services/resync:main@bazel" + }, + { + "nodeId": "//ssh:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "//verification:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "dnsjava:dnsjava@3.0.2" + }, + { + "nodeId": "io.micrometer:micrometer-core@1.5.3" + }, + { + "nodeId": "io.opentelemetry:opentelemetry-api@0.13.1" + }, + { + "nodeId": "io.opentelemetry:opentelemetry-api-trace@0.13.1" + }, + { + "nodeId": "io.opentelemetry:opentelemetry-extension-annotations@0.13.1" + }, + { + "nodeId": "org.apache.commons:commons-lang3@3.12.0" + }, + { + "nodeId": "org.mongodb:mongo-java-driver@3.12.0" + } + ] + }, + { + "nodeId": "dnsjava:dnsjava@3.0.2", + "pkgId": "dnsjava:dnsjava@3.0.2", + "deps": [ + { + "nodeId": "org.slf4j:slf4j-api@1.7.13" + } + ] + }, + { + "nodeId": "io.opentelemetry:opentelemetry-api@0.13.1", + "pkgId": "io.opentelemetry:opentelemetry-api@0.13.1", + "deps": [ + { + "nodeId": "io.opentelemetry:opentelemetry-api-metrics@0.13.0-alpha" + }, + { + "nodeId": "io.opentelemetry:opentelemetry-context@0.13.1" + }, + { + "nodeId": "io.opentelemetry:opentelemetry-api-trace@0.13.1" + }, + { + "nodeId": "io.opentelemetry:opentelemetry-api-common@0.13.1" + }, + { + "nodeId": "io.opentelemetry:opentelemetry-api-baggage@0.13.1" + } + ] + }, + { + "nodeId": "io.opentelemetry:opentelemetry-api-metrics@0.13.0-alpha", + "pkgId": "io.opentelemetry:opentelemetry-api-metrics@0.13.0-alpha", + "deps": [ + { + "nodeId": "io.opentelemetry:opentelemetry-api-common@0.13.1" + }, + { + "nodeId": "io.opentelemetry:opentelemetry-context@0.13.1" + } + ] + }, + { + "nodeId": "io.opentelemetry:opentelemetry-api-common@0.13.1", + "pkgId": "io.opentelemetry:opentelemetry-api-common@0.13.1", + "deps": [] + }, + { + "nodeId": "io.opentelemetry:opentelemetry-context@0.13.1", + "pkgId": "io.opentelemetry:opentelemetry-context@0.13.1", + "deps": [] + }, + { + "nodeId": "io.opentelemetry:opentelemetry-api-trace@0.13.1", + "pkgId": "io.opentelemetry:opentelemetry-api-trace@0.13.1", + "deps": [ + { + "nodeId": "io.opentelemetry:opentelemetry-api-common@0.13.1" + }, + { + "nodeId": "io.opentelemetry:opentelemetry-context@0.13.1" + } + ] + }, + { + "nodeId": "io.opentelemetry:opentelemetry-api-baggage@0.13.1", + "pkgId": "io.opentelemetry:opentelemetry-api-baggage@0.13.1", + "deps": [ + { + "nodeId": "io.opentelemetry:opentelemetry-api-common@0.13.1" + }, + { + "nodeId": "io.opentelemetry:opentelemetry-context@0.13.1" + } + ] + }, + { + "nodeId": "io.opentelemetry:opentelemetry-extension-annotations@0.13.1", + "pkgId": "io.opentelemetry:opentelemetry-extension-annotations@0.13.1", + "deps": [ + { + "nodeId": "io.opentelemetry:opentelemetry-api@0.13.1" + } + ] + }, + { + "nodeId": "org.mongodb:mongo-java-driver@3.12.0", + "pkgId": "org.mongodb:mongo-java-driver@3.12.0", + "deps": [] + }, + { + "nodeId": "//integrations/double_click_campaign_manager:main@bazel", + "pkgId": "//integrations/double_click_campaign_manager:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//core_utils:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//integrations/cube:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//markdown:main@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//secrets/integration:main@bazel" + }, + { + "nodeId": "//secrets/system:main@bazel" + }, + { + "nodeId": "//util:main@bazel" + }, + { + "nodeId": "//utils/exceptions:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "@com_fasterxml_jackson_dataformat_jackson_dataformat_csv//:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + } + ] + }, + { + "nodeId": "//integrations/dropbox:main@bazel", + "pkgId": "//integrations/dropbox:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//integrations/file:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//secrets/integration:main@bazel" + }, + { + "nodeId": "//secrets/system:main@bazel" + }, + { + "nodeId": "com.dropbox.core:dropbox-core-sdk@4.0.0" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "com.google.http-client:google-http-client@1.39.2" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.apache.commons:commons-lang3@3.12.0" + }, + { + "nodeId": "org.awaitility:awaitility@4.0.3" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-common@2.31" + } + ] + }, + { + "nodeId": "com.dropbox.core:dropbox-core-sdk@4.0.0", + "pkgId": "com.dropbox.core:dropbox-core-sdk@4.0.0", + "deps": [ + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + } + ] + }, + { + "nodeId": "//integrations/dummy_postgres:main@bazel", + "pkgId": "//integrations/dummy_postgres:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//core_interfaces:pojos@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//google_cloud:main@bazel" + }, + { + "nodeId": "//integrations/db:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "@com_google_cloud_google_cloud_bigquerydatatransfer//:main@bazel" + }, + { + "nodeId": "com.google.api:gax@2.3.0" + }, + { + "nodeId": "com.google.apis:google-api-services-bigquery@v2-rev459-1.25.0" + }, + { + "nodeId": "com.google.cloud:google-cloud-bigquery@1.48.0" + }, + { + "nodeId": "com.google.cloud:google-cloud-core@1.48.0" + }, + { + "nodeId": "com.google.protobuf:protobuf-java@3.18.2" + }, + { + "nodeId": "org.threeten:threetenbp@1.3.3" + } + ] + }, + { + "nodeId": "//integrations/dynamics365:main@bazel", + "pkgId": "//integrations/dynamics365:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//dblike:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//integrations/db_like_standardization:main@bazel" + }, + { + "nodeId": "//integrations/isolated_endpoint_sync:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//markdown:main@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//secrets/system:main@bazel" + }, + { + "nodeId": "//services/resync:main@bazel" + }, + { + "nodeId": "//util:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "com.microsoft.azure:adal4j@1.6.3" + }, + { + "nodeId": "com.nimbusds:lang-tag@1.4.3" + }, + { + "nodeId": "com.nimbusds:nimbus-jose-jwt@5.5" + }, + { + "nodeId": "com.nimbusds:oauth2-oidc-sdk@5.64.4" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-common@2.31" + } + ] + }, + { + "nodeId": "//integrations/dynamodb:main@bazel", + "pkgId": "//integrations/dynamodb:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//database:enums@bazel" + }, + { + "nodeId": "//ecomm:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//integrations/db:main@bazel" + }, + { + "nodeId": "//integrations/speed_test:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//logging:main@bazel" + }, + { + "nodeId": "//markdown:main@bazel" + }, + { + "nodeId": "//micrometer:main@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//secrets/system:main@bazel" + }, + { + "nodeId": "//util:main@bazel" + }, + { + "nodeId": "//utils/serializers:main@bazel" + }, + { + "nodeId": "//utils/sync_statistics:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "@acmecorp_amazon_kinesis_client//:main@bazel" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-cloudwatch@1.12.84" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-core@1.12.84" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-dynamodb@1.12.84" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-ec2@1.12.84" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-kinesis@1.12.84" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-sts@1.12.84" + }, + { + "nodeId": "com.amazonaws:dynamodb-streams-kinesis-adapter@1.4.0" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "com.intellij:annotations@12.0" + }, + { + "nodeId": "com.walkmind.extensions:collections@1.20" + }, + { + "nodeId": "io.micrometer:micrometer-core@1.5.3" + }, + { + "nodeId": "io.netty:netty-buffer@4.1.50.Final" + }, + { + "nodeId": "org.json:json@20171018" + } + ] + }, + { + "nodeId": "@acmecorp_amazon_kinesis_client//:main@bazel", + "pkgId": "@acmecorp_amazon_kinesis_client//:main@bazel", + "deps": [ + { + "nodeId": "com.amazonaws:aws-java-sdk-cloudwatch@1.12.84" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-core@1.12.84" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-dynamodb@1.12.84" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-kinesis@1.12.84" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-kms@1.12.84" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-s3@1.12.84" + }, + { + "nodeId": "com.amazonaws:jmespath-java@1.11.91" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.dataformat:jackson-dataformat-cbor@2.9.8" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "com.google.protobuf:protobuf-java@3.18.2" + }, + { + "nodeId": "commons-codec:commons-codec@1.10" + }, + { + "nodeId": "commons-lang:commons-lang@2.6" + }, + { + "nodeId": "commons-logging:commons-logging@1.2" + }, + { + "nodeId": "joda-time:joda-time@2.9.2" + }, + { + "nodeId": "org.apache.commons:commons-lang3@3.12.0" + }, + { + "nodeId": "org.apache.httpcomponents:httpclient@4.5.13" + }, + { + "nodeId": "org.apache.httpcomponents:httpcore@4.4.13" + }, + { + "nodeId": "software.amazon.ion:ion-java@1.0.2" + }, + { + "nodeId": "com.sun.xml.bind:jaxb-core@2.2.11" + }, + { + "nodeId": "com.sun.xml.bind:jaxb-impl@2.2.11" + }, + { + "nodeId": "javax.xml.bind:jaxb-api@2.2.2" + } + ] + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-kinesis@1.12.84", + "pkgId": "com.amazonaws:aws-java-sdk-kinesis@1.12.84", + "deps": [ + { + "nodeId": "com.amazonaws:aws-java-sdk-core@1.12.84" + }, + { + "nodeId": "com.amazonaws:jmespath-java@1.11.91" + } + ] + }, + { + "nodeId": "com.amazonaws:dynamodb-streams-kinesis-adapter@1.4.0", + "pkgId": "com.amazonaws:dynamodb-streams-kinesis-adapter@1.4.0", + "deps": [ + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "commons-logging:commons-logging@1.2" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-kinesis@1.12.84" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-cloudwatch@1.12.84" + }, + { + "nodeId": "com.amazonaws:amazon-kinesis-client@1.13.0" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-dynamodb@1.12.84" + } + ] + }, + { + "nodeId": "com.amazonaws:amazon-kinesis-client@1.13.0", + "pkgId": "com.amazonaws:amazon-kinesis-client@1.13.0", + "deps": [ + { + "nodeId": "commons-logging:commons-logging@1.2" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-kinesis@1.12.84" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "org.apache.commons:commons-lang3@3.12.0" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-cloudwatch@1.12.84" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-dynamodb@1.12.84" + }, + { + "nodeId": "com.google.protobuf:protobuf-java@3.18.2" + } + ] + }, + { + "nodeId": "//integrations/elasticsearch:main@bazel", + "pkgId": "//integrations/elasticsearch:main@bazel", + "deps": [ + { + "nodeId": "//common:main@bazel" + }, + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//crypto:pojos@bazel" + }, + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//database:tls_verify@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//integrations/db:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//logging:main@bazel" + }, + { + "nodeId": "//micrometer:main@bazel" + }, + { + "nodeId": "//port_forwarder:main@bazel" + }, + { + "nodeId": "//secred/util:main@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//secrets/services:main@bazel" + }, + { + "nodeId": "//services/resync:main@bazel" + }, + { + "nodeId": "//ssh:main@bazel" + }, + { + "nodeId": "//teleport:main@bazel" + }, + { + "nodeId": "//utils/exceptions:main@bazel" + }, + { + "nodeId": "//utils/sync_statistics:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "//verification:main@bazel" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-core@1.12.84" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "commons-codec:commons-codec@1.10" + }, + { + "nodeId": "io.micrometer:micrometer-core@1.5.3" + }, + { + "nodeId": "javax.validation:validation-api@1.1.0.Final" + }, + { + "nodeId": "org.apache.httpcomponents:httpclient@4.5.13" + }, + { + "nodeId": "org.apache.httpcomponents:httpcore@4.4.13" + }, + { + "nodeId": "org.apache.lucene:lucene-core@8.9.0" + }, + { + "nodeId": "org.elasticsearch.client:elasticsearch-rest-client@7.14.0" + }, + { + "nodeId": "org.elasticsearch.client:elasticsearch-rest-high-level-client@7.14.0" + }, + { + "nodeId": "org.elasticsearch:elasticsearch@7.14.0" + }, + { + "nodeId": "org.elasticsearch:elasticsearch-core@7.14.0" + }, + { + "nodeId": "org.opensearch.client:opensearch-rest-client@1.1.0" + }, + { + "nodeId": "org.opensearch.client:opensearch-rest-high-level-client@1.1.0" + }, + { + "nodeId": "org.opensearch:opensearch@1.1.0" + }, + { + "nodeId": "org.opensearch:opensearch-core@1.1.0" + }, + { + "nodeId": "org.opensearch:opensearch-x-content@1.1.0" + } + ] + }, + { + "nodeId": "org.apache.lucene:lucene-core@8.9.0", + "pkgId": "org.apache.lucene:lucene-core@8.9.0", + "deps": [] + }, + { + "nodeId": "org.elasticsearch.client:elasticsearch-rest-client@7.14.0", + "pkgId": "org.elasticsearch.client:elasticsearch-rest-client@7.14.0", + "deps": [ + { + "nodeId": "org.apache.httpcomponents:httpcore-nio@4.4.13" + }, + { + "nodeId": "commons-logging:commons-logging@1.2" + }, + { + "nodeId": "org.apache.httpcomponents:httpcore@4.4.13" + }, + { + "nodeId": "org.apache.httpcomponents:httpasyncclient@4.1.4" + }, + { + "nodeId": "commons-codec:commons-codec@1.10" + }, + { + "nodeId": "org.apache.httpcomponents:httpclient@4.5.13" + } + ] + }, + { + "nodeId": "org.apache.httpcomponents:httpcore-nio@4.4.13", + "pkgId": "org.apache.httpcomponents:httpcore-nio@4.4.13", + "deps": [ + { + "nodeId": "org.apache.httpcomponents:httpcore@4.4.13" + } + ] + }, + { + "nodeId": "org.apache.httpcomponents:httpasyncclient@4.1.4", + "pkgId": "org.apache.httpcomponents:httpasyncclient@4.1.4", + "deps": [ + { + "nodeId": "commons-logging:commons-logging@1.2" + }, + { + "nodeId": "org.apache.httpcomponents:httpclient@4.5.13" + }, + { + "nodeId": "org.apache.httpcomponents:httpcore@4.4.13" + }, + { + "nodeId": "org.apache.httpcomponents:httpcore-nio@4.4.13" + } + ] + }, + { + "nodeId": "org.elasticsearch.client:elasticsearch-rest-high-level-client@7.14.0", + "pkgId": "org.elasticsearch.client:elasticsearch-rest-high-level-client@7.14.0", + "deps": [ + { + "nodeId": "org.elasticsearch.plugin:parent-join-client@7.14.0" + }, + { + "nodeId": "org.elasticsearch.plugin:lang-mustache-client@7.14.0" + }, + { + "nodeId": "org.elasticsearch.client:elasticsearch-rest-client@7.14.0" + }, + { + "nodeId": "org.elasticsearch.plugin:aggs-matrix-stats-client@7.14.0" + }, + { + "nodeId": "org.elasticsearch.plugin:mapper-extras-client@7.14.0" + }, + { + "nodeId": "org.elasticsearch:elasticsearch@7.14.0" + }, + { + "nodeId": "org.elasticsearch.plugin:rank-eval-client@7.14.0" + } + ] + }, + { + "nodeId": "org.elasticsearch.plugin:parent-join-client@7.14.0", + "pkgId": "org.elasticsearch.plugin:parent-join-client@7.14.0", + "deps": [] + }, + { + "nodeId": "org.elasticsearch.plugin:lang-mustache-client@7.14.0", + "pkgId": "org.elasticsearch.plugin:lang-mustache-client@7.14.0", + "deps": [ + { + "nodeId": "com.github.spullara.mustache.java:compiler@0.9.6" + } + ] + }, + { + "nodeId": "com.github.spullara.mustache.java:compiler@0.9.6", + "pkgId": "com.github.spullara.mustache.java:compiler@0.9.6", + "deps": [] + }, + { + "nodeId": "org.elasticsearch.plugin:aggs-matrix-stats-client@7.14.0", + "pkgId": "org.elasticsearch.plugin:aggs-matrix-stats-client@7.14.0", + "deps": [] + }, + { + "nodeId": "org.elasticsearch.plugin:mapper-extras-client@7.14.0", + "pkgId": "org.elasticsearch.plugin:mapper-extras-client@7.14.0", + "deps": [] + }, + { + "nodeId": "org.elasticsearch:elasticsearch@7.14.0", + "pkgId": "org.elasticsearch:elasticsearch@7.14.0", + "deps": [ + { + "nodeId": "org.apache.lucene:lucene-suggest@8.9.0" + }, + { + "nodeId": "org.elasticsearch:jna@5.7.0-1" + }, + { + "nodeId": "org.apache.lucene:lucene-highlighter@8.9.0" + }, + { + "nodeId": "com.tdunning:t-digest@3.2" + }, + { + "nodeId": "org.apache.lucene:lucene-core@8.9.0" + }, + { + "nodeId": "org.elasticsearch:elasticsearch-cli@7.14.0" + }, + { + "nodeId": "org.elasticsearch:elasticsearch-x-content@7.14.0" + }, + { + "nodeId": "org.apache.lucene:lucene-grouping@8.9.0" + }, + { + "nodeId": "org.apache.lucene:lucene-join@8.9.0" + }, + { + "nodeId": "org.apache.logging.log4j:log4j-api@2.17.1" + }, + { + "nodeId": "com.carrotsearch:hppc@0.8.1" + }, + { + "nodeId": "org.apache.lucene:lucene-sandbox@8.9.0" + }, + { + "nodeId": "org.apache.lucene:lucene-backward-codecs@8.9.0" + }, + { + "nodeId": "org.apache.lucene:lucene-spatial-extras@8.9.0" + }, + { + "nodeId": "org.apache.lucene:lucene-spatial3d@8.9.0" + }, + { + "nodeId": "org.apache.lucene:lucene-misc@8.9.0" + }, + { + "nodeId": "org.elasticsearch:elasticsearch-geo@7.14.0" + }, + { + "nodeId": "org.lz4:lz4-java@1.8.0" + }, + { + "nodeId": "org.apache.lucene:lucene-analyzers-common@8.9.0" + }, + { + "nodeId": "org.apache.lucene:lucene-memory@8.9.0" + }, + { + "nodeId": "org.apache.lucene:lucene-queries@8.9.0" + }, + { + "nodeId": "joda-time:joda-time@2.9.2" + }, + { + "nodeId": "org.hdrhistogram:HdrHistogram@2.1.12" + }, + { + "nodeId": "org.elasticsearch:elasticsearch-secure-sm@7.14.0" + }, + { + "nodeId": "org.elasticsearch:elasticsearch-plugin-classloader@7.14.0" + }, + { + "nodeId": "org.apache.lucene:lucene-queryparser@8.9.0" + }, + { + "nodeId": "org.elasticsearch:elasticsearch-core@7.14.0" + } + ] + }, + { + "nodeId": "org.apache.lucene:lucene-suggest@8.9.0", + "pkgId": "org.apache.lucene:lucene-suggest@8.9.0", + "deps": [] + }, + { + "nodeId": "org.elasticsearch:jna@5.7.0-1", + "pkgId": "org.elasticsearch:jna@5.7.0-1", + "deps": [] + }, + { + "nodeId": "org.apache.lucene:lucene-highlighter@8.9.0", + "pkgId": "org.apache.lucene:lucene-highlighter@8.9.0", + "deps": [] + }, + { + "nodeId": "com.tdunning:t-digest@3.2", + "pkgId": "com.tdunning:t-digest@3.2", + "deps": [] + }, + { + "nodeId": "org.elasticsearch:elasticsearch-cli@7.14.0", + "pkgId": "org.elasticsearch:elasticsearch-cli@7.14.0", + "deps": [ + { + "nodeId": "net.sf.jopt-simple:jopt-simple@5.0.4" + }, + { + "nodeId": "org.elasticsearch:elasticsearch-core@7.14.0" + } + ] + }, + { + "nodeId": "org.elasticsearch:elasticsearch-core@7.14.0", + "pkgId": "org.elasticsearch:elasticsearch-core@7.14.0", + "deps": [] + }, + { + "nodeId": "org.elasticsearch:elasticsearch-x-content@7.14.0", + "pkgId": "org.elasticsearch:elasticsearch-x-content@7.14.0", + "deps": [ + { + "nodeId": "com.fasterxml.jackson.dataformat:jackson-dataformat-cbor@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.dataformat:jackson-dataformat-yaml@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.dataformat:jackson-dataformat-smile@2.9.8" + }, + { + "nodeId": "org.yaml:snakeyaml@1.23" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "org.elasticsearch:elasticsearch-core@7.14.0" + } + ] + }, + { + "nodeId": "org.apache.lucene:lucene-grouping@8.9.0", + "pkgId": "org.apache.lucene:lucene-grouping@8.9.0", + "deps": [] + }, + { + "nodeId": "org.apache.lucene:lucene-join@8.9.0", + "pkgId": "org.apache.lucene:lucene-join@8.9.0", + "deps": [] + }, + { + "nodeId": "org.apache.logging.log4j:log4j-api@2.17.1", + "pkgId": "org.apache.logging.log4j:log4j-api@2.17.1", + "deps": [] + }, + { + "nodeId": "com.carrotsearch:hppc@0.8.1", + "pkgId": "com.carrotsearch:hppc@0.8.1", + "deps": [] + }, + { + "nodeId": "org.apache.lucene:lucene-sandbox@8.9.0", + "pkgId": "org.apache.lucene:lucene-sandbox@8.9.0", + "deps": [] + }, + { + "nodeId": "org.apache.lucene:lucene-backward-codecs@8.9.0", + "pkgId": "org.apache.lucene:lucene-backward-codecs@8.9.0", + "deps": [] + }, + { + "nodeId": "org.apache.lucene:lucene-spatial-extras@8.9.0", + "pkgId": "org.apache.lucene:lucene-spatial-extras@8.9.0", + "deps": [] + }, + { + "nodeId": "org.apache.lucene:lucene-spatial3d@8.9.0", + "pkgId": "org.apache.lucene:lucene-spatial3d@8.9.0", + "deps": [] + }, + { + "nodeId": "org.apache.lucene:lucene-misc@8.9.0", + "pkgId": "org.apache.lucene:lucene-misc@8.9.0", + "deps": [] + }, + { + "nodeId": "org.elasticsearch:elasticsearch-geo@7.14.0", + "pkgId": "org.elasticsearch:elasticsearch-geo@7.14.0", + "deps": [] + }, + { + "nodeId": "org.apache.lucene:lucene-analyzers-common@8.9.0", + "pkgId": "org.apache.lucene:lucene-analyzers-common@8.9.0", + "deps": [] + }, + { + "nodeId": "org.apache.lucene:lucene-memory@8.9.0", + "pkgId": "org.apache.lucene:lucene-memory@8.9.0", + "deps": [] + }, + { + "nodeId": "org.apache.lucene:lucene-queries@8.9.0", + "pkgId": "org.apache.lucene:lucene-queries@8.9.0", + "deps": [] + }, + { + "nodeId": "org.elasticsearch:elasticsearch-secure-sm@7.14.0", + "pkgId": "org.elasticsearch:elasticsearch-secure-sm@7.14.0", + "deps": [] + }, + { + "nodeId": "org.elasticsearch:elasticsearch-plugin-classloader@7.14.0", + "pkgId": "org.elasticsearch:elasticsearch-plugin-classloader@7.14.0", + "deps": [] + }, + { + "nodeId": "org.apache.lucene:lucene-queryparser@8.9.0", + "pkgId": "org.apache.lucene:lucene-queryparser@8.9.0", + "deps": [] + }, + { + "nodeId": "org.elasticsearch.plugin:rank-eval-client@7.14.0", + "pkgId": "org.elasticsearch.plugin:rank-eval-client@7.14.0", + "deps": [] + }, + { + "nodeId": "org.opensearch.client:opensearch-rest-client@1.1.0", + "pkgId": "org.opensearch.client:opensearch-rest-client@1.1.0", + "deps": [ + { + "nodeId": "org.apache.httpcomponents:httpcore-nio@4.4.13" + }, + { + "nodeId": "commons-logging:commons-logging@1.2" + }, + { + "nodeId": "org.apache.httpcomponents:httpcore@4.4.13" + }, + { + "nodeId": "org.apache.httpcomponents:httpasyncclient@4.1.4" + }, + { + "nodeId": "commons-codec:commons-codec@1.10" + }, + { + "nodeId": "org.apache.httpcomponents:httpclient@4.5.13" + } + ] + }, + { + "nodeId": "org.opensearch.client:opensearch-rest-high-level-client@1.1.0", + "pkgId": "org.opensearch.client:opensearch-rest-high-level-client@1.1.0", + "deps": [ + { + "nodeId": "org.opensearch.plugin:aggs-matrix-stats-client@1.1.0" + }, + { + "nodeId": "org.opensearch.plugin:lang-mustache-client@1.1.0" + }, + { + "nodeId": "org.opensearch.client:opensearch-rest-client@1.1.0" + }, + { + "nodeId": "org.opensearch.plugin:mapper-extras-client@1.1.0" + }, + { + "nodeId": "org.opensearch:opensearch@1.1.0" + }, + { + "nodeId": "org.opensearch.plugin:rank-eval-client@1.1.0" + }, + { + "nodeId": "org.opensearch.plugin:parent-join-client@1.1.0" + } + ] + }, + { + "nodeId": "org.opensearch.plugin:aggs-matrix-stats-client@1.1.0", + "pkgId": "org.opensearch.plugin:aggs-matrix-stats-client@1.1.0", + "deps": [] + }, + { + "nodeId": "org.opensearch.plugin:lang-mustache-client@1.1.0", + "pkgId": "org.opensearch.plugin:lang-mustache-client@1.1.0", + "deps": [ + { + "nodeId": "com.github.spullara.mustache.java:compiler@0.9.6" + } + ] + }, + { + "nodeId": "org.opensearch.plugin:mapper-extras-client@1.1.0", + "pkgId": "org.opensearch.plugin:mapper-extras-client@1.1.0", + "deps": [] + }, + { + "nodeId": "org.opensearch:opensearch@1.1.0", + "pkgId": "org.opensearch:opensearch@1.1.0", + "deps": [ + { + "nodeId": "org.apache.lucene:lucene-suggest@8.9.0" + }, + { + "nodeId": "org.elasticsearch:jna@5.7.0-1" + }, + { + "nodeId": "org.opensearch:opensearch-cli@1.1.0" + }, + { + "nodeId": "org.apache.lucene:lucene-highlighter@8.9.0" + }, + { + "nodeId": "com.tdunning:t-digest@3.2" + }, + { + "nodeId": "org.opensearch:opensearch-geo@1.1.0" + }, + { + "nodeId": "org.opensearch:opensearch-core@1.1.0" + }, + { + "nodeId": "org.apache.lucene:lucene-core@8.9.0" + }, + { + "nodeId": "org.opensearch:opensearch-secure-sm@1.1.0" + }, + { + "nodeId": "org.apache.lucene:lucene-grouping@8.9.0" + }, + { + "nodeId": "org.apache.lucene:lucene-join@8.9.0" + }, + { + "nodeId": "org.apache.logging.log4j:log4j-api@2.17.1" + }, + { + "nodeId": "com.carrotsearch:hppc@0.8.1" + }, + { + "nodeId": "org.apache.lucene:lucene-sandbox@8.9.0" + }, + { + "nodeId": "org.apache.lucene:lucene-backward-codecs@8.9.0" + }, + { + "nodeId": "org.apache.lucene:lucene-spatial-extras@8.9.0" + }, + { + "nodeId": "org.apache.lucene:lucene-spatial3d@8.9.0" + }, + { + "nodeId": "org.apache.lucene:lucene-misc@8.9.0" + }, + { + "nodeId": "org.apache.lucene:lucene-analyzers-common@8.9.0" + }, + { + "nodeId": "org.apache.lucene:lucene-memory@8.9.0" + }, + { + "nodeId": "org.apache.lucene:lucene-queries@8.9.0" + }, + { + "nodeId": "joda-time:joda-time@2.9.2" + }, + { + "nodeId": "org.hdrhistogram:HdrHistogram@2.1.12" + }, + { + "nodeId": "org.opensearch:opensearch-x-content@1.1.0" + }, + { + "nodeId": "org.apache.lucene:lucene-queryparser@8.9.0" + } + ] + }, + { + "nodeId": "org.opensearch:opensearch-cli@1.1.0", + "pkgId": "org.opensearch:opensearch-cli@1.1.0", + "deps": [ + { + "nodeId": "net.sf.jopt-simple:jopt-simple@5.0.4" + }, + { + "nodeId": "org.opensearch:opensearch-core@1.1.0" + } + ] + }, + { + "nodeId": "org.opensearch:opensearch-core@1.1.0", + "pkgId": "org.opensearch:opensearch-core@1.1.0", + "deps": [] + }, + { + "nodeId": "org.opensearch:opensearch-geo@1.1.0", + "pkgId": "org.opensearch:opensearch-geo@1.1.0", + "deps": [] + }, + { + "nodeId": "org.opensearch:opensearch-secure-sm@1.1.0", + "pkgId": "org.opensearch:opensearch-secure-sm@1.1.0", + "deps": [] + }, + { + "nodeId": "org.opensearch:opensearch-x-content@1.1.0", + "pkgId": "org.opensearch:opensearch-x-content@1.1.0", + "deps": [ + { + "nodeId": "org.opensearch:opensearch-core@1.1.0" + }, + { + "nodeId": "com.fasterxml.jackson.dataformat:jackson-dataformat-cbor@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.dataformat:jackson-dataformat-yaml@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.dataformat:jackson-dataformat-smile@2.9.8" + }, + { + "nodeId": "org.yaml:snakeyaml@1.23" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + } + ] + }, + { + "nodeId": "org.opensearch.plugin:rank-eval-client@1.1.0", + "pkgId": "org.opensearch.plugin:rank-eval-client@1.1.0", + "deps": [] + }, + { + "nodeId": "org.opensearch.plugin:parent-join-client@1.1.0", + "pkgId": "org.opensearch.plugin:parent-join-client@1.1.0", + "deps": [] + }, + { + "nodeId": "//integrations/eloqua:main@bazel", + "pkgId": "//integrations/eloqua:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//integrations/priority_sync:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//secrets/integration:main@bazel" + }, + { + "nodeId": "//secrets/system:main@bazel" + }, + { + "nodeId": "//services/resync:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "//webhook/client:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-common@2.31" + } + ] + }, + { + "nodeId": "//integrations/email:main@bazel", + "pkgId": "//integrations/email:main@bazel", + "deps": [ + { + "nodeId": "//aws:main@bazel" + }, + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//integrations/file:main@bazel" + }, + { + "nodeId": "//integrations/s3:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//markdown:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-s3@1.12.84" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "javax.mail:mail@1.4.5" + }, + { + "nodeId": "org.apache.commons:commons-compress@1.16" + } + ] + }, + { + "nodeId": "javax.mail:mail@1.4.5", + "pkgId": "javax.mail:mail@1.4.5", + "deps": [ + { + "nodeId": "javax.activation:activation@1.1" + } + ] + }, + { + "nodeId": "//integrations/facebook:main@bazel", + "pkgId": "//integrations/facebook:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//core_utils:main@bazel" + }, + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//integrations/bidirectional_cube:main@bazel" + }, + { + "nodeId": "//integrations/cube:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//logging:main@bazel" + }, + { + "nodeId": "//markdown:main@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//secrets/integration:main@bazel" + }, + { + "nodeId": "//secrets/system:main@bazel" + }, + { + "nodeId": "//utils/exceptions:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "//utils/validations:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "commons-lang:commons-lang@2.6" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.apache.commons:commons-lang3@3.12.0" + }, + { + "nodeId": "org.eclipse.jetty:jetty-util@9.4.40.v20210413" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-common@2.31" + } + ] + }, + { + "nodeId": "//integrations/acmecorp_log:main@bazel", + "pkgId": "//integrations/acmecorp_log:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//core_utils:main@bazel" + }, + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//integrations/isolated_endpoint_sync:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//secrets/integration:main@bazel" + }, + { + "nodeId": "//secrets/system:main@bazel" + }, + { + "nodeId": "//services:main@bazel" + }, + { + "nodeId": "//utils/exceptions:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.google.auth:google-auth-library-oauth2-http@0.22.0" + }, + { + "nodeId": "com.google.cloud:google-cloud-core@1.48.0" + }, + { + "nodeId": "com.google.cloud:google-cloud-storage@1.108.0" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.apache.logging.log4j:log4j-core@2.17.1" + }, + { + "nodeId": "org.json:json@20171018" + } + ] + }, + { + "nodeId": "org.apache.logging.log4j:log4j-core@2.17.1", + "pkgId": "org.apache.logging.log4j:log4j-core@2.17.1", + "deps": [ + { + "nodeId": "org.apache.logging.log4j:log4j-api@2.17.1" + } + ] + }, + { + "nodeId": "//integrations/freshdesk:main@bazel", + "pkgId": "//integrations/freshdesk:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-common@2.31" + }, + { + "nodeId": "org.slf4j:slf4j-api@1.7.13" + } + ] + }, + { + "nodeId": "//integrations/freshservice_classic:main@bazel", + "pkgId": "//integrations/freshservice_classic:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//util:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.apache.commons:commons-collections4@4.1" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-common@2.31" + }, + { + "nodeId": "org.slf4j:slf4j-api@1.7.13" + } + ] + }, + { + "nodeId": "//integrations/front:main@bazel", + "pkgId": "//integrations/front:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//integrations/priority_sync:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//secrets/integration:main@bazel" + }, + { + "nodeId": "//secrets/system:main@bazel" + }, + { + "nodeId": "//util:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "@com_fasterxml_jackson_dataformat_jackson_dataformat_csv//:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "commons-codec:commons-codec@1.10" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + } + ] + }, + { + "nodeId": "//integrations/functions/aws_lambda:main@bazel", + "pkgId": "//integrations/functions/aws_lambda:main@bazel", + "deps": [ + { + "nodeId": "//aws:main@bazel" + }, + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//database:enums@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//integrations/functions/common:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-core@1.12.84" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-lambda@1.12.84" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-s3@1.12.84" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-sts@1.12.84" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + } + ] + }, + { + "nodeId": "//integrations/functions/common:main@bazel", + "pkgId": "//integrations/functions/common:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//markdown:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-core@1.12.84" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-common@2.31" + } + ] + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-lambda@1.12.84", + "pkgId": "com.amazonaws:aws-java-sdk-lambda@1.12.84", + "deps": [ + { + "nodeId": "com.amazonaws:aws-java-sdk-core@1.12.84" + }, + { + "nodeId": "com.amazonaws:jmespath-java@1.11.91" + } + ] + }, + { + "nodeId": "//integrations/functions/azure_function:main@bazel", + "pkgId": "//integrations/functions/azure_function:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//integrations/functions/common:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-common@2.31" + } + ] + }, + { + "nodeId": "//integrations/functions/google_cloud_function:main@bazel", + "pkgId": "//integrations/functions/google_cloud_function:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//crypto:main@bazel" + }, + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//globals:main@bazel" + }, + { + "nodeId": "//google_cloud:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//integrations/functions/common:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//util:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "io.jsonwebtoken:jjwt@0.9.0" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-common@2.31" + } + ] + }, + { + "nodeId": "//integrations/gcs:main@bazel", + "pkgId": "//integrations/gcs:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//globals:main@bazel" + }, + { + "nodeId": "//google_cloud:main@bazel" + }, + { + "nodeId": "//integrations/file:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//secrets/system:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.api-client:google-api-client@1.31.1" + }, + { + "nodeId": "com.google.apis:google-api-services-storage@v1-rev20200326-1.30.9" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "com.google.http-client:google-http-client@1.39.2" + }, + { + "nodeId": "com.google.oauth-client:google-oauth-client@1.23.0" + }, + { + "nodeId": "io.projectreactor:reactor-core@3.4.11" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-common@2.31" + } + ] + }, + { + "nodeId": "//integrations/gainsight_customer_success:main@bazel", + "pkgId": "//integrations/gainsight_customer_success:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//util:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "com.intellij:annotations@12.0" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.apache.commons:commons-lang3@3.12.0" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-common@2.31" + }, + { + "nodeId": "org.json:json@20171018" + } + ] + }, + { + "nodeId": "//integrations/gdrive:main@bazel", + "pkgId": "//integrations/gdrive:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//google_cloud:main@bazel" + }, + { + "nodeId": "//integrations/file:main@bazel" + }, + { + "nodeId": "//integrations/gsheets:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.api-client:google-api-client@1.31.1" + }, + { + "nodeId": "com.google.apis:google-api-services-drive@v3-rev197-1.25.0" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "com.google.http-client:google-http-client@1.39.2" + }, + { + "nodeId": "com.google.http-client:google-http-client-jackson2@1.35.0" + }, + { + "nodeId": "com.google.oauth-client:google-oauth-client-jetty@1.23.0" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.apache.commons:commons-lang3@3.12.0" + } + ] + }, + { + "nodeId": "//integrations/gsheets:main@bazel", + "pkgId": "//integrations/gsheets:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//crypto:main@bazel" + }, + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//globals:main@bazel" + }, + { + "nodeId": "//google_cloud:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//secrets/system:main@bazel" + }, + { + "nodeId": "//services:ab_tests@bazel" + }, + { + "nodeId": "//util:main@bazel" + }, + { + "nodeId": "//utils/exceptions:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.apache.commons:commons-lang3@3.12.0" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + } + ] + }, + { + "nodeId": "com.google.apis:google-api-services-drive@v3-rev197-1.25.0", + "pkgId": "com.google.apis:google-api-services-drive@v3-rev197-1.25.0", + "deps": [ + { + "nodeId": "com.google.api-client:google-api-client@1.31.1" + } + ] + }, + { + "nodeId": "com.google.oauth-client:google-oauth-client-jetty@1.23.0", + "pkgId": "com.google.oauth-client:google-oauth-client-jetty@1.23.0", + "deps": [ + { + "nodeId": "com.google.oauth-client:google-oauth-client-java6@1.23.0" + }, + { + "nodeId": "org.mortbay.jetty:jetty@6.1.26" + } + ] + }, + { + "nodeId": "com.google.oauth-client:google-oauth-client-java6@1.23.0", + "pkgId": "com.google.oauth-client:google-oauth-client-java6@1.23.0", + "deps": [ + { + "nodeId": "com.google.oauth-client:google-oauth-client@1.23.0" + } + ] + }, + { + "nodeId": "//integrations/github:main@bazel", + "pkgId": "//integrations/github:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//crypto:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//markdown:main@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//secrets/integration:main@bazel" + }, + { + "nodeId": "//secrets/system:main@bazel" + }, + { + "nodeId": "//util:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "//webhook/client:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.dataformat:jackson-dataformat-smile@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-common@2.31" + } + ] + }, + { + "nodeId": "//integrations/google_ad_manager:main@bazel", + "pkgId": "//integrations/google_ad_manager:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//core_utils:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//integrations/cube:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//markdown:main@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//secrets/system:main@bazel" + }, + { + "nodeId": "//util:main@bazel" + }, + { + "nodeId": "//utils/exceptions:main@bazel" + }, + { + "nodeId": "//xml_util:main@bazel" + }, + { + "nodeId": "@com_fasterxml_jackson_dataformat_jackson_dataformat_csv//:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "javax.xml.bind:jaxb-api@2.2.2" + } + ] + }, + { + "nodeId": "//integrations/google_analytics:main@bazel", + "pkgId": "//integrations/google_analytics:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//core_utils:main@bazel" + }, + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//http:curl_request@bazel" + }, + { + "nodeId": "//integrations/cube:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//markdown:main@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//secrets/system:main@bazel" + }, + { + "nodeId": "//util:rest_api@bazel" + }, + { + "nodeId": "//utils/time:acmecorp_clock@bazel" + }, + { + "nodeId": "//utils/token_api:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.apache.commons:commons-lang3@3.12.0" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + } + ] + }, + { + "nodeId": "//util:rest_api@bazel", + "pkgId": "//util:rest_api@bazel", + "deps": [ + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.dataformat:jackson-dataformat-yaml@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "com.intellij:annotations@12.0" + }, + { + "nodeId": "commons-codec:commons-codec@1.10" + }, + { + "nodeId": "io.netty:netty-buffer@4.1.50.Final" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + }, + { + "nodeId": "org.jooq:jool-java-8@0.9.14" + } + ] + }, + { + "nodeId": "//utils/time:acmecorp_clock@bazel", + "pkgId": "//utils/time:acmecorp_clock@bazel", + "deps": [ + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + } + ] + }, + { + "nodeId": "//utils/token_api:main@bazel", + "pkgId": "//utils/token_api:main@bazel", + "deps": [ + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//util:main@bazel" + }, + { + "nodeId": "//utils/nullability:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + } + ] + }, + { + "nodeId": "//integrations/google_analytics_4:main@bazel", + "pkgId": "//integrations/google_analytics_4:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//core_utils:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//http:curl_request@bazel" + }, + { + "nodeId": "//integrations/bidirectional_cube:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//markdown:main@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//secrets/system:main@bazel" + }, + { + "nodeId": "//util:main@bazel" + }, + { + "nodeId": "//utils/token_api:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.apache.commons:commons-lang3@3.12.0" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + } + ] + }, + { + "nodeId": "//integrations/google_analytics_4_export:main@bazel", + "pkgId": "//integrations/google_analytics_4_export:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//core_utils:main@bazel" + }, + { + "nodeId": "//crypto:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//globals:main@bazel" + }, + { + "nodeId": "//google_cloud:main@bazel" + }, + { + "nodeId": "//integrations/google_analytics_360:main@bazel" + }, + { + "nodeId": "//integrations/priority_sync:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.api:gax@2.3.0" + }, + { + "nodeId": "com.google.apis:google-api-services-bigquery@v2-rev459-1.25.0" + }, + { + "nodeId": "com.google.auth:google-auth-library-oauth2-http@0.22.0" + }, + { + "nodeId": "com.google.cloud:google-cloud-bigquery@1.48.0" + }, + { + "nodeId": "com.google.cloud:google-cloud-core@1.48.0" + }, + { + "nodeId": "com.google.cloud:google-cloud-storage@1.108.0" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + } + ] + }, + { + "nodeId": "//integrations/google_analytics_360:main@bazel", + "pkgId": "//integrations/google_analytics_360:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//crypto:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//globals:main@bazel" + }, + { + "nodeId": "//google_cloud:main@bazel" + }, + { + "nodeId": "//integrations/priority_sync:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.api:gax@2.3.0" + }, + { + "nodeId": "com.google.apis:google-api-services-bigquery@v2-rev459-1.25.0" + }, + { + "nodeId": "com.google.auth:google-auth-library-oauth2-http@0.22.0" + }, + { + "nodeId": "com.google.cloud:google-cloud-bigquery@1.48.0" + }, + { + "nodeId": "com.google.cloud:google-cloud-core@1.48.0" + }, + { + "nodeId": "com.google.cloud:google-cloud-storage@1.108.0" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + } + ] + }, + { + "nodeId": "//integrations/google_display_and_video_360:main@bazel", + "pkgId": "//integrations/google_display_and_video_360:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//core_utils:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//integrations/bidirectional_cube:main@bazel" + }, + { + "nodeId": "//integrations/cube:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//markdown:main@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//secrets/integration:main@bazel" + }, + { + "nodeId": "//secrets/system:main@bazel" + }, + { + "nodeId": "//util:main@bazel" + }, + { + "nodeId": "//utils/exceptions:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "//utils/token_api:main@bazel" + }, + { + "nodeId": "@com_fasterxml_jackson_dataformat_jackson_dataformat_csv//:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + } + ] + }, + { + "nodeId": "//integrations/google_search_ads_360:main@bazel", + "pkgId": "//integrations/google_search_ads_360:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//core_utils:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//integrations/bidirectional_cube:main@bazel" + }, + { + "nodeId": "//integrations/cube:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//markdown:main@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//secrets/integration:main@bazel" + }, + { + "nodeId": "//secrets/system:main@bazel" + }, + { + "nodeId": "//util:main@bazel" + }, + { + "nodeId": "//utils/exceptions:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "//utils/token_api:main@bazel" + }, + { + "nodeId": "@com_fasterxml_jackson_dataformat_jackson_dataformat_csv//:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.apache.commons:commons-lang3@3.12.0" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-common@2.31" + } + ] + }, + { + "nodeId": "//integrations/google_play:main@bazel", + "pkgId": "//integrations/google_play:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//google_cloud:main@bazel" + }, + { + "nodeId": "//integrations/file:main@bazel" + }, + { + "nodeId": "//integrations/gcs:main@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//secrets/system:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.api-client:google-api-client@1.31.1" + }, + { + "nodeId": "com.google.apis:google-api-services-storage@v1-rev20200326-1.30.9" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "com.google.http-client:google-http-client@1.39.2" + }, + { + "nodeId": "com.google.oauth-client:google-oauth-client@1.23.0" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-common@2.31" + } + ] + }, + { + "nodeId": "//integrations/google_search_console:main@bazel", + "pkgId": "//integrations/google_search_console:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//http:curl_request@bazel" + }, + { + "nodeId": "//integrations/bidirectional_cube:main@bazel" + }, + { + "nodeId": "//integrations/priority_sync:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//markdown:main@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//secrets/system:main@bazel" + }, + { + "nodeId": "//utils/exceptions:main@bazel" + }, + { + "nodeId": "//utils/token_api:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.apache.commons:commons-lang3@3.12.0" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-common@2.31" + } + ] + }, + { + "nodeId": "//integrations/greenhouse:main@bazel", + "pkgId": "//integrations/greenhouse:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//ecomm:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//integrations/isolated_endpoint_sync:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//util:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "//webhook/client:main@bazel" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-s3@1.12.84" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.dataformat:jackson-dataformat-smile@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-common@2.31" + }, + { + "nodeId": "org.slf4j:slf4j-api@1.7.13" + } + ] + }, + { + "nodeId": "//integrations/heap:main@bazel", + "pkgId": "//integrations/heap:main@bazel", + "deps": [ + { + "nodeId": "//aws:main@bazel" + }, + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//integrations/file:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-s3@1.12.84" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "org.apache.avro:avro@1.11.0" + } + ] + }, + { + "nodeId": "//integrations/height:main@bazel", + "pkgId": "//integrations/height:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//secrets/system:main@bazel" + }, + { + "nodeId": "//util:main@bazel" + }, + { + "nodeId": "//utils/exceptions:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + } + ] + }, + { + "nodeId": "//integrations/helpscout:main@bazel", + "pkgId": "//integrations/helpscout:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//integrations/priority_sync:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//secrets/integration:main@bazel" + }, + { + "nodeId": "//secrets/system:main@bazel" + }, + { + "nodeId": "//services/resync:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "//webhook/client:main@bazel" + }, + { + "nodeId": "//webhook/utils:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-common@2.31" + }, + { + "nodeId": "org.json:json@20171018" + }, + { + "nodeId": "org.slf4j:slf4j-api@1.7.13" + } + ] + }, + { + "nodeId": "//integrations/hubspot:main@bazel", + "pkgId": "//integrations/hubspot:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//core_utils:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//integrations/priority_sync:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//secrets/system:main@bazel" + }, + { + "nodeId": "//services/resync:main@bazel" + }, + { + "nodeId": "//util:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "//webhook/client:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.apache.commons:commons-lang3@3.12.0" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-common@2.31" + } + ] + }, + { + "nodeId": "//integrations/instagram:main@bazel", + "pkgId": "//integrations/instagram:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//core_utils:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//integrations/bidirectional_cube:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//secrets/system:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.assertj:assertj-core@3.14.0" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-common@2.31" + } + ] + }, + { + "nodeId": "org.assertj:assertj-core@3.14.0", + "pkgId": "org.assertj:assertj-core@3.14.0", + "deps": [] + }, + { + "nodeId": "//integrations/intercom:main@bazel", + "pkgId": "//integrations/intercom:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//secrets/integration:main@bazel" + }, + { + "nodeId": "//secrets/system:main@bazel" + }, + { + "nodeId": "//services/resync:main@bazel" + }, + { + "nodeId": "//util:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "//webhook/client:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.cloud:google-cloud-core@1.48.0" + }, + { + "nodeId": "com.google.cloud:google-cloud-storage@1.108.0" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-common@2.31" + }, + { + "nodeId": "org.slf4j:slf4j-api@1.7.13" + } + ] + }, + { + "nodeId": "//integrations/iterable:main@bazel", + "pkgId": "//integrations/iterable:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//core_utils:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//integrations/priority_sync:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//util:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "//webhook/client:main@bazel" + }, + { + "nodeId": "@com_fasterxml_jackson_dataformat_jackson_dataformat_csv//:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.apache.httpcomponents:httpcore@4.4.13" + } + ] + }, + { + "nodeId": "//integrations/itunes_connect:main@bazel", + "pkgId": "//integrations/itunes_connect:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//crypto:main@bazel" + }, + { + "nodeId": "//dockerized/google_cloud/datastore:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//globals:main@bazel" + }, + { + "nodeId": "//google_cloud:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//integrations/cube:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//markdown:main@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//secrets/system:main@bazel" + }, + { + "nodeId": "//util:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "//xml_util:main@bazel" + }, + { + "nodeId": "@com_fasterxml_jackson_dataformat_jackson_dataformat_csv//:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.cloud:google-cloud-core@1.48.0" + }, + { + "nodeId": "com.google.cloud:google-cloud-datastore@1.70.0" + }, + { + "nodeId": "com.google.code.gson:gson@2.9.0" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "commons-codec:commons-codec@1.10" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "javax.xml.bind:jaxb-api@2.2.2" + }, + { + "nodeId": "junit:junit@4.13" + }, + { + "nodeId": "net.lingala.zip4j:zip4j@1.3.2" + }, + { + "nodeId": "org.apache.httpcomponents:httpclient@4.5.13" + }, + { + "nodeId": "org.apache.httpcomponents:httpcore@4.4.13" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + }, + { + "nodeId": "org.mockito:mockito-core@2.28.2" + } + ] + }, + { + "nodeId": "//dockerized/google_cloud/datastore:main@bazel", + "pkgId": "//dockerized/google_cloud/datastore:main@bazel", + "deps": [ + { + "nodeId": "//dockerized/common:main@bazel" + }, + { + "nodeId": "//google_cloud:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + } + ] + }, + { + "nodeId": "net.lingala.zip4j:zip4j@1.3.2", + "pkgId": "net.lingala.zip4j:zip4j@1.3.2", + "deps": [] + }, + { + "nodeId": "//integrations/jira:main@bazel", + "pkgId": "//integrations/jira:main@bazel", + "deps": [ + { + "nodeId": "//core_implementation:standard_renaming_filter_2@bazel" + }, + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//core_utils:main@bazel" + }, + { + "nodeId": "//crypto:main@bazel" + }, + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//logging:main@bazel" + }, + { + "nodeId": "//markdown:main@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//secrets/integration:main@bazel" + }, + { + "nodeId": "//secrets/system:main@bazel" + }, + { + "nodeId": "//util:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "//webhook/client:main@bazel" + }, + { + "nodeId": "//webhook/utils:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "commons-lang:commons-lang@2.6" + }, + { + "nodeId": "io.projectreactor:reactor-core@3.4.11" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "joda-time:joda-time@2.9.2" + }, + { + "nodeId": "org.apache.commons:commons-collections4@4.1" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-common@2.31" + }, + { + "nodeId": "org.glassfish.jersey.security:oauth1-client@2.31" + } + ] + }, + { + "nodeId": "//core_implementation:standard_renaming_filter_2@bazel", + "pkgId": "//core_implementation:standard_renaming_filter_2@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + } + ] + }, + { + "nodeId": "//integrations/kinesis:main@bazel", + "pkgId": "//integrations/kinesis:main@bazel", + "deps": [ + { + "nodeId": "//aws:main@bazel" + }, + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//integrations/file:main@bazel" + }, + { + "nodeId": "//integrations/s3:main@bazel" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-s3@1.12.84" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-common@2.31" + } + ] + }, + { + "nodeId": "//integrations/klaviyo:main@bazel", + "pkgId": "//integrations/klaviyo:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//util:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-common@2.31" + }, + { + "nodeId": "org.slf4j:slf4j-api@1.7.13" + } + ] + }, + { + "nodeId": "//integrations/kustomer:main@bazel", + "pkgId": "//integrations/kustomer:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//core_utils:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//markdown:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.apache.httpcomponents:httpclient@4.5.13" + }, + { + "nodeId": "org.apache.httpcomponents:httpcore@4.4.13" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + } + ] + }, + { + "nodeId": "//integrations/lever:main@bazel", + "pkgId": "//integrations/lever:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//core_utils:main@bazel" + }, + { + "nodeId": "//ecomm:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//integrations/isolated_endpoint_sync:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//util:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-common@2.31" + } + ] + }, + { + "nodeId": "//integrations/lightspeed_retail:main@bazel", + "pkgId": "//integrations/lightspeed_retail:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//integrations/isolated_endpoint_sync:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//secrets/system:main@bazel" + }, + { + "nodeId": "//util:main@bazel" + }, + { + "nodeId": "//utils/exceptions:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.apache.httpcomponents:httpcore@4.4.13" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-common@2.31" + }, + { + "nodeId": "org.json:json@20171018" + }, + { + "nodeId": "org.slf4j:slf4j-api@1.7.13" + } + ] + }, + { + "nodeId": "//integrations/linkedin:main@bazel", + "pkgId": "//integrations/linkedin:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//core_utils:main@bazel" + }, + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//globals:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//integrations/bidirectional_cube:main@bazel" + }, + { + "nodeId": "//integrations/cube:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//secrets/system:main@bazel" + }, + { + "nodeId": "//services/resync:main@bazel" + }, + { + "nodeId": "//util:main@bazel" + }, + { + "nodeId": "//utils/nullability:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "jakarta.annotation:jakarta.annotation-api@1.3.5" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.apache.commons:commons-lang3@3.12.0" + }, + { + "nodeId": "org.apache.httpcomponents:httpclient@4.5.13" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-common@2.31" + }, + { + "nodeId": "org.slf4j:slf4j-api@1.7.13" + } + ] + }, + { + "nodeId": "//integrations/mailchimp:main@bazel", + "pkgId": "//integrations/mailchimp:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//globals:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//secrets/integration:main@bazel" + }, + { + "nodeId": "//secrets/system:main@bazel" + }, + { + "nodeId": "//services/resync:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "io.projectreactor:reactor-core@3.4.11" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.apache.httpcomponents:httpclient@4.5.13" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-common@2.31" + }, + { + "nodeId": "org.json:json@20171018" + } + ] + }, + { + "nodeId": "//integrations/mandrill:main@bazel", + "pkgId": "//integrations/mandrill:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//core_utils:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//secrets/integration:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "//webhook/client:main@bazel" + }, + { + "nodeId": "@com_fasterxml_jackson_dataformat_jackson_dataformat_csv//:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-common@2.31" + } + ] + }, + { + "nodeId": "//integrations/marin:main@bazel", + "pkgId": "//integrations/marin:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//integrations/cube:main@bazel" + }, + { + "nodeId": "//integrations/file:main@bazel" + }, + { + "nodeId": "//integrations/sftp:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "@com_fasterxml_jackson_dataformat_jackson_dataformat_csv//:main@bazel" + }, + { + "nodeId": "@jsch_patched//:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + } + ] + }, + { + "nodeId": "//integrations/sftp:main@bazel", + "pkgId": "//integrations/sftp:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//integrations/file:main@bazel" + }, + { + "nodeId": "//ip_utils:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//markdown:main@bazel" + }, + { + "nodeId": "//port_forwarder:main@bazel" + }, + { + "nodeId": "//ssh:main@bazel" + }, + { + "nodeId": "//utils/fsort:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "@jsch_patched//:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-common@2.31" + } + ] + }, + { + "nodeId": "//integrations/marketo:main@bazel", + "pkgId": "//integrations/marketo:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//crypto:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//integrations/priority_sync:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//markdown:main@bazel" + }, + { + "nodeId": "//services/resync:main@bazel" + }, + { + "nodeId": "//size:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "@com_fasterxml_jackson_dataformat_jackson_dataformat_csv//:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.dataformat:jackson-dataformat-xml@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "com.sun.xml.bind:jaxb-impl@2.2.11" + }, + { + "nodeId": "com.sun.xml.messaging.saaj:saaj-impl@1.3.25" + }, + { + "nodeId": "commons-codec:commons-codec@1.10" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "javax.xml.bind:jaxb-api@2.2.2" + }, + { + "nodeId": "javax.xml.soap:javax.xml.soap-api@1.4.0" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-common@2.31" + } + ] + }, + { + "nodeId": "//size:main@bazel", + "pkgId": "//size:main@bazel", + "deps": [ + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + } + ] + }, + { + "nodeId": "com.sun.xml.messaging.saaj:saaj-impl@1.3.25", + "pkgId": "com.sun.xml.messaging.saaj:saaj-impl@1.3.25", + "deps": [ + { + "nodeId": "javax.xml.soap:javax.xml.soap-api@1.4.0" + }, + { + "nodeId": "org.jvnet.mimepull:mimepull@1.9.6" + }, + { + "nodeId": "org.jvnet.staxex:stax-ex@1.7.7" + } + ] + }, + { + "nodeId": "org.jvnet.mimepull:mimepull@1.9.6", + "pkgId": "org.jvnet.mimepull:mimepull@1.9.6", + "deps": [] + }, + { + "nodeId": "org.jvnet.staxex:stax-ex@1.7.7", + "pkgId": "org.jvnet.staxex:stax-ex@1.7.7", + "deps": [ + { + "nodeId": "javax.activation:activation@1.1" + }, + { + "nodeId": "javax.xml.stream:stax-api@1.0-2" + } + ] + }, + { + "nodeId": "//integrations/mavenlink:main@bazel", + "pkgId": "//integrations/mavenlink:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//secrets/system:main@bazel" + }, + { + "nodeId": "//util:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "javax.validation:validation-api@1.1.0.Final" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-common@2.31" + } + ] + }, + { + "nodeId": "//integrations/medallia:main@bazel", + "pkgId": "//integrations/medallia:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//core_utils:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//http_client:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//secrets/integration:main@bazel" + }, + { + "nodeId": "//secrets/system:main@bazel" + }, + { + "nodeId": "//util:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.apache.commons:commons-lang3@3.12.0" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-common@2.31" + }, + { + "nodeId": "org.jetbrains:annotations@17.0.0" + } + ] + }, + { + "nodeId": "//http_client:main@bazel", + "pkgId": "//http_client:main@bazel", + "deps": [ + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//secrets/integration:main@bazel" + }, + { + "nodeId": "//secrets/system:main@bazel" + }, + { + "nodeId": "//util:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "io.github.resilience4j:resilience4j-core@1.7.1" + }, + { + "nodeId": "io.github.resilience4j:resilience4j-retry@1.7.1" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.apache.commons:commons-lang3@3.12.0" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-common@2.31" + } + ] + }, + { + "nodeId": "io.github.resilience4j:resilience4j-core@1.7.1", + "pkgId": "io.github.resilience4j:resilience4j-core@1.7.1", + "deps": [ + { + "nodeId": "io.vavr:vavr@0.10.2" + }, + { + "nodeId": "org.slf4j:slf4j-api@1.7.13" + } + ] + }, + { + "nodeId": "io.vavr:vavr@0.10.2", + "pkgId": "io.vavr:vavr@0.10.2", + "deps": [ + { + "nodeId": "io.vavr:vavr-match@0.10.2" + } + ] + }, + { + "nodeId": "io.vavr:vavr-match@0.10.2", + "pkgId": "io.vavr:vavr-match@0.10.2", + "deps": [] + }, + { + "nodeId": "io.github.resilience4j:resilience4j-retry@1.7.1", + "pkgId": "io.github.resilience4j:resilience4j-retry@1.7.1", + "deps": [ + { + "nodeId": "io.github.resilience4j:resilience4j-core@1.7.1" + }, + { + "nodeId": "io.vavr:vavr@0.10.2" + }, + { + "nodeId": "org.slf4j:slf4j-api@1.7.13" + } + ] + }, + { + "nodeId": "//integrations/microsoft_lists:main@bazel", + "pkgId": "//integrations/microsoft_lists:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//integrations/azure_consumer_file:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//secrets/system:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + } + ] + }, + { + "nodeId": "//integrations/mixpanel:main@bazel", + "pkgId": "//integrations/mixpanel:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//core_utils:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//integrations/priority_sync:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//markdown:main@bazel" + }, + { + "nodeId": "//util:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "io.projectreactor:reactor-core@3.4.11" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-common@2.31" + } + ] + }, + { + "nodeId": "//integrations/mysql:main@bazel", + "pkgId": "//integrations/mysql:main@bazel", + "deps": [ + { + "nodeId": "//core_implementation:main@bazel" + }, + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//crypto:main@bazel" + }, + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//database:tls_verify@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//geo:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//integrations/configuration_tracker:main@bazel" + }, + { + "nodeId": "//integrations/db:main@bazel" + }, + { + "nodeId": "//integrations/speed_test:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//logging:main@bazel" + }, + { + "nodeId": "//markdown:main@bazel" + }, + { + "nodeId": "//micrometer:main@bazel" + }, + { + "nodeId": "//port_forwarder:main@bazel" + }, + { + "nodeId": "//secred/common:main@bazel" + }, + { + "nodeId": "//secred/util:main@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//secrets/services:main@bazel" + }, + { + "nodeId": "//services:ab_tests@bazel" + }, + { + "nodeId": "//services/resync:main@bazel" + }, + { + "nodeId": "//slack:main@bazel" + }, + { + "nodeId": "//ssh:main@bazel" + }, + { + "nodeId": "//teleport:main@bazel" + }, + { + "nodeId": "//utils/serializers:main@bazel" + }, + { + "nodeId": "//utils/sync_statistics:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "//utils/validations:main@bazel" + }, + { + "nodeId": "//verification:main@bazel" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-core@1.12.84" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.github.jsqlparser:jsqlparser@4.2" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "com.intellij:annotations@12.0" + }, + { + "nodeId": "com.walkmind.extensions:collections@1.20" + }, + { + "nodeId": "com.zaxxer:HikariCP@3.4.1" + }, + { + "nodeId": "commons-codec:commons-codec@1.10" + }, + { + "nodeId": "io.micrometer:micrometer-core@1.5.3" + }, + { + "nodeId": "io.netty:netty-buffer@4.1.50.Final" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "mysql:mysql-connector-java@8.0.13" + }, + { + "nodeId": "org.apache.commons:commons-lang3@3.12.0" + }, + { + "nodeId": "org.jeasy:easy-rules-core@4.1.0" + }, + { + "nodeId": "org.mariadb.jdbc:mariadb-java-client@2.5.4" + }, + { + "nodeId": "org.rocksdb:rocksdbjni@6.8.1" + }, + { + "nodeId": "@mysql_binlog_connector//:main@bazel" + } + ] + }, + { + "nodeId": "//integrations/optimizely:main@bazel", + "pkgId": "//integrations/optimizely:main@bazel", + "deps": [ + { + "nodeId": "//aws:main@bazel" + }, + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//core_utils:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//integrations/file:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//markdown:main@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//secrets/system:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-core@1.12.84" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-s3@1.12.84" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.apache.avro:avro@1.11.0" + }, + { + "nodeId": "org.apache.hadoop:hadoop-auth@2.7.7" + }, + { + "nodeId": "org.apache.hadoop:hadoop-common@2.7.7" + }, + { + "nodeId": "org.apache.hadoop:hadoop-mapreduce-client-core@2.7.7" + }, + { + "nodeId": "org.apache.parquet:parquet-avro@1.12.2" + }, + { + "nodeId": "org.apache.parquet:parquet-column@1.12.2" + }, + { + "nodeId": "org.apache.parquet:parquet-common@1.12.2" + }, + { + "nodeId": "org.apache.parquet:parquet-hadoop@1.12.2" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-common@2.31" + } + ] + }, + { + "nodeId": "//integrations/oracle_cloud_apps_cx:main@bazel", + "pkgId": "//integrations/oracle_cloud_apps_cx:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//dblike:main@bazel" + }, + { + "nodeId": "//integrations/oracle_cloud_apps:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "com.intellij:annotations@12.0" + }, + { + "nodeId": "commons-io:commons-io@2.4" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-common@2.31" + } + ] + }, + { + "nodeId": "//integrations/oracle_cloud_apps:main@bazel", + "pkgId": "//integrations/oracle_cloud_apps:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//core_utils:main@bazel" + }, + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//dblike:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//util:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "@com_fasterxml_jackson_dataformat_jackson_dataformat_csv//:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "com.intellij:annotations@12.0" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.apache.commons:commons-lang3@3.12.0" + }, + { + "nodeId": "org.apache.httpcomponents:httpcore@4.4.13" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-common@2.31" + } + ] + }, + { + "nodeId": "//integrations/oracle_cloud_apps_erp_scm:main@bazel", + "pkgId": "//integrations/oracle_cloud_apps_erp_scm:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//dblike:main@bazel" + }, + { + "nodeId": "//integrations/oracle_cloud_apps:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "com.intellij:annotations@12.0" + }, + { + "nodeId": "commons-io:commons-io@2.4" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-common@2.31" + } + ] + }, + { + "nodeId": "//integrations/oracle_fusion_cloud_apps:main@bazel", + "pkgId": "//integrations/oracle_fusion_cloud_apps:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//dblike:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//util:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "@com_fasterxml_jackson_dataformat_jackson_dataformat_csv//:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.dataformat:jackson-dataformat-xml@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-xml-provider@2.9.8" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "com.opencsv:opencsv@4.1" + }, + { + "nodeId": "com.sun.xml.messaging.saaj:saaj-impl@1.3.25" + }, + { + "nodeId": "commons-io:commons-io@2.4" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "javax.activation:activation@1.1" + }, + { + "nodeId": "javax.mail:mail@1.4.5" + }, + { + "nodeId": "javax.xml.bind:jaxb-api@2.2.2" + }, + { + "nodeId": "javax.xml.soap:javax.xml.soap-api@1.4.0" + }, + { + "nodeId": "org.apache.commons:commons-lang3@3.12.0" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-common@2.31" + }, + { + "nodeId": "org.glassfish.jersey.media:jersey-media-multipart@2.31" + } + ] + }, + { + "nodeId": "com.opencsv:opencsv@4.1", + "pkgId": "com.opencsv:opencsv@4.1", + "deps": [ + { + "nodeId": "commons-beanutils:commons-beanutils@1.9.2" + }, + { + "nodeId": "org.apache.commons:commons-lang3@3.12.0" + }, + { + "nodeId": "org.apache.commons:commons-text@1.1" + } + ] + }, + { + "nodeId": "org.apache.commons:commons-text@1.1", + "pkgId": "org.apache.commons:commons-text@1.1", + "deps": [ + { + "nodeId": "org.apache.commons:commons-lang3@3.12.0" + } + ] + }, + { + "nodeId": "org.glassfish.jersey.media:jersey-media-multipart@2.31", + "pkgId": "org.glassfish.jersey.media:jersey-media-multipart@2.31", + "deps": [ + { + "nodeId": "org.glassfish.jersey.core:jersey-common@2.31" + }, + { + "nodeId": "org.jvnet.mimepull:mimepull@1.9.6" + } + ] + }, + { + "nodeId": "//integrations/oracle:main@bazel", + "pkgId": "//integrations/oracle:main@bazel", + "deps": [ + { + "nodeId": "//aws:main@bazel" + }, + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//crypto:main@bazel" + }, + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//database:tls_verify@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//google_cloud:main@bazel" + }, + { + "nodeId": "//integrations/configuration_tracker:main@bazel" + }, + { + "nodeId": "//integrations/db:main@bazel" + }, + { + "nodeId": "//integrations/debezium_sql_parser:main@bazel" + }, + { + "nodeId": "//integrations/hvr:main@bazel" + }, + { + "nodeId": "//integrations/hvr/hvr_tool:main@bazel" + }, + { + "nodeId": "//integrations/hvr/unserializer:main@bazel" + }, + { + "nodeId": "//integrations/speed_test:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//logging:main@bazel" + }, + { + "nodeId": "//markdown:main@bazel" + }, + { + "nodeId": "//micrometer:main@bazel" + }, + { + "nodeId": "//port_forwarder:oracle@bazel" + }, + { + "nodeId": "//schema_migration:schema_migration_info@bazel" + }, + { + "nodeId": "//secred/util:main@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//secrets/services:main@bazel" + }, + { + "nodeId": "//services:ab_tests@bazel" + }, + { + "nodeId": "//services/resync:main@bazel" + }, + { + "nodeId": "//ssh:main@bazel" + }, + { + "nodeId": "//teleport:main@bazel" + }, + { + "nodeId": "//utils/beans:main@bazel" + }, + { + "nodeId": "//utils/binary:main@bazel" + }, + { + "nodeId": "//utils/byte_array_list:main@bazel" + }, + { + "nodeId": "//utils/byte_array_list/sync_adapter:main@bazel" + }, + { + "nodeId": "//utils/cipher_adapter:main@bazel" + }, + { + "nodeId": "//utils/exceptions:main@bazel" + }, + { + "nodeId": "//utils/oracle:main@bazel" + }, + { + "nodeId": "//utils/run_shell:main@bazel" + }, + { + "nodeId": "//utils/segmented_input_stream:main@bazel" + }, + { + "nodeId": "//utils/serializers:main@bazel" + }, + { + "nodeId": "//utils/sleep_control:main@bazel" + }, + { + "nodeId": "//utils/socket_receiver:main@bazel" + }, + { + "nodeId": "//utils/sync_statistics:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "@jsch_patched//:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.dataformat:jackson-dataformat-xml@2.9.8" + }, + { + "nodeId": "com.github.jsqlparser:jsqlparser@4.2" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "com.intellij:annotations@12.0" + }, + { + "nodeId": "com.walkmind.extensions:collections@1.20" + }, + { + "nodeId": "com.zaxxer:HikariCP@3.4.1" + }, + { + "nodeId": "commons-io:commons-io@2.4" + }, + { + "nodeId": "io.micrometer:micrometer-core@1.5.3" + }, + { + "nodeId": "io.netty:netty-buffer@4.1.50.Final" + }, + { + "nodeId": "org.jooq:jool-java-8@0.9.14" + } + ] + }, + { + "nodeId": "//integrations/debezium_sql_parser:main@bazel", + "pkgId": "//integrations/debezium_sql_parser:main@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/hvr:main@bazel", + "pkgId": "//integrations/hvr:main@bazel", + "deps": [ + { + "nodeId": "//aws:main@bazel" + }, + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//crypto:main@bazel" + }, + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//database:tls_verify@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//google_cloud:main@bazel" + }, + { + "nodeId": "//integrations/configuration_tracker:main@bazel" + }, + { + "nodeId": "//integrations/db:main@bazel" + }, + { + "nodeId": "//integrations/debezium_sql_parser:main@bazel" + }, + { + "nodeId": "//integrations/hvr/hvr_tool:main@bazel" + }, + { + "nodeId": "//integrations/hvr/unserializer:main@bazel" + }, + { + "nodeId": "//integrations/speed_test:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//logging:main@bazel" + }, + { + "nodeId": "//markdown:main@bazel" + }, + { + "nodeId": "//micrometer:main@bazel" + }, + { + "nodeId": "//schema_migration:schema_migration_info@bazel" + }, + { + "nodeId": "//secred/util:main@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//secrets/services:main@bazel" + }, + { + "nodeId": "//services:ab_tests@bazel" + }, + { + "nodeId": "//services/resync:main@bazel" + }, + { + "nodeId": "//ssh:main@bazel" + }, + { + "nodeId": "//utils/beans:main@bazel" + }, + { + "nodeId": "//utils/binary:main@bazel" + }, + { + "nodeId": "//utils/cipher_adapter:main@bazel" + }, + { + "nodeId": "//utils/exceptions:main@bazel" + }, + { + "nodeId": "//utils/run_shell:main@bazel" + }, + { + "nodeId": "//utils/segmented_input_stream:main@bazel" + }, + { + "nodeId": "//utils/serializers:main@bazel" + }, + { + "nodeId": "//utils/sleep_control:main@bazel" + }, + { + "nodeId": "//utils/socket_receiver:main@bazel" + }, + { + "nodeId": "//utils/sync_statistics:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "@jsch_patched//:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.dataformat:jackson-dataformat-xml@2.9.8" + }, + { + "nodeId": "com.github.jsqlparser:jsqlparser@4.2" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "com.intellij:annotations@12.0" + }, + { + "nodeId": "com.walkmind.extensions:collections@1.20" + }, + { + "nodeId": "com.zaxxer:HikariCP@3.4.1" + }, + { + "nodeId": "commons-io:commons-io@2.4" + }, + { + "nodeId": "io.micrometer:micrometer-core@1.5.3" + }, + { + "nodeId": "io.netty:netty-buffer@4.1.50.Final" + }, + { + "nodeId": "org.jooq:jool-java-8@0.9.14" + } + ] + }, + { + "nodeId": "//integrations/hvr/unserializer:main@bazel", + "pkgId": "//integrations/hvr/unserializer:main@bazel", + "deps": [ + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//utils/binary:main@bazel" + } + ] + }, + { + "nodeId": "//port_forwarder:oracle@bazel", + "pkgId": "//port_forwarder:oracle@bazel", + "deps": [ + { + "nodeId": "//verification:main@bazel" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//utils/oracle:main@bazel" + }, + { + "nodeId": "//database:tls_verify@bazel" + }, + { + "nodeId": "//aws:instance_id@bazel" + }, + { + "nodeId": "//dynamo:main@bazel" + }, + { + "nodeId": "//database:postgresql_jdbc_fix@bazel" + }, + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logging:main@bazel" + }, + { + "nodeId": "//globals:main@bazel" + }, + { + "nodeId": "@jsch_patched//:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//ssh:main@bazel" + }, + { + "nodeId": "//util:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.eclipse.jetty:jetty-server@9.4.40.v20210413" + }, + { + "nodeId": "org.eclipse.jetty:jetty-servlet@9.4.40.v20210413" + }, + { + "nodeId": "org.glassfish.jersey.containers:jersey-container-servlet-core@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-server@2.31" + }, + { + "nodeId": "org.bouncycastle:bcpkix-jdk15on@1.70" + } + ] + }, + { + "nodeId": "//utils/byte_array_list/sync_adapter:main@bazel", + "pkgId": "//utils/byte_array_list/sync_adapter:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//integrations/db:main@bazel" + }, + { + "nodeId": "//utils/byte_array_list:main@bazel" + } + ] + }, + { + "nodeId": "//integrations/oracle_hva:main@bazel", + "pkgId": "//integrations/oracle_hva:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//database:postgresql_jdbc_fix@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//integrations/db:main@bazel" + }, + { + "nodeId": "//integrations/hvr/hvr_tool:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//secrets/system:main@bazel" + }, + { + "nodeId": "//ssh:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "com.intellij:annotations@12.0" + }, + { + "nodeId": "com.walkmind.extensions:collections@1.20" + }, + { + "nodeId": "com.zaxxer:HikariCP@3.4.1" + }, + { + "nodeId": "commons-io:commons-io@2.4" + }, + { + "nodeId": "io.micrometer:micrometer-core@1.5.3" + }, + { + "nodeId": "io.netty:netty-buffer@4.1.50.Final" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.jooq:jool-java-8@0.9.14" + }, + { + "nodeId": "org.postgresql:postgresql@42.3.3" + } + ] + }, + { + "nodeId": "//integrations/oracle_hva2:main@bazel", + "pkgId": "//integrations/oracle_hva2:main@bazel", + "deps": [ + { + "nodeId": "//aws:main@bazel" + }, + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//crypto:main@bazel" + }, + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//database:tls_verify@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//google_cloud:main@bazel" + }, + { + "nodeId": "//integrations/configuration_tracker:main@bazel" + }, + { + "nodeId": "//integrations/db:main@bazel" + }, + { + "nodeId": "//integrations/hvr:main@bazel" + }, + { + "nodeId": "//integrations/hvr/hvr_tool:main@bazel" + }, + { + "nodeId": "//integrations/hvr/unserializer:main@bazel" + }, + { + "nodeId": "//integrations/oracle:main@bazel" + }, + { + "nodeId": "//integrations/speed_test:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//logging:main@bazel" + }, + { + "nodeId": "//markdown:main@bazel" + }, + { + "nodeId": "//micrometer:main@bazel" + }, + { + "nodeId": "//schema_migration:schema_migration_info@bazel" + }, + { + "nodeId": "//secred/util:main@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//secrets/services:main@bazel" + }, + { + "nodeId": "//services:ab_tests@bazel" + }, + { + "nodeId": "//services/resync:main@bazel" + }, + { + "nodeId": "//ssh:main@bazel" + }, + { + "nodeId": "//teleport:main@bazel" + }, + { + "nodeId": "//utils/beans:main@bazel" + }, + { + "nodeId": "//utils/binary:main@bazel" + }, + { + "nodeId": "//utils/byte_array_list:main@bazel" + }, + { + "nodeId": "//utils/byte_array_list/sync_adapter:main@bazel" + }, + { + "nodeId": "//utils/cipher_adapter:main@bazel" + }, + { + "nodeId": "//utils/exceptions:main@bazel" + }, + { + "nodeId": "//utils/oracle:main@bazel" + }, + { + "nodeId": "//utils/run_shell:main@bazel" + }, + { + "nodeId": "//utils/segmented_input_stream:main@bazel" + }, + { + "nodeId": "//utils/serializers:main@bazel" + }, + { + "nodeId": "//utils/sleep_control:main@bazel" + }, + { + "nodeId": "//utils/socket_receiver:main@bazel" + }, + { + "nodeId": "//utils/sync_statistics:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "@jsch_patched//:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.dataformat:jackson-dataformat-xml@2.9.8" + }, + { + "nodeId": "com.github.jsqlparser:jsqlparser@4.2" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "com.intellij:annotations@12.0" + }, + { + "nodeId": "com.walkmind.extensions:collections@1.20" + }, + { + "nodeId": "com.zaxxer:HikariCP@3.4.1" + }, + { + "nodeId": "commons-io:commons-io@2.4" + }, + { + "nodeId": "io.micrometer:micrometer-core@1.5.3" + }, + { + "nodeId": "io.netty:netty-buffer@4.1.50.Final" + }, + { + "nodeId": "org.jooq:jool-java-8@0.9.14" + } + ] + }, + { + "nodeId": "//integrations/outbrain:main@bazel", + "pkgId": "//integrations/outbrain:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//integrations/bidirectional_cube:main@bazel" + }, + { + "nodeId": "//integrations/priority_sync:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//secrets/integration:main@bazel" + }, + { + "nodeId": "//utils/exceptions:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "javax.servlet:javax.servlet-api@3.1.0" + }, + { + "nodeId": "org.eclipse.jetty:jetty-server@9.4.40.v20210413" + }, + { + "nodeId": "org.eclipse.jetty:jetty-servlet@9.4.40.v20210413" + }, + { + "nodeId": "org.eclipse.jetty:jetty-servlets@9.4.40.v20210413" + }, + { + "nodeId": "org.eclipse.jetty:jetty-util@9.4.40.v20210413" + }, + { + "nodeId": "org.glassfish.jersey.containers:jersey-container-servlet@2.31" + }, + { + "nodeId": "org.glassfish.jersey.containers:jersey-container-servlet-core@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-common@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-server@2.31" + } + ] + }, + { + "nodeId": "org.eclipse.jetty:jetty-servlets@9.4.40.v20210413", + "pkgId": "org.eclipse.jetty:jetty-servlets@9.4.40.v20210413", + "deps": [ + { + "nodeId": "org.eclipse.jetty:jetty-continuation@9.4.40.v20210413" + }, + { + "nodeId": "org.eclipse.jetty:jetty-http@9.4.40.v20210413" + }, + { + "nodeId": "org.eclipse.jetty:jetty-io@9.4.40.v20210413" + }, + { + "nodeId": "org.eclipse.jetty:jetty-util@9.4.40.v20210413" + } + ] + }, + { + "nodeId": "org.eclipse.jetty:jetty-continuation@9.4.40.v20210413", + "pkgId": "org.eclipse.jetty:jetty-continuation@9.4.40.v20210413", + "deps": [] + }, + { + "nodeId": "org.glassfish.jersey.containers:jersey-container-servlet@2.31", + "pkgId": "org.glassfish.jersey.containers:jersey-container-servlet@2.31", + "deps": [ + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.glassfish.jersey.containers:jersey-container-servlet-core@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-common@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-server@2.31" + } + ] + }, + { + "nodeId": "//integrations/outreach:main@bazel", + "pkgId": "//integrations/outreach:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//globals:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//integrations/isolated_endpoint_sync:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//secrets/integration:main@bazel" + }, + { + "nodeId": "//secrets/system:main@bazel" + }, + { + "nodeId": "//util:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "//webhook/client:main@bazel" + }, + { + "nodeId": "//webhook/utils:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-common@2.31" + } + ] + }, + { + "nodeId": "//integrations/pardot:main@bazel", + "pkgId": "//integrations/pardot:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//crypto:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//integrations/priority_sync:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//secrets/system:main@bazel" + }, + { + "nodeId": "//services/resync:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "@com_fasterxml_jackson_dataformat_jackson_dataformat_csv//:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-common@2.31" + } + ] + }, + { + "nodeId": "//integrations/paypal:main@bazel", + "pkgId": "//integrations/paypal:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//crypto:main@bazel" + }, + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//secrets/system:main@bazel" + }, + { + "nodeId": "//util:main@bazel" + }, + { + "nodeId": "//utils/exceptions:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.apache.commons:commons-collections4@4.1" + }, + { + "nodeId": "org.apache.httpcomponents:httpcore@4.4.13" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-common@2.31" + }, + { + "nodeId": "org.json:json@20171018" + }, + { + "nodeId": "org.slf4j:slf4j-api@1.7.13" + } + ] + }, + { + "nodeId": "//integrations/pendo:main@bazel", + "pkgId": "//integrations/pendo:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//core_utils:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//integrations/priority_sync:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//util:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "io.projectreactor:reactor-core@3.4.11" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-common@2.31" + }, + { + "nodeId": "org.slf4j:slf4j-api@1.7.13" + } + ] + }, + { + "nodeId": "//integrations/pinterest:main@bazel", + "pkgId": "//integrations/pinterest:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//core_utils:main@bazel" + }, + { + "nodeId": "//crypto:main@bazel" + }, + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//integrations/bidirectional_cube:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//markdown:main@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//secrets/system:main@bazel" + }, + { + "nodeId": "//util:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "commons-io:commons-io@2.4" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.apache.commons:commons-lang3@3.12.0" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + } + ] + }, + { + "nodeId": "//integrations/pipedrive:main@bazel", + "pkgId": "//integrations/pipedrive:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//crypto:main@bazel" + }, + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//ecomm:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//integrations/isolated_endpoint_sync:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//markdown:main@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//secrets/system:main@bazel" + }, + { + "nodeId": "//util:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "//webhook/client:main@bazel" + }, + { + "nodeId": "//webhook/utils:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.code.gson:gson@2.9.0" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-common@2.31" + } + ] + }, + { + "nodeId": "//integrations/postgres:main@bazel", + "pkgId": "//integrations/postgres:main@bazel", + "deps": [ + { + "nodeId": "//integrations/postgres:wal_java_proto@bazel" + }, + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//integrations/db:main@bazel" + }, + { + "nodeId": "//integrations/postgres2020:main@bazel" + }, + { + "nodeId": "//integrations/speed_test:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//logging:main@bazel" + }, + { + "nodeId": "//markdown:main@bazel" + }, + { + "nodeId": "//micrometer:main@bazel" + }, + { + "nodeId": "//port_forwarder:main@bazel" + }, + { + "nodeId": "//schema_migration:schema_migration_info@bazel" + }, + { + "nodeId": "//services/resync:main@bazel" + }, + { + "nodeId": "//ssh:main@bazel" + }, + { + "nodeId": "//utils/serializers:main@bazel" + }, + { + "nodeId": "//utils/sync_statistics:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "@com_fasterxml_jackson_dataformat_jackson_dataformat_csv//:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "com.walkmind.extensions:collections@1.20" + }, + { + "nodeId": "com.zaxxer:HikariCP@3.4.1" + }, + { + "nodeId": "commons-codec:commons-codec@1.10" + }, + { + "nodeId": "commons-lang:commons-lang@2.6" + }, + { + "nodeId": "io.micrometer:micrometer-core@1.5.3" + }, + { + "nodeId": "io.netty:netty-buffer@4.1.50.Final" + }, + { + "nodeId": "io.opentelemetry:opentelemetry-api@0.13.1" + }, + { + "nodeId": "io.opentelemetry:opentelemetry-api-trace@0.13.1" + }, + { + "nodeId": "io.opentelemetry:opentelemetry-extension-annotations@0.13.1" + }, + { + "nodeId": "org.apache.commons:commons-lang3@3.12.0" + }, + { + "nodeId": "org.postgresql:postgresql@42.3.3" + }, + { + "nodeId": "org.rocksdb:rocksdbjni@6.8.1" + } + ] + }, + { + "nodeId": "//integrations/postgres:wal_java_proto@bazel", + "pkgId": "//integrations/postgres:wal_java_proto@bazel", + "deps": [ + { + "nodeId": "//integrations/postgres:wal_proto@bazel" + } + ] + }, + { + "nodeId": "//integrations/postgres:wal_proto@bazel", + "pkgId": "//integrations/postgres:wal_proto@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/qualtrics:main@bazel", + "pkgId": "//integrations/qualtrics:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//core_utils:main@bazel" + }, + { + "nodeId": "//crypto:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//markdown:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "@com_fasterxml_jackson_dataformat_jackson_dataformat_csv//:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "com.opencsv:opencsv@4.1" + }, + { + "nodeId": "commons-io:commons-io@2.4" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.apache.httpcomponents:httpclient@4.5.13" + }, + { + "nodeId": "org.apache.httpcomponents:httpcore@4.4.13" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-common@2.31" + }, + { + "nodeId": "org.slf4j:slf4j-api@1.7.13" + } + ] + }, + { + "nodeId": "//integrations/quickbooks:main@bazel", + "pkgId": "//integrations/quickbooks:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//integrations/isolated_endpoint_sync:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//secrets/integration:main@bazel" + }, + { + "nodeId": "//secrets/system:main@bazel" + }, + { + "nodeId": "//util:main@bazel" + }, + { + "nodeId": "//utils/exceptions:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.apache.httpcomponents:httpclient@4.5.13" + }, + { + "nodeId": "org.apache.httpcomponents:httpcore@4.4.13" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-common@2.31" + }, + { + "nodeId": "org.glassfish.jersey.security:oauth1-client@2.31" + }, + { + "nodeId": "org.glassfish.jersey.security:oauth1-signature@2.31" + } + ] + }, + { + "nodeId": "//integrations/recharge:main@bazel", + "pkgId": "//integrations/recharge:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//core_utils:main@bazel" + }, + { + "nodeId": "//ecomm:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//integrations/isolated_endpoint_sync:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//logging:main@bazel" + }, + { + "nodeId": "//markdown:main@bazel" + }, + { + "nodeId": "//secrets/integration:main@bazel" + }, + { + "nodeId": "//util:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "//webhook/client:main@bazel" + }, + { + "nodeId": "//webhook/utils:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.apache.httpcomponents:httpcore@4.4.13" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + } + ] + }, + { + "nodeId": "//integrations/recurly:main@bazel", + "pkgId": "//integrations/recurly:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//core_utils:main@bazel" + }, + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//integrations/isolated_endpoint_sync:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//util:main@bazel" + }, + { + "nodeId": "//utils/exceptions:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.dataformat:jackson-dataformat-xml@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-xml-provider@2.9.8" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "javax.xml.bind:jaxb-api@2.2.2" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-common@2.31" + }, + { + "nodeId": "org.json:json@20171018" + } + ] + }, + { + "nodeId": "//integrations/reddit:main@bazel", + "pkgId": "//integrations/reddit:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//core_utils:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//integrations/bidirectional_cube:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//secrets/system:main@bazel" + }, + { + "nodeId": "//util:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "//utils/token_api:main@bazel" + }, + { + "nodeId": "//utils/validations:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "com.google.http-client:google-http-client@1.39.2" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.apache.commons:commons-lang3@3.12.0" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-common@2.31" + } + ] + }, + { + "nodeId": "//integrations/sage_intacct:main@bazel", + "pkgId": "//integrations/sage_intacct:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//core_utils:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//google_cloud:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//integrations/isolated_endpoint_sync:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//markdown:main@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//secrets/integration:main@bazel" + }, + { + "nodeId": "//secrets/system:main@bazel" + }, + { + "nodeId": "//util:main@bazel" + }, + { + "nodeId": "//utils/exceptions:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "com.alibaba:druid@1.1.16" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.dataformat:jackson-dataformat-xml@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-xml-provider@2.9.8" + }, + { + "nodeId": "com.fasterxml.woodstox:woodstox-core@5.0.3" + }, + { + "nodeId": "com.google.cloud:google-cloud-storage@1.108.0" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "javax.xml.stream:stax-api@1.0-2" + }, + { + "nodeId": "org.codehaus.woodstox:stax2-api@3.1.4" + }, + { + "nodeId": "org.eclipse.jetty:jetty-http@9.4.40.v20210413" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-common@2.31" + }, + { + "nodeId": "org.json:json@20171018" + }, + { + "nodeId": "stax:stax-api@1.0.1" + } + ] + }, + { + "nodeId": "com.alibaba:druid@1.1.16", + "pkgId": "com.alibaba:druid@1.1.16", + "deps": [] + }, + { + "nodeId": "//integrations/sailthru:main@bazel", + "pkgId": "//integrations/sailthru:main@bazel", + "deps": [ + { + "nodeId": "//aws:main@bazel" + }, + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//markdown:main@bazel" + }, + { + "nodeId": "//services/resync:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "@com_fasterxml_jackson_dataformat_jackson_dataformat_csv//:main@bazel" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-s3@1.12.84" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "commons-codec:commons-codec@1.10" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + } + ] + }, + { + "nodeId": "//integrations/salesforce:main@bazel", + "pkgId": "//integrations/salesforce:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//dblike:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//globals:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//markdown:main@bazel" + }, + { + "nodeId": "//micrometer:main@bazel" + }, + { + "nodeId": "//schema_migration:schema_migration_info@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//secrets/system:main@bazel" + }, + { + "nodeId": "//services/resync:main@bazel" + }, + { + "nodeId": "//slack:main@bazel" + }, + { + "nodeId": "//util:main@bazel" + }, + { + "nodeId": "//utils/hook:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "//warehouses/common:warehouse_type@bazel" + }, + { + "nodeId": "@com_fasterxml_jackson_dataformat_jackson_dataformat_csv//:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "com.google.http-client:google-http-client@1.39.2" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "javax.xml.bind:jaxb-api@2.2.2" + }, + { + "nodeId": "org.apache.commons:commons-lang3@3.12.0" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-common@2.31" + } + ] + }, + { + "nodeId": "//integrations/salesforce_commerce_cloud:main@bazel", + "pkgId": "//integrations/salesforce_commerce_cloud:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//integrations/isolated_endpoint_sync:main@bazel" + }, + { + "nodeId": "//integrations/priority_sync:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//secrets/integration:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "commons-codec:commons-codec@1.10" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.apache.httpcomponents:httpclient@4.5.13" + }, + { + "nodeId": "org.apache.httpcomponents:httpcore@4.4.13" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-common@2.31" + }, + { + "nodeId": "org.glassfish.jersey.security:oauth1-client@2.31" + }, + { + "nodeId": "org.glassfish.jersey.security:oauth1-signature@2.31" + } + ] + }, + { + "nodeId": "//integrations/salesforce_marketing_cloud:main@bazel", + "pkgId": "//integrations/salesforce_marketing_cloud:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//core_utils:main@bazel" + }, + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//integrations/priority_sync:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//markdown:main@bazel" + }, + { + "nodeId": "//services/resync:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-core@1.12.84" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.dataformat:jackson-dataformat-smile@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.dataformat:jackson-dataformat-xml@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "com.sun.xml.bind:jaxb-impl@2.2.11" + }, + { + "nodeId": "com.sun.xml.messaging.saaj:saaj-impl@1.3.25" + }, + { + "nodeId": "io.projectreactor:reactor-core@3.4.11" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "javax.xml.bind:jaxb-api@2.2.2" + }, + { + "nodeId": "javax.xml.soap:javax.xml.soap-api@1.4.0" + }, + { + "nodeId": "org.apache.commons:commons-lang3@3.12.0" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-common@2.31" + } + ] + }, + { + "nodeId": "//integrations/sap_business_bydesign:main@bazel", + "pkgId": "//integrations/sap_business_bydesign:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//markdown:main@bazel" + }, + { + "nodeId": "//util:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.dataformat:jackson-dataformat-smile@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.dataformat:jackson-dataformat-xml@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "com.sun.xml.bind:jaxb-impl@2.2.11" + }, + { + "nodeId": "com.sun.xml.messaging.saaj:saaj-impl@1.3.25" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "javax.xml.bind:jaxb-api@2.2.2" + }, + { + "nodeId": "javax.xml.soap:javax.xml.soap-api@1.4.0" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-common@2.31" + } + ] + }, + { + "nodeId": "//integrations/sap_concur:main@bazel", + "pkgId": "//integrations/sap_concur:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//ecomm:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//integrations/isolated_endpoint_sync:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//secrets/integration:main@bazel" + }, + { + "nodeId": "//secrets/system:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.dataformat:jackson-dataformat-xml@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-xml-provider@2.9.8" + }, + { + "nodeId": "com.fasterxml.woodstox:woodstox-core@5.0.3" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "com.intellij:annotations@12.0" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "javax.xml.stream:stax-api@1.0-2" + }, + { + "nodeId": "org.codehaus.woodstox:stax2-api@3.1.4" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-common@2.31" + }, + { + "nodeId": "stax:stax-api@1.0.1" + } + ] + }, + { + "nodeId": "//integrations/sap_s4hana:main@bazel", + "pkgId": "//integrations/sap_s4hana:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//dblike:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//integrations/db:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//markdown:main@bazel" + }, + { + "nodeId": "//port_forwarder:main@bazel" + }, + { + "nodeId": "//services/resync:main@bazel" + }, + { + "nodeId": "//ssh:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + } + ] + }, + { + "nodeId": "//integrations/segment:main@bazel", + "pkgId": "//integrations/segment:main@bazel", + "deps": [ + { + "nodeId": "//aws:main@bazel" + }, + { + "nodeId": "//common:main@bazel" + }, + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//integrations/s3:main@bazel" + }, + { + "nodeId": "//jackson_module_json_schema:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//markdown:main@bazel" + }, + { + "nodeId": "//maxmind:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "//webhook/client:main@bazel" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-core@1.12.84" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-s3@1.12.84" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.dataformat:jackson-dataformat-smile@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-joda@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "com.maxmind.geoip2:geoip2@2.9.0" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.apache.commons:commons-lang3@3.12.0" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-common@2.31" + } + ] + }, + { + "nodeId": "//maxmind:main@bazel", + "pkgId": "//maxmind:main@bazel", + "deps": [ + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//google_cloud:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//secrets/system:main@bazel" + }, + { + "nodeId": "//util:main@bazel" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-s3@1.12.84" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.google.cloud:google-cloud-storage@1.108.0" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "com.maxmind.db:maxmind-db@1.2.2" + }, + { + "nodeId": "com.maxmind.geoip2:geoip2@2.9.0" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.apache.commons:commons-compress@1.16" + } + ] + }, + { + "nodeId": "com.maxmind.db:maxmind-db@1.2.2", + "pkgId": "com.maxmind.db:maxmind-db@1.2.2", + "deps": [ + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + } + ] + }, + { + "nodeId": "com.maxmind.geoip2:geoip2@2.9.0", + "pkgId": "com.maxmind.geoip2:geoip2@2.9.0", + "deps": [ + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.maxmind.db:maxmind-db@1.2.2" + }, + { + "nodeId": "org.apache.httpcomponents:httpclient@4.5.13" + } + ] + }, + { + "nodeId": "//integrations/sendgrid:main@bazel", + "pkgId": "//integrations/sendgrid:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//core_utils:main@bazel" + }, + { + "nodeId": "//crypto:main@bazel" + }, + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//markdown:main@bazel" + }, + { + "nodeId": "//util:main@bazel" + }, + { + "nodeId": "//utils/exceptions:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "//webhook/client:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.dataformat:jackson-dataformat-smile@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.apis:google-api-services-bigquery@v2-rev459-1.25.0" + }, + { + "nodeId": "com.google.cloud:google-cloud-storage@1.108.0" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-common@2.31" + } + ] + }, + { + "nodeId": "//integrations/service_now:main@bazel", + "pkgId": "//integrations/service_now:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//integrations/db_like_standardization:main@bazel" + }, + { + "nodeId": "//integrations/isolated_endpoint_sync:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//markdown:main@bazel" + }, + { + "nodeId": "//secrets/integration:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.dataformat:jackson-dataformat-smile@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.apis:google-api-services-bigquery@v2-rev459-1.25.0" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-common@2.31" + } + ] + }, + { + "nodeId": "//integrations/shopify:main@bazel", + "pkgId": "//integrations/shopify:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//core_utils:main@bazel" + }, + { + "nodeId": "//crypto:main@bazel" + }, + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//ecomm:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//integrations/isolated_endpoint_sync:main@bazel" + }, + { + "nodeId": "//integrations/priority_sync:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//logging:main@bazel" + }, + { + "nodeId": "//markdown:main@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//secrets/integration:main@bazel" + }, + { + "nodeId": "//secrets/system:main@bazel" + }, + { + "nodeId": "//util:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "//webhook/client:main@bazel" + }, + { + "nodeId": "//webhook/utils:main@bazel" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-core@1.12.84" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-s3@1.12.84" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.dataformat:jackson-dataformat-smile@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.apis:google-api-services-bigquery@v2-rev459-1.25.0" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "com.intellij:annotations@12.0" + }, + { + "nodeId": "commons-io:commons-io@2.4" + }, + { + "nodeId": "io.projectreactor:reactor-core@3.4.11" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "joda-time:joda-time@2.9.2" + }, + { + "nodeId": "org.apache.httpcomponents:httpclient@4.5.13" + }, + { + "nodeId": "org.apache.httpcomponents:httpcore@4.4.13" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-common@2.31" + } + ] + }, + { + "nodeId": "//integrations/snapchat_ads:main@bazel", + "pkgId": "//integrations/snapchat_ads:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//integrations/bidirectional_cube:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//markdown:main@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//secrets/system:main@bazel" + }, + { + "nodeId": "//util:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "com.google.http-client:google-http-client@1.39.2" + }, + { + "nodeId": "commons-io:commons-io@2.4" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "joda-time:joda-time@2.9.2" + }, + { + "nodeId": "org.apache.commons:commons-lang3@3.12.0" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-common@2.31" + } + ] + }, + { + "nodeId": "//integrations/snowplow:main@bazel", + "pkgId": "//integrations/snowplow:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//core_utils:main@bazel" + }, + { + "nodeId": "//crypto:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//jackson_module_json_schema:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//markdown:main@bazel" + }, + { + "nodeId": "//maxmind:main@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//secrets/system:main@bazel" + }, + { + "nodeId": "//webhook/client:main@bazel" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-core@1.12.84" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-s3@1.12.84" + }, + { + "nodeId": "com.blueconic:browscap-java@1.2.13" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.dataformat:jackson-dataformat-smile@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.github.java-json-tools:json-schema-core@1.2.14" + }, + { + "nodeId": "com.github.java-json-tools:json-schema-validator@2.2.14" + }, + { + "nodeId": "com.github.ua-parser:uap-java@1.4.0" + }, + { + "nodeId": "com.google.cloud:google-cloud-storage@1.108.0" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "com.maxmind.db:maxmind-db@1.2.2" + }, + { + "nodeId": "com.maxmind.geoip2:geoip2@2.9.0" + }, + { + "nodeId": "com.snowplowanalytics:referer-parser_2.11@0.3.0" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "javax.validation:validation-api@1.1.0.Final" + }, + { + "nodeId": "org.apache.commons:commons-compress@1.16" + }, + { + "nodeId": "org.apache.httpcomponents:httpclient@4.5.13" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-common@2.31" + } + ] + }, + { + "nodeId": "com.blueconic:browscap-java@1.2.13", + "pkgId": "com.blueconic:browscap-java@1.2.13", + "deps": [ + { + "nodeId": "org.apache.commons:commons-csv@1.8" + } + ] + }, + { + "nodeId": "com.github.java-json-tools:json-schema-core@1.2.14", + "pkgId": "com.github.java-json-tools:json-schema-core@1.2.14", + "deps": [ + { + "nodeId": "com.github.java-json-tools:jackson-coreutils@2.0" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "com.github.java-json-tools:jackson-coreutils-equivalence@1.0" + }, + { + "nodeId": "com.github.java-json-tools:uri-template@0.10" + }, + { + "nodeId": "org.mozilla:rhino@1.7.7.2" + } + ] + }, + { + "nodeId": "com.github.java-json-tools:jackson-coreutils@2.0", + "pkgId": "com.github.java-json-tools:jackson-coreutils@2.0", + "deps": [ + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.github.java-json-tools:msg-simple@1.2" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + } + ] + }, + { + "nodeId": "com.github.java-json-tools:msg-simple@1.2", + "pkgId": "com.github.java-json-tools:msg-simple@1.2", + "deps": [ + { + "nodeId": "com.github.java-json-tools:btf@1.3" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + } + ] + }, + { + "nodeId": "com.github.java-json-tools:btf@1.3", + "pkgId": "com.github.java-json-tools:btf@1.3", + "deps": [ + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + } + ] + }, + { + "nodeId": "com.github.java-json-tools:jackson-coreutils-equivalence@1.0", + "pkgId": "com.github.java-json-tools:jackson-coreutils-equivalence@1.0", + "deps": [ + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.github.java-json-tools:jackson-coreutils@2.0" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + } + ] + }, + { + "nodeId": "com.github.java-json-tools:uri-template@0.10", + "pkgId": "com.github.java-json-tools:uri-template@0.10", + "deps": [ + { + "nodeId": "com.github.java-json-tools:msg-simple@1.2" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + } + ] + }, + { + "nodeId": "org.mozilla:rhino@1.7.7.2", + "pkgId": "org.mozilla:rhino@1.7.7.2", + "deps": [] + }, + { + "nodeId": "com.github.java-json-tools:json-schema-validator@2.2.14", + "pkgId": "com.github.java-json-tools:json-schema-validator@2.2.14", + "deps": [ + { + "nodeId": "com.sun.mail:mailapi@1.6.2" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "com.github.java-json-tools:jackson-coreutils-equivalence@1.0" + }, + { + "nodeId": "com.googlecode.libphonenumber:libphonenumber@8.11.1" + }, + { + "nodeId": "com.github.java-json-tools:json-schema-core@1.2.14" + }, + { + "nodeId": "joda-time:joda-time@2.9.2" + }, + { + "nodeId": "net.sf.jopt-simple:jopt-simple@5.0.4" + } + ] + }, + { + "nodeId": "com.sun.mail:mailapi@1.6.2", + "pkgId": "com.sun.mail:mailapi@1.6.2", + "deps": [] + }, + { + "nodeId": "com.googlecode.libphonenumber:libphonenumber@8.11.1", + "pkgId": "com.googlecode.libphonenumber:libphonenumber@8.11.1", + "deps": [] + }, + { + "nodeId": "com.github.ua-parser:uap-java@1.4.0", + "pkgId": "com.github.ua-parser:uap-java@1.4.0", + "deps": [ + { + "nodeId": "org.apache.commons:commons-collections4@4.1" + }, + { + "nodeId": "org.yaml:snakeyaml@1.23" + } + ] + }, + { + "nodeId": "com.snowplowanalytics:referer-parser_2.11@0.3.0", + "pkgId": "com.snowplowanalytics:referer-parser_2.11@0.3.0", + "deps": [ + { + "nodeId": "org.apache.httpcomponents:httpclient@4.5.13" + }, + { + "nodeId": "org.scala-lang:scala-library@2.11.1" + }, + { + "nodeId": "org.yaml:snakeyaml@1.23" + } + ] + }, + { + "nodeId": "//integrations/snowflake:main@bazel", + "pkgId": "//integrations/snowflake:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//integrations/db:main@bazel" + }, + { + "nodeId": "//port_forwarder:main@bazel" + }, + { + "nodeId": "//teleport:main@bazel" + }, + { + "nodeId": "//utils/beans:main@bazel" + }, + { + "nodeId": "net.snowflake:snowflake-jdbc@3.13.18" + }, + { + "nodeId": "//core_implementation:main@bazel" + }, + { + "nodeId": "//crypto:main@bazel" + }, + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//database:tls_verify@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//geo:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//integrations/configuration_tracker:main@bazel" + }, + { + "nodeId": "//integrations/speed_test:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//logging:main@bazel" + }, + { + "nodeId": "//markdown:main@bazel" + }, + { + "nodeId": "//micrometer:main@bazel" + }, + { + "nodeId": "//secred/common:main@bazel" + }, + { + "nodeId": "//secred/util:main@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//secrets/services:main@bazel" + }, + { + "nodeId": "//services/resync:main@bazel" + }, + { + "nodeId": "//slack:main@bazel" + }, + { + "nodeId": "//ssh:main@bazel" + }, + { + "nodeId": "//utils/serializers:main@bazel" + }, + { + "nodeId": "//utils/sync_statistics:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "//verification:main@bazel" + }, + { + "nodeId": "//warehouses/snowflake:main@bazel" + }, + { + "nodeId": "@com_fasterxml_jackson_dataformat_jackson_dataformat_csv//:main@bazel" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.http-client:google-http-client@1.39.2" + }, + { + "nodeId": "commons-io:commons-io@2.4" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "joda-time:joda-time@2.9.2" + }, + { + "nodeId": "org.apache.commons:commons-lang3@3.12.0" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-common@2.31" + }, + { + "nodeId": "org.bouncycastle:bcpkix-jdk15on@1.70" + }, + { + "nodeId": "org.bouncycastle:bcprov-jdk15to18@1.70" + } + ] + }, + { + "nodeId": "//integrations/splunk:main@bazel", + "pkgId": "//integrations/splunk:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//core_utils:main@bazel" + }, + { + "nodeId": "//crypto:main@bazel" + }, + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-common@2.31" + } + ] + }, + { + "nodeId": "//integrations/sql_server:main@bazel", + "pkgId": "//integrations/sql_server:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//crypto:main@bazel" + }, + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//geo:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//integrations/azure/utils:main@bazel" + }, + { + "nodeId": "//integrations/configuration_tracker:main@bazel" + }, + { + "nodeId": "//integrations/db:main@bazel" + }, + { + "nodeId": "//integrations/hvr/hvr_tool:main@bazel" + }, + { + "nodeId": "//integrations/hvr/unserializer:main@bazel" + }, + { + "nodeId": "//integrations/speed_test:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//logging:main@bazel" + }, + { + "nodeId": "//markdown:main@bazel" + }, + { + "nodeId": "//micrometer:main@bazel" + }, + { + "nodeId": "//port_forwarder:sqlserver@bazel" + }, + { + "nodeId": "//schema_migration:main@bazel" + }, + { + "nodeId": "//secred/util:main@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//secrets/services:main@bazel" + }, + { + "nodeId": "//secrets/system:main@bazel" + }, + { + "nodeId": "//services:ab_tests@bazel" + }, + { + "nodeId": "//services/resync:main@bazel" + }, + { + "nodeId": "//ssh:main@bazel" + }, + { + "nodeId": "//teleport:main@bazel" + }, + { + "nodeId": "//utils/cipher_adapter:main@bazel" + }, + { + "nodeId": "//utils/run_shell:main@bazel" + }, + { + "nodeId": "//utils/segmented_input_stream:main@bazel" + }, + { + "nodeId": "//utils/serializers:main@bazel" + }, + { + "nodeId": "//utils/sleep_control:main@bazel" + }, + { + "nodeId": "//utils/socket_receiver:main@bazel" + }, + { + "nodeId": "//utils/sync_statistics:main@bazel" + }, + { + "nodeId": "//utils/threading:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "//verification:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "com.intellij:annotations@12.0" + }, + { + "nodeId": "com.microsoft.sqlserver:mssql-jdbc@9.4.0.jre11" + }, + { + "nodeId": "com.walkmind.extensions:collections@1.20" + }, + { + "nodeId": "com.zaxxer:HikariCP@3.4.1" + }, + { + "nodeId": "commons-codec:commons-codec@1.10" + }, + { + "nodeId": "io.micrometer:micrometer-core@1.5.3" + }, + { + "nodeId": "io.netty:netty-buffer@4.1.50.Final" + }, + { + "nodeId": "io.opentelemetry:opentelemetry-api@0.13.1" + }, + { + "nodeId": "io.opentelemetry:opentelemetry-api-trace@0.13.1" + }, + { + "nodeId": "io.opentelemetry:opentelemetry-extension-annotations@0.13.1" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + } + ] + }, + { + "nodeId": "//integrations/azure/utils:main@bazel", + "pkgId": "//integrations/azure/utils:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + } + ] + }, + { + "nodeId": "//integrations/square:main@bazel", + "pkgId": "//integrations/square:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//core_utils:main@bazel" + }, + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//integrations/isolated_endpoint_sync:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//services/resync:main@bazel" + }, + { + "nodeId": "//util:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + } + ] + }, + { + "nodeId": "//integrations/stripe:main@bazel", + "pkgId": "//integrations/stripe:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//core_utils:main@bazel" + }, + { + "nodeId": "//crypto:main@bazel" + }, + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//dynamo:main@bazel" + }, + { + "nodeId": "//ecomm:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//globals:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//integrations/isolated_endpoint_sync:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//logging:main@bazel" + }, + { + "nodeId": "//markdown:main@bazel" + }, + { + "nodeId": "//micrometer:main@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//secrets/integration:main@bazel" + }, + { + "nodeId": "//secrets/system:main@bazel" + }, + { + "nodeId": "//util:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "@com_fasterxml_jackson_dataformat_jackson_dataformat_csv//:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "io.projectreactor:reactor-core@3.4.11" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-common@2.31" + } + ] + }, + { + "nodeId": "//integrations/survey_monkey:main@bazel", + "pkgId": "//integrations/survey_monkey:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//core_utils:main@bazel" + }, + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//markdown:main@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//secrets/integration:main@bazel" + }, + { + "nodeId": "//secrets/system:main@bazel" + }, + { + "nodeId": "//services/resync:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "//webhook/client:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.apache.commons:commons-lang3@3.12.0" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-common@2.31" + }, + { + "nodeId": "org.slf4j:slf4j-api@1.7.13" + } + ] + }, + { + "nodeId": "//integrations/spotify_ads:main@bazel", + "pkgId": "//integrations/spotify_ads:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//core_utils:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//http:curl_request@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//secrets/system:main@bazel" + }, + { + "nodeId": "//util:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "//utils/token_api:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + } + ] + }, + { + "nodeId": "//integrations/taboola:main@bazel", + "pkgId": "//integrations/taboola:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//core_utils:main@bazel" + }, + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//integrations/bidirectional_cube:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "io.projectreactor:reactor-core@3.4.11" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.apache.commons:commons-lang3@3.12.0" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-common@2.31" + } + ] + }, + { + "nodeId": "//integrations/the_trade_desk:main@bazel", + "pkgId": "//integrations/the_trade_desk:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//core_utils:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//integrations/bidirectional_cube:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//util:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "@com_fasterxml_jackson_dataformat_jackson_dataformat_csv//:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "com.google.http-client:google-http-client@1.39.2" + }, + { + "nodeId": "com.intellij:annotations@12.0" + }, + { + "nodeId": "commons-io:commons-io@2.4" + }, + { + "nodeId": "commons-lang:commons-lang@2.6" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.apache.commons:commons-lang3@3.12.0" + }, + { + "nodeId": "org.apache.poi:poi@3.17" + }, + { + "nodeId": "org.apache.poi:poi-ooxml@3.17" + }, + { + "nodeId": "org.eclipse.jetty:jetty-util@9.4.40.v20210413" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-common@2.31" + } + ] + }, + { + "nodeId": "//integrations/tiktok_ads:main@bazel", + "pkgId": "//integrations/tiktok_ads:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//integrations/bidirectional_cube:main@bazel" + }, + { + "nodeId": "//integrations/cube:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//secrets/system:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.apache.commons:commons-lang3@3.12.0" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-common@2.31" + } + ] + }, + { + "nodeId": "//integrations/twilio:main@bazel", + "pkgId": "//integrations/twilio:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//markdown:main@bazel" + }, + { + "nodeId": "//util:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-common@2.31" + } + ] + }, + { + "nodeId": "//integrations/twitter:main@bazel", + "pkgId": "//integrations/twitter:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//integrations/bidirectional_cube:main@bazel" + }, + { + "nodeId": "//integrations/cube:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//markdown:main@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//secrets/system:main@bazel" + }, + { + "nodeId": "//util:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.apache.commons:commons-lang3@3.12.0" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + }, + { + "nodeId": "org.glassfish.jersey.security:oauth1-client@2.31" + }, + { + "nodeId": "org.glassfish.jersey.security:oauth1-signature@2.31" + }, + { + "nodeId": "org.json:json@20171018" + } + ] + }, + { + "nodeId": "//integrations/typeform:main@bazel", + "pkgId": "//integrations/typeform:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//core_utils:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//secrets/integration:main@bazel" + }, + { + "nodeId": "//secrets/system:main@bazel" + }, + { + "nodeId": "//utils/exceptions:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.apache.commons:commons-lang3@3.12.0" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + }, + { + "nodeId": "org.glassfish.jersey.security:oauth1-client@2.31" + }, + { + "nodeId": "org.glassfish.jersey.security:oauth1-signature@2.31" + }, + { + "nodeId": "org.json:json@20171018" + } + ] + }, + { + "nodeId": "//integrations/uservoice:main@bazel", + "pkgId": "//integrations/uservoice:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//services/resync:main@bazel" + }, + { + "nodeId": "//util:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + } + ] + }, + { + "nodeId": "//integrations/webhooks:main@bazel", + "pkgId": "//integrations/webhooks:main@bazel", + "deps": [ + { + "nodeId": "//aws:main@bazel" + }, + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//database:enums@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//globals:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//markdown:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "//webhook/client:main@bazel" + }, + { + "nodeId": "//webhook/storage:main@bazel" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-s3@1.12.84" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.dataformat:jackson-dataformat-smile@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.cloud:google-cloud-storage@1.108.0" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-common@2.31" + } + ] + }, + { + "nodeId": "//integrations/wordpress:main@bazel", + "pkgId": "//integrations/wordpress:main@bazel", + "deps": [ + { + "nodeId": "//aws:main@bazel" + }, + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//markdown:main@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//secrets/system:main@bazel" + }, + { + "nodeId": "//util:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.bouncycastle:bcpkix-jdk15on@1.70" + }, + { + "nodeId": "org.bouncycastle:bcprov-jdk15to18@1.70" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-common@2.31" + } + ] + }, + { + "nodeId": "//integrations/workday:main@bazel", + "pkgId": "//integrations/workday:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//crypto:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//integrations/db:main@bazel" + }, + { + "nodeId": "//integrations/db_like_standardization:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//markdown:main@bazel" + }, + { + "nodeId": "//utils/exceptions:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "@com_fasterxml_jackson_dataformat_jackson_dataformat_csv//:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.dataformat:jackson-dataformat-xml@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.module:jackson-module-jaxb-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.woodstox:woodstox-core@5.0.3" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "commons-io:commons-io@2.4" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.apache.httpcomponents:httpclient@4.5.13" + }, + { + "nodeId": "org.apache.httpcomponents:httpcore@4.4.13" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + } + ] + }, + { + "nodeId": "//integrations/workday_hcm:main@bazel", + "pkgId": "//integrations/workday_hcm:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//ecomm:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//util:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.dataformat:jackson-dataformat-smile@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.dataformat:jackson-dataformat-xml@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "com.sun.xml.bind:jaxb-impl@2.2.11" + }, + { + "nodeId": "com.sun.xml.messaging.saaj:saaj-impl@1.3.25" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "javax.xml.bind:jaxb-api@2.2.2" + }, + { + "nodeId": "javax.xml.soap:javax.xml.soap-api@1.4.0" + }, + { + "nodeId": "org.apache.httpcomponents:httpcore@4.4.13" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-common@2.31" + }, + { + "nodeId": "org.json:json@20171018" + }, + { + "nodeId": "org.projectlombok:lombok@1.18.12" + }, + { + "nodeId": "org.slf4j:slf4j-api@1.7.13" + } + ] + }, + { + "nodeId": "org.projectlombok:lombok@1.18.12", + "pkgId": "org.projectlombok:lombok@1.18.12", + "deps": [] + }, + { + "nodeId": "//integrations/xero:main@bazel", + "pkgId": "//integrations/xero:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//core_utils:main@bazel" + }, + { + "nodeId": "//crypto:main@bazel" + }, + { + "nodeId": "//ecomm:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//integrations/isolated_endpoint_sync:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//secrets/integration:main@bazel" + }, + { + "nodeId": "//secrets/system:main@bazel" + }, + { + "nodeId": "//util:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-common@2.31" + }, + { + "nodeId": "org.glassfish.jersey.security:oauth1-signature@2.31" + } + ] + }, + { + "nodeId": "//integrations/yahoo_gemini:main@bazel", + "pkgId": "//integrations/yahoo_gemini:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//core_utils:main@bazel" + }, + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//integrations/cube:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//markdown:main@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//secrets/system:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "@com_fasterxml_jackson_dataformat_jackson_dataformat_csv//:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "com.google.http-client:google-http-client@1.39.2" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-common@2.31" + }, + { + "nodeId": "org.slf4j:slf4j-api@1.7.13" + } + ] + }, + { + "nodeId": "//integrations/youtube_analytics:main@bazel", + "pkgId": "//integrations/youtube_analytics:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//core_utils:main@bazel" + }, + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//http:curl_request@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:acmecorp_logger@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//secrets/system:main@bazel" + }, + { + "nodeId": "//util:rest_api@bazel" + }, + { + "nodeId": "//utils/exceptions:main@bazel" + }, + { + "nodeId": "//utils/time:acmecorp_clock@bazel" + }, + { + "nodeId": "//utils/token_api:main@bazel" + }, + { + "nodeId": "@com_fasterxml_jackson_dataformat_jackson_dataformat_csv//:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-common@2.31" + } + ] + }, + { + "nodeId": "//integrations/zendesk:main@bazel", + "pkgId": "//integrations/zendesk:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//integrations/priority_sync:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//markdown:main@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//secrets/system:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "io.projectreactor:reactor-core@3.4.11" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.apache.commons:commons-lang3@3.12.0" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-common@2.31" + } + ] + }, + { + "nodeId": "//integrations/zendesk_chat:main@bazel", + "pkgId": "//integrations/zendesk_chat:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//markdown:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "junit:junit@4.13" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-common@2.31" + } + ] + }, + { + "nodeId": "//integrations/zendesk_sell:main@bazel", + "pkgId": "//integrations/zendesk_sell:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//http_client:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//secrets/integration:main@bazel" + }, + { + "nodeId": "//secrets/system:main@bazel" + }, + { + "nodeId": "//services/resync:main@bazel" + }, + { + "nodeId": "//util:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.apache.commons:commons-lang3@3.12.0" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-common@2.31" + } + ] + }, + { + "nodeId": "//integrations/zendesk_sunshine:main@bazel", + "pkgId": "//integrations/zendesk_sunshine:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "commons-lang:commons-lang@2.6" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-common@2.31" + } + ] + }, + { + "nodeId": "//integrations/zoho_crm:main@bazel", + "pkgId": "//integrations/zoho_crm:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//integrations/isolated_endpoint_sync:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//secrets/integration:main@bazel" + }, + { + "nodeId": "//secrets/system:main@bazel" + }, + { + "nodeId": "//util:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "commons-io:commons-io@2.4" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.apache.commons:commons-lang3@3.12.0" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + } + ] + }, + { + "nodeId": "//integrations/delighted:main@bazel", + "pkgId": "//integrations/delighted:main@bazel", + "deps": [] + }, + { + "nodeId": "//sources/delighted:main@bazel", + "pkgId": "//sources/delighted:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//sources/form:main@bazel" + }, + { + "nodeId": "//sources/mapper:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//sources/types:main@bazel" + }, + { + "nodeId": "//sources/bridge:main@bazel" + }, + { + "nodeId": "//services/resync:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.apache.commons:commons-lang3@3.12.0" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-common@2.31" + }, + { + "nodeId": "org.glassfish.jersey.inject:jersey-hk2@2.31" + } + ] + }, + { + "nodeId": "//sources/mapper:main@bazel", + "pkgId": "//sources/mapper:main@bazel", + "deps": [ + { + "nodeId": "//sources/types:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "org.apache.commons:commons-lang3@3.12.0" + } + ] + }, + { + "nodeId": "//saml:main@bazel", + "pkgId": "//saml:main@bazel", + "deps": [ + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "com.fasterxml.woodstox:woodstox-core@5.0.3" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "commons-codec:commons-codec@1.10" + }, + { + "nodeId": "commons-logging:commons-logging@1.2" + }, + { + "nodeId": "io.dropwizard.metrics:metrics-core@3.1.2" + }, + { + "nodeId": "joda-time:joda-time@2.9.2" + }, + { + "nodeId": "net.shibboleth.utilities:java-support@7.3.0" + }, + { + "nodeId": "org.apache.httpcomponents:httpclient@4.5.13" + }, + { + "nodeId": "org.apache.httpcomponents:httpcore@4.4.13" + }, + { + "nodeId": "org.bouncycastle:bcprov-jdk15to18@1.70" + }, + { + "nodeId": "org.cryptacular:cryptacular@1.1.1" + }, + { + "nodeId": "org.opensaml:opensaml-core@3.3.0" + }, + { + "nodeId": "org.opensaml:opensaml-messaging-api@3.3.0" + }, + { + "nodeId": "org.opensaml:opensaml-messaging-impl@3.3.0" + }, + { + "nodeId": "org.opensaml:opensaml-profile-api@3.3.0" + }, + { + "nodeId": "org.opensaml:opensaml-saml-api@3.3.0" + }, + { + "nodeId": "org.opensaml:opensaml-saml-impl@3.3.0" + }, + { + "nodeId": "org.opensaml:opensaml-security-api@3.3.0" + }, + { + "nodeId": "org.opensaml:opensaml-security-impl@3.3.0" + }, + { + "nodeId": "org.opensaml:opensaml-soap-api@3.3.0" + }, + { + "nodeId": "org.opensaml:opensaml-soap-impl@3.3.0" + }, + { + "nodeId": "org.opensaml:opensaml-storage-api@3.3.0" + }, + { + "nodeId": "org.opensaml:opensaml-xmlsec-api@3.3.0" + }, + { + "nodeId": "org.opensaml:opensaml-xmlsec-impl@3.3.0" + }, + { + "nodeId": "org.slf4j:slf4j-api@1.7.13" + } + ] + }, + { + "nodeId": "io.dropwizard.metrics:metrics-core@3.1.2", + "pkgId": "io.dropwizard.metrics:metrics-core@3.1.2", + "deps": [ + { + "nodeId": "org.slf4j:slf4j-api@1.7.13" + } + ] + }, + { + "nodeId": "net.shibboleth.utilities:java-support@7.3.0", + "pkgId": "net.shibboleth.utilities:java-support@7.3.0", + "deps": [ + { + "nodeId": "org.slf4j:slf4j-api@1.7.13" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "commons-codec:commons-codec@1.10" + }, + { + "nodeId": "joda-time:joda-time@2.9.2" + } + ] + }, + { + "nodeId": "org.cryptacular:cryptacular@1.1.1", + "pkgId": "org.cryptacular:cryptacular@1.1.1", + "deps": [ + { + "nodeId": "org.bouncycastle:bcprov-jdk15on@1.70" + } + ] + }, + { + "nodeId": "org.opensaml:opensaml-core@3.3.0", + "pkgId": "org.opensaml:opensaml-core@3.3.0", + "deps": [ + { + "nodeId": "org.slf4j:slf4j-api@1.7.13" + }, + { + "nodeId": "net.shibboleth.utilities:java-support@7.3.0" + }, + { + "nodeId": "commons-codec:commons-codec@1.10" + }, + { + "nodeId": "joda-time:joda-time@2.9.2" + }, + { + "nodeId": "io.dropwizard.metrics:metrics-core@3.1.2" + } + ] + }, + { + "nodeId": "org.opensaml:opensaml-messaging-api@3.3.0", + "pkgId": "org.opensaml:opensaml-messaging-api@3.3.0", + "deps": [ + { + "nodeId": "org.slf4j:slf4j-api@1.7.13" + }, + { + "nodeId": "net.shibboleth.utilities:java-support@7.3.0" + }, + { + "nodeId": "org.opensaml:opensaml-core@3.3.0" + }, + { + "nodeId": "commons-codec:commons-codec@1.10" + }, + { + "nodeId": "org.apache.httpcomponents:httpclient@4.5.13" + }, + { + "nodeId": "joda-time:joda-time@2.9.2" + } + ] + }, + { + "nodeId": "org.opensaml:opensaml-messaging-impl@3.3.0", + "pkgId": "org.opensaml:opensaml-messaging-impl@3.3.0", + "deps": [ + { + "nodeId": "commons-codec:commons-codec@1.10" + }, + { + "nodeId": "net.shibboleth.utilities:java-support@7.3.0" + }, + { + "nodeId": "org.opensaml:opensaml-messaging-api@3.3.0" + }, + { + "nodeId": "org.slf4j:slf4j-api@1.7.13" + } + ] + }, + { + "nodeId": "org.opensaml:opensaml-profile-api@3.3.0", + "pkgId": "org.opensaml:opensaml-profile-api@3.3.0", + "deps": [ + { + "nodeId": "org.slf4j:slf4j-api@1.7.13" + }, + { + "nodeId": "net.shibboleth.utilities:java-support@7.3.0" + }, + { + "nodeId": "org.opensaml:opensaml-messaging-api@3.3.0" + }, + { + "nodeId": "org.opensaml:opensaml-core@3.3.0" + }, + { + "nodeId": "commons-codec:commons-codec@1.10" + } + ] + }, + { + "nodeId": "org.opensaml:opensaml-saml-api@3.3.0", + "pkgId": "org.opensaml:opensaml-saml-api@3.3.0", + "deps": [ + { + "nodeId": "org.slf4j:slf4j-api@1.7.13" + }, + { + "nodeId": "net.shibboleth.utilities:java-support@7.3.0" + }, + { + "nodeId": "org.opensaml:opensaml-profile-api@3.3.0" + }, + { + "nodeId": "org.opensaml:opensaml-messaging-api@3.3.0" + }, + { + "nodeId": "org.opensaml:opensaml-xmlsec-api@3.3.0" + }, + { + "nodeId": "commons-codec:commons-codec@1.10" + }, + { + "nodeId": "org.opensaml:opensaml-storage-api@3.3.0" + }, + { + "nodeId": "org.opensaml:opensaml-soap-api@3.3.0" + } + ] + }, + { + "nodeId": "org.opensaml:opensaml-xmlsec-api@3.3.0", + "pkgId": "org.opensaml:opensaml-xmlsec-api@3.3.0", + "deps": [ + { + "nodeId": "org.slf4j:slf4j-api@1.7.13" + }, + { + "nodeId": "net.shibboleth.utilities:java-support@7.3.0" + }, + { + "nodeId": "org.opensaml:opensaml-messaging-api@3.3.0" + }, + { + "nodeId": "org.opensaml:opensaml-security-api@3.3.0" + }, + { + "nodeId": "commons-codec:commons-codec@1.10" + } + ] + }, + { + "nodeId": "org.opensaml:opensaml-security-api@3.3.0", + "pkgId": "org.opensaml:opensaml-security-api@3.3.0", + "deps": [ + { + "nodeId": "org.apache.santuario:xmlsec@2.1.1" + }, + { + "nodeId": "org.slf4j:slf4j-api@1.7.13" + }, + { + "nodeId": "net.shibboleth.utilities:java-support@7.3.0" + }, + { + "nodeId": "org.opensaml:opensaml-messaging-api@3.3.0" + }, + { + "nodeId": "org.opensaml:opensaml-core@3.3.0" + }, + { + "nodeId": "commons-codec:commons-codec@1.10" + }, + { + "nodeId": "org.bouncycastle:bcprov-jdk15on@1.70" + }, + { + "nodeId": "org.cryptacular:cryptacular@1.1.1" + } + ] + }, + { + "nodeId": "org.apache.santuario:xmlsec@2.1.1", + "pkgId": "org.apache.santuario:xmlsec@2.1.1", + "deps": [ + { + "nodeId": "com.fasterxml.woodstox:woodstox-core@5.0.3" + }, + { + "nodeId": "commons-codec:commons-codec@1.10" + }, + { + "nodeId": "org.slf4j:slf4j-api@1.7.13" + } + ] + }, + { + "nodeId": "org.opensaml:opensaml-storage-api@3.3.0", + "pkgId": "org.opensaml:opensaml-storage-api@3.3.0", + "deps": [ + { + "nodeId": "commons-codec:commons-codec@1.10" + }, + { + "nodeId": "joda-time:joda-time@2.9.2" + }, + { + "nodeId": "net.shibboleth.utilities:java-support@7.3.0" + }, + { + "nodeId": "org.slf4j:slf4j-api@1.7.13" + } + ] + }, + { + "nodeId": "org.opensaml:opensaml-soap-api@3.3.0", + "pkgId": "org.opensaml:opensaml-soap-api@3.3.0", + "deps": [ + { + "nodeId": "org.slf4j:slf4j-api@1.7.13" + }, + { + "nodeId": "net.shibboleth.utilities:java-support@7.3.0" + }, + { + "nodeId": "org.opensaml:opensaml-messaging-api@3.3.0" + }, + { + "nodeId": "org.opensaml:opensaml-xmlsec-api@3.3.0" + }, + { + "nodeId": "commons-codec:commons-codec@1.10" + }, + { + "nodeId": "org.apache.httpcomponents:httpclient@4.5.13" + } + ] + }, + { + "nodeId": "org.opensaml:opensaml-saml-impl@3.3.0", + "pkgId": "org.opensaml:opensaml-saml-impl@3.3.0", + "deps": [ + { + "nodeId": "org.slf4j:slf4j-api@1.7.13" + }, + { + "nodeId": "net.shibboleth.utilities:java-support@7.3.0" + }, + { + "nodeId": "org.opensaml:opensaml-profile-api@3.3.0" + }, + { + "nodeId": "org.opensaml:opensaml-soap-impl@3.3.0" + }, + { + "nodeId": "org.opensaml:opensaml-security-impl@3.3.0" + }, + { + "nodeId": "commons-codec:commons-codec@1.10" + }, + { + "nodeId": "org.apache.httpcomponents:httpclient@4.5.13" + }, + { + "nodeId": "org.opensaml:opensaml-saml-api@3.3.0" + }, + { + "nodeId": "org.opensaml:opensaml-xmlsec-impl@3.3.0" + }, + { + "nodeId": "org.opensaml:opensaml-storage-api@3.3.0" + }, + { + "nodeId": "org.apache.velocity:velocity@1.7" + } + ] + }, + { + "nodeId": "org.opensaml:opensaml-soap-impl@3.3.0", + "pkgId": "org.opensaml:opensaml-soap-impl@3.3.0", + "deps": [ + { + "nodeId": "org.slf4j:slf4j-api@1.7.13" + }, + { + "nodeId": "net.shibboleth.utilities:java-support@7.3.0" + }, + { + "nodeId": "org.opensaml:opensaml-profile-api@3.3.0" + }, + { + "nodeId": "commons-codec:commons-codec@1.10" + }, + { + "nodeId": "org.opensaml:opensaml-soap-api@3.3.0" + } + ] + }, + { + "nodeId": "org.opensaml:opensaml-security-impl@3.3.0", + "pkgId": "org.opensaml:opensaml-security-impl@3.3.0", + "deps": [ + { + "nodeId": "org.slf4j:slf4j-api@1.7.13" + }, + { + "nodeId": "net.shibboleth.utilities:java-support@7.3.0" + }, + { + "nodeId": "org.opensaml:opensaml-messaging-api@3.3.0" + }, + { + "nodeId": "org.opensaml:opensaml-security-api@3.3.0" + }, + { + "nodeId": "commons-codec:commons-codec@1.10" + } + ] + }, + { + "nodeId": "org.opensaml:opensaml-xmlsec-impl@3.3.0", + "pkgId": "org.opensaml:opensaml-xmlsec-impl@3.3.0", + "deps": [ + { + "nodeId": "org.slf4j:slf4j-api@1.7.13" + }, + { + "nodeId": "net.shibboleth.utilities:java-support@7.3.0" + }, + { + "nodeId": "org.opensaml:opensaml-xmlsec-api@3.3.0" + }, + { + "nodeId": "org.opensaml:opensaml-security-impl@3.3.0" + }, + { + "nodeId": "commons-codec:commons-codec@1.10" + } + ] + }, + { + "nodeId": "//services/customer_data_access:main@bazel", + "pkgId": "//services/customer_data_access:main@bazel", + "deps": [ + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//services:main@bazel" + }, + { + "nodeId": "//utils/nullability:main@bazel" + }, + { + "nodeId": "//zendesk_utils:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.apache.commons:commons-lang3@3.12.0" + }, + { + "nodeId": "org.glassfish.hk2.external:jakarta.inject@2.6.1" + } + ] + }, + { + "nodeId": "//zendesk_utils:main@bazel", + "pkgId": "//zendesk_utils:main@bazel", + "deps": [ + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//utils/exceptions:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + } + ] + }, + { + "nodeId": "//services/dbt:main@bazel", + "pkgId": "//services/dbt:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//dbt/manifest:main@bazel" + }, + { + "nodeId": "//dbt/runner:main@bazel" + }, + { + "nodeId": "//integrated_scheduler/dag:main@bazel" + }, + { + "nodeId": "//integrated_scheduler/pipeline:main@bazel" + }, + { + "nodeId": "//services:main@bazel" + }, + { + "nodeId": "//utils/nullability:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "//utils/validations:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "org.glassfish.hk2.external:jakarta.inject@2.6.1" + }, + { + "nodeId": "org.postgresql:postgresql@42.3.3" + } + ] + }, + { + "nodeId": "//services/schema_modification:main@bazel", + "pkgId": "//services/schema_modification:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//logger:acmecorp_logger@bazel" + }, + { + "nodeId": "//services/setup_test_runner:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "javax.annotation:javax.annotation-api@1.3.2" + }, + { + "nodeId": "org.glassfish.hk2.external:jakarta.inject@2.6.1" + } + ] + }, + { + "nodeId": "//sfdc_connect:main@bazel", + "pkgId": "//sfdc_connect:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//events:main@bazel" + }, + { + "nodeId": "//globals:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//secrets/system:main@bazel" + }, + { + "nodeId": "//services:main@bazel" + }, + { + "nodeId": "//slack:main@bazel" + }, + { + "nodeId": "//utils/exceptions:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "@com_fasterxml_jackson_dataformat_jackson_dataformat_csv//:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "com.google.http-client:google-http-client@1.39.2" + }, + { + "nodeId": "com.opencsv:opencsv@4.1" + }, + { + "nodeId": "commons-io:commons-io@2.4" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.glassfish.hk2.external:jakarta.inject@2.6.1" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-common@2.31" + } + ] + }, + { + "nodeId": "//ufl_storage/client:main@bazel", + "pkgId": "//ufl_storage/client:main@bazel", + "deps": [ + { + "nodeId": "//crypto:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//ufl_storage/storage:main@bazel" + }, + { + "nodeId": "//util:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + } + ] + }, + { + "nodeId": "//ufl_storage/storage:main@bazel", + "pkgId": "//ufl_storage/storage:main@bazel", + "deps": [ + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + } + ] + }, + { + "nodeId": "//utils/integrated_scheduler:main@bazel", + "pkgId": "//utils/integrated_scheduler:main@bazel", + "deps": [ + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//integrated_scheduler/scheduler:messages@bazel" + }, + { + "nodeId": "//integrated_scheduler/scheduler:pubsub@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//services:exceptions@bazel" + }, + { + "nodeId": "//services:integration_control@bazel" + }, + { + "nodeId": "//utils/exceptions:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.google.api.grpc:proto-google-cloud-pubsub-v1@1.101.1" + }, + { + "nodeId": "com.google.cloud:google-cloud-pubsub@1.119.1" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + } + ] + }, + { + "nodeId": "com.google.cloud:google-cloud-firestore@1.10.0", + "pkgId": "com.google.cloud:google-cloud-firestore@1.10.0", + "deps": [ + { + "nodeId": "com.google.api.grpc:proto-google-cloud-firestore-v1beta1@0.63.0" + }, + { + "nodeId": "io.grpc:grpc-stub@1.32.2" + }, + { + "nodeId": "io.grpc:grpc-auth@1.32.2" + }, + { + "nodeId": "com.google.cloud:google-cloud-core-grpc@1.19.0" + }, + { + "nodeId": "io.grpc:grpc-netty-shaded@1.32.2" + }, + { + "nodeId": "io.opencensus:opencensus-contrib-grpc-util@0.21.0" + }, + { + "nodeId": "com.google.cloud:google-cloud-core@1.48.0" + }, + { + "nodeId": "com.google.api:api-common@1.9.0" + }, + { + "nodeId": "com.google.api:gax-grpc@2.3.0" + }, + { + "nodeId": "javax.annotation:javax.annotation-api@1.3.2" + }, + { + "nodeId": "com.google.api.grpc:proto-google-cloud-firestore-admin-v1@1.10.0" + }, + { + "nodeId": "io.opencensus:opencensus-api@0.12.3" + }, + { + "nodeId": "com.google.api.grpc:proto-google-cloud-firestore-v1@1.10.0" + } + ] + }, + { + "nodeId": "com.google.api.grpc:proto-google-cloud-firestore-v1beta1@0.63.0", + "pkgId": "com.google.api.grpc:proto-google-cloud-firestore-v1beta1@0.63.0", + "deps": [ + { + "nodeId": "com.google.api:api-common@1.9.0" + }, + { + "nodeId": "com.google.api.grpc:proto-google-common-protos@1.15.0" + }, + { + "nodeId": "com.google.protobuf:protobuf-java@3.18.2" + }, + { + "nodeId": "javax.annotation:javax.annotation-api@1.3.2" + } + ] + }, + { + "nodeId": "io.opencensus:opencensus-contrib-grpc-util@0.21.0", + "pkgId": "io.opencensus:opencensus-contrib-grpc-util@0.21.0", + "deps": [ + { + "nodeId": "io.grpc:grpc-core@1.32.2" + }, + { + "nodeId": "io.opencensus:opencensus-api@0.12.3" + } + ] + }, + { + "nodeId": "com.google.api.grpc:proto-google-cloud-firestore-admin-v1@1.10.0", + "pkgId": "com.google.api.grpc:proto-google-cloud-firestore-admin-v1@1.10.0", + "deps": [ + { + "nodeId": "com.google.api:api-common@1.9.0" + }, + { + "nodeId": "com.google.api.grpc:proto-google-common-protos@1.15.0" + }, + { + "nodeId": "com.google.protobuf:protobuf-java@3.18.2" + }, + { + "nodeId": "javax.annotation:javax.annotation-api@1.3.2" + } + ] + }, + { + "nodeId": "com.google.api.grpc:proto-google-cloud-firestore-v1@1.10.0", + "pkgId": "com.google.api.grpc:proto-google-cloud-firestore-v1@1.10.0", + "deps": [ + { + "nodeId": "com.google.api:api-common@1.9.0" + }, + { + "nodeId": "com.google.api.grpc:proto-google-common-protos@1.15.0" + }, + { + "nodeId": "com.google.protobuf:protobuf-java@3.18.2" + }, + { + "nodeId": "javax.annotation:javax.annotation-api@1.3.2" + } + ] + }, + { + "nodeId": "com.lambdaworks:scrypt@1.4.0", + "pkgId": "com.lambdaworks:scrypt@1.4.0", + "deps": [] + }, + { + "nodeId": "org.eclipse.jetty.websocket:javax-websocket-server-impl@9.4.40.v20210413", + "pkgId": "org.eclipse.jetty.websocket:javax-websocket-server-impl@9.4.40.v20210413", + "deps": [ + { + "nodeId": "javax.websocket:javax.websocket-api@1.1" + }, + { + "nodeId": "org.eclipse.jetty:jetty-annotations@9.4.40.v20210413" + }, + { + "nodeId": "org.eclipse.jetty.websocket:javax-websocket-client-impl@9.4.40.v20210413" + }, + { + "nodeId": "org.eclipse.jetty.websocket:websocket-server@9.4.40.v20210413" + } + ] + }, + { + "nodeId": "org.eclipse.jetty:jetty-annotations@9.4.40.v20210413", + "pkgId": "org.eclipse.jetty:jetty-annotations@9.4.40.v20210413", + "deps": [ + { + "nodeId": "org.ow2.asm:asm-commons@8.0.1" + }, + { + "nodeId": "org.ow2.asm:asm@8.0.1" + }, + { + "nodeId": "org.eclipse.jetty:jetty-webapp@9.4.40.v20210413" + }, + { + "nodeId": "javax.annotation:javax.annotation-api@1.3.2" + }, + { + "nodeId": "org.eclipse.jetty:jetty-plus@9.4.40.v20210413" + } + ] + }, + { + "nodeId": "org.ow2.asm:asm-commons@8.0.1", + "pkgId": "org.ow2.asm:asm-commons@8.0.1", + "deps": [ + { + "nodeId": "org.ow2.asm:asm@8.0.1" + }, + { + "nodeId": "org.ow2.asm:asm-analysis@8.0.1" + }, + { + "nodeId": "org.ow2.asm:asm-tree@8.0.1" + } + ] + }, + { + "nodeId": "org.eclipse.jetty:jetty-webapp@9.4.40.v20210413", + "pkgId": "org.eclipse.jetty:jetty-webapp@9.4.40.v20210413", + "deps": [ + { + "nodeId": "org.eclipse.jetty:jetty-servlet@9.4.40.v20210413" + }, + { + "nodeId": "org.eclipse.jetty:jetty-xml@9.4.40.v20210413" + } + ] + }, + { + "nodeId": "org.eclipse.jetty:jetty-xml@9.4.40.v20210413", + "pkgId": "org.eclipse.jetty:jetty-xml@9.4.40.v20210413", + "deps": [ + { + "nodeId": "org.eclipse.jetty:jetty-util@9.4.40.v20210413" + } + ] + }, + { + "nodeId": "org.eclipse.jetty:jetty-plus@9.4.40.v20210413", + "pkgId": "org.eclipse.jetty:jetty-plus@9.4.40.v20210413", + "deps": [ + { + "nodeId": "org.eclipse.jetty:jetty-jndi@9.4.40.v20210413" + }, + { + "nodeId": "org.eclipse.jetty:jetty-webapp@9.4.40.v20210413" + } + ] + }, + { + "nodeId": "org.eclipse.jetty:jetty-jndi@9.4.40.v20210413", + "pkgId": "org.eclipse.jetty:jetty-jndi@9.4.40.v20210413", + "deps": [ + { + "nodeId": "org.eclipse.jetty:jetty-util@9.4.40.v20210413" + } + ] + }, + { + "nodeId": "org.eclipse.jetty.websocket:javax-websocket-client-impl@9.4.40.v20210413", + "pkgId": "org.eclipse.jetty.websocket:javax-websocket-client-impl@9.4.40.v20210413", + "deps": [ + { + "nodeId": "javax.websocket:javax.websocket-client-api@1.0" + }, + { + "nodeId": "org.eclipse.jetty.websocket:websocket-client@9.4.40.v20210413" + } + ] + }, + { + "nodeId": "javax.websocket:javax.websocket-client-api@1.0", + "pkgId": "javax.websocket:javax.websocket-client-api@1.0", + "deps": [] + }, + { + "nodeId": "org.eclipse.jetty.websocket:websocket-client@9.4.40.v20210413", + "pkgId": "org.eclipse.jetty.websocket:websocket-client@9.4.40.v20210413", + "deps": [ + { + "nodeId": "org.eclipse.jetty:jetty-client@9.4.40.v20210413" + }, + { + "nodeId": "org.eclipse.jetty:jetty-io@9.4.40.v20210413" + }, + { + "nodeId": "org.eclipse.jetty:jetty-util@9.4.40.v20210413" + }, + { + "nodeId": "org.eclipse.jetty.websocket:websocket-common@9.4.40.v20210413" + } + ] + }, + { + "nodeId": "org.eclipse.jetty:jetty-client@9.4.40.v20210413", + "pkgId": "org.eclipse.jetty:jetty-client@9.4.40.v20210413", + "deps": [ + { + "nodeId": "org.eclipse.jetty:jetty-http@9.4.40.v20210413" + }, + { + "nodeId": "org.eclipse.jetty:jetty-io@9.4.40.v20210413" + } + ] + }, + { + "nodeId": "org.eclipse.jetty.websocket:websocket-common@9.4.40.v20210413", + "pkgId": "org.eclipse.jetty.websocket:websocket-common@9.4.40.v20210413", + "deps": [ + { + "nodeId": "org.eclipse.jetty:jetty-io@9.4.40.v20210413" + }, + { + "nodeId": "org.eclipse.jetty:jetty-util@9.4.40.v20210413" + }, + { + "nodeId": "org.eclipse.jetty.websocket:websocket-api@9.4.40.v20210413" + } + ] + }, + { + "nodeId": "org.eclipse.jetty.websocket:websocket-api@9.4.40.v20210413", + "pkgId": "org.eclipse.jetty.websocket:websocket-api@9.4.40.v20210413", + "deps": [] + }, + { + "nodeId": "org.eclipse.jetty.websocket:websocket-server@9.4.40.v20210413", + "pkgId": "org.eclipse.jetty.websocket:websocket-server@9.4.40.v20210413", + "deps": [ + { + "nodeId": "org.eclipse.jetty.websocket:websocket-servlet@9.4.40.v20210413" + }, + { + "nodeId": "org.eclipse.jetty:jetty-servlet@9.4.40.v20210413" + }, + { + "nodeId": "org.eclipse.jetty.websocket:websocket-common@9.4.40.v20210413" + }, + { + "nodeId": "org.eclipse.jetty:jetty-http@9.4.40.v20210413" + }, + { + "nodeId": "org.eclipse.jetty.websocket:websocket-client@9.4.40.v20210413" + } + ] + }, + { + "nodeId": "org.eclipse.jetty.websocket:websocket-servlet@9.4.40.v20210413", + "pkgId": "org.eclipse.jetty.websocket:websocket-servlet@9.4.40.v20210413", + "deps": [ + { + "nodeId": "javax.servlet:javax.servlet-api@3.1.0" + }, + { + "nodeId": "org.eclipse.jetty.websocket:websocket-api@9.4.40.v20210413" + } + ] + }, + { + "nodeId": "org.glassfish.jersey.media:jersey-media-sse@2.31", + "pkgId": "org.glassfish.jersey.media:jersey-media-sse@2.31", + "deps": [ + { + "nodeId": "org.glassfish.hk2.external:jakarta.inject@2.6.1" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-server@2.31" + } + ] + } + ] + } + } +} diff --git a/bazel2snyk/test/fixtures/maven/maven_depgraph_pruned.json b/bazel2snyk/test/fixtures/maven/maven_depgraph_pruned.json new file mode 100644 index 0000000..54b0fee --- /dev/null +++ b/bazel2snyk/test/fixtures/maven/maven_depgraph_pruned.json @@ -0,0 +1,22321 @@ +{ + "depGraph": { + "schemaVersion": "1.2.0", + "pkgManager": { + "name": "maven" + }, + "pkgs": [ + { + "id": "//app:main@bazel", + "info": { + "name": "//app:main", + "version": "bazel" + } + }, + { + "id": "//app/config:main@bazel", + "info": { + "name": "//app/config:main", + "version": "bazel" + } + }, + { + "id": "//core_interfaces:main@bazel", + "info": { + "name": "//core_interfaces:main", + "version": "bazel" + } + }, + { + "id": "//crypto:pojos@bazel", + "info": { + "name": "//crypto:pojos", + "version": "bazel" + } + }, + { + "id": "//database:enums@bazel", + "info": { + "name": "//database:enums", + "version": "bazel" + } + }, + { + "id": "com.google.code.findbugs:jsr305@3.0.2", + "info": { + "name": "com.google.code.findbugs:jsr305", + "version": "3.0.2" + } + }, + { + "id": "//database:schema_migration_model@bazel", + "info": { + "name": "//database:schema_migration_model", + "version": "bazel" + } + }, + { + "id": "//schema_migration:enum_types@bazel", + "info": { + "name": "//schema_migration:enum_types", + "version": "bazel" + } + }, + { + "id": "com.fasterxml.jackson.core:jackson-databind@2.9.8", + "info": { + "name": "com.fasterxml.jackson.core:jackson-databind", + "version": "2.9.8" + } + }, + { + "id": "com.fasterxml.jackson.core:jackson-annotations@2.9.8", + "info": { + "name": "com.fasterxml.jackson.core:jackson-annotations", + "version": "2.9.8" + } + }, + { + "id": "com.fasterxml.jackson.core:jackson-core@2.9.8", + "info": { + "name": "com.fasterxml.jackson.core:jackson-core", + "version": "2.9.8" + } + }, + { + "id": "//events:event_hub@bazel", + "info": { + "name": "//events:event_hub", + "version": "bazel" + } + }, + { + "id": "//logger:main@bazel", + "info": { + "name": "//logger:main", + "version": "bazel" + } + }, + { + "id": "//crypto:main@bazel", + "info": { + "name": "//crypto:main", + "version": "bazel" + } + }, + { + "id": "//json:main@bazel", + "info": { + "name": "//json:main", + "version": "bazel" + } + }, + { + "id": "@com_fasterxml_jackson_dataformat_jackson_dataformat_csv//:main@bazel", + "info": { + "name": "@com_fasterxml_jackson_dataformat_jackson_dataformat_csv//:main", + "version": "bazel" + } + }, + { + "id": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8", + "info": { + "name": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8", + "version": "2.9.8" + } + }, + { + "id": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8", + "info": { + "name": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310", + "version": "2.9.8" + } + }, + { + "id": "com.google.guava:guava@25.1-jre", + "info": { + "name": "com.google.guava:guava", + "version": "25.1-jre" + } + }, + { + "id": "com.google.errorprone:error_prone_annotations@2.13.1", + "info": { + "name": "com.google.errorprone:error_prone_annotations", + "version": "2.13.1" + } + }, + { + "id": "com.google.j2objc:j2objc-annotations@1.3", + "info": { + "name": "com.google.j2objc:j2objc-annotations", + "version": "1.3" + } + }, + { + "id": "org.checkerframework:checker-qual@3.22.0", + "info": { + "name": "org.checkerframework:checker-qual", + "version": "3.22.0" + } + }, + { + "id": "org.codehaus.mojo:animal-sniffer-annotations@1.21", + "info": { + "name": "org.codehaus.mojo:animal-sniffer-annotations", + "version": "1.21" + } + }, + { + "id": "//jwt:main@bazel", + "info": { + "name": "//jwt:main", + "version": "bazel" + } + }, + { + "id": "commons-codec:commons-codec@1.10", + "info": { + "name": "commons-codec:commons-codec", + "version": "1.10" + } + }, + { + "id": "//logger:acmecorp_logger@bazel", + "info": { + "name": "//logger:acmecorp_logger", + "version": "bazel" + } + }, + { + "id": "//utils/time:main@bazel", + "info": { + "name": "//utils/time:main", + "version": "bazel" + } + }, + { + "id": "//utils/exceptions:main@bazel", + "info": { + "name": "//utils/exceptions:main", + "version": "bazel" + } + }, + { + "id": "com.amazonaws:aws-encryption-sdk-java@1.6.1", + "info": { + "name": "com.amazonaws:aws-encryption-sdk-java", + "version": "1.6.1" + } + }, + { + "id": "org.apache.commons:commons-lang3@3.12.0", + "info": { + "name": "org.apache.commons:commons-lang3", + "version": "3.12.0" + } + }, + { + "id": "org.bouncycastle:bcprov-ext-jdk15on@1.70", + "info": { + "name": "org.bouncycastle:bcprov-ext-jdk15on", + "version": "1.70" + } + }, + { + "id": "com.google.api:gax@2.3.0", + "info": { + "name": "com.google.api:gax", + "version": "2.3.0" + } + }, + { + "id": "com.google.auth:google-auth-library-oauth2-http@0.22.0", + "info": { + "name": "com.google.auth:google-auth-library-oauth2-http", + "version": "0.22.0" + } + }, + { + "id": "com.google.http-client:google-http-client@1.39.2", + "info": { + "name": "com.google.http-client:google-http-client", + "version": "1.39.2" + } + }, + { + "id": "org.apache.httpcomponents:httpcore@4.4.13", + "info": { + "name": "org.apache.httpcomponents:httpcore", + "version": "4.4.13" + } + }, + { + "id": "org.apache.httpcomponents:httpclient@4.5.13", + "info": { + "name": "org.apache.httpcomponents:httpclient", + "version": "4.5.13" + } + }, + { + "id": "commons-logging:commons-logging@1.2", + "info": { + "name": "commons-logging:commons-logging", + "version": "1.2" + } + }, + { + "id": "io.opencensus:opencensus-contrib-http-util@0.11.1", + "info": { + "name": "io.opencensus:opencensus-contrib-http-util", + "version": "0.11.1" + } + }, + { + "id": "io.opencensus:opencensus-api@0.12.3", + "info": { + "name": "io.opencensus:opencensus-api", + "version": "0.12.3" + } + }, + { + "id": "io.grpc:grpc-context@1.32.2", + "info": { + "name": "io.grpc:grpc-context", + "version": "1.32.2" + } + }, + { + "id": "com.google.auto.value:auto-value-annotations@1.9", + "info": { + "name": "com.google.auto.value:auto-value-annotations", + "version": "1.9" + } + }, + { + "id": "com.google.http-client:google-http-client-jackson2@1.35.0", + "info": { + "name": "com.google.http-client:google-http-client-jackson2", + "version": "1.35.0" + } + }, + { + "id": "com.google.auth:google-auth-library-credentials@0.9.1", + "info": { + "name": "com.google.auth:google-auth-library-credentials", + "version": "0.9.1" + } + }, + { + "id": "com.google.api:api-common@1.9.0", + "info": { + "name": "com.google.api:api-common", + "version": "1.9.0" + } + }, + { + "id": "javax.annotation:javax.annotation-api@1.3.2", + "info": { + "name": "javax.annotation:javax.annotation-api", + "version": "1.3.2" + } + }, + { + "id": "org.threeten:threetenbp@1.3.3", + "info": { + "name": "org.threeten:threetenbp", + "version": "1.3.3" + } + }, + { + "id": "com.google.api:gax-grpc@2.3.0", + "info": { + "name": "com.google.api:gax-grpc", + "version": "2.3.0" + } + }, + { + "id": "io.grpc:grpc-stub@1.32.2", + "info": { + "name": "io.grpc:grpc-stub", + "version": "1.32.2" + } + }, + { + "id": "io.grpc:grpc-api@1.32.2", + "info": { + "name": "io.grpc:grpc-api", + "version": "1.32.2" + } + }, + { + "id": "io.grpc:grpc-auth@1.32.2", + "info": { + "name": "io.grpc:grpc-auth", + "version": "1.32.2" + } + }, + { + "id": "com.google.api.grpc:proto-google-common-protos@1.15.0", + "info": { + "name": "com.google.api.grpc:proto-google-common-protos", + "version": "1.15.0" + } + }, + { + "id": "com.google.protobuf:protobuf-java@3.18.2", + "info": { + "name": "com.google.protobuf:protobuf-java", + "version": "3.18.2" + } + }, + { + "id": "io.grpc:grpc-alts@1.46.0", + "info": { + "name": "io.grpc:grpc-alts", + "version": "1.46.0" + } + }, + { + "id": "org.conscrypt:conscrypt-openjdk-uber@2.5.1", + "info": { + "name": "org.conscrypt:conscrypt-openjdk-uber", + "version": "2.5.1" + } + }, + { + "id": "io.grpc:grpc-netty-shaded@1.32.2", + "info": { + "name": "io.grpc:grpc-netty-shaded", + "version": "1.32.2" + } + }, + { + "id": "io.grpc:grpc-core@1.32.2", + "info": { + "name": "io.grpc:grpc-core", + "version": "1.32.2" + } + }, + { + "id": "com.google.android:annotations@4.1.1.4", + "info": { + "name": "com.google.android:annotations", + "version": "4.1.1.4" + } + }, + { + "id": "com.google.code.gson:gson@2.9.0", + "info": { + "name": "com.google.code.gson:gson", + "version": "2.9.0" + } + }, + { + "id": "io.perfmark:perfmark-api@0.25.0", + "info": { + "name": "io.perfmark:perfmark-api", + "version": "0.25.0" + } + }, + { + "id": "io.grpc:grpc-grpclb@1.46.0", + "info": { + "name": "io.grpc:grpc-grpclb", + "version": "1.46.0" + } + }, + { + "id": "com.google.protobuf:protobuf-java-util@3.18.2", + "info": { + "name": "com.google.protobuf:protobuf-java-util", + "version": "3.18.2" + } + }, + { + "id": "io.grpc:grpc-protobuf@1.32.2", + "info": { + "name": "io.grpc:grpc-protobuf", + "version": "1.32.2" + } + }, + { + "id": "io.grpc:grpc-protobuf-lite@1.32.2", + "info": { + "name": "io.grpc:grpc-protobuf-lite", + "version": "1.32.2" + } + }, + { + "id": "com.google.protobuf:protobuf-javalite@3.12.0", + "info": { + "name": "com.google.protobuf:protobuf-javalite", + "version": "3.12.0" + } + }, + { + "id": "com.google.api.grpc:proto-google-cloud-kms-v1@0.61.0", + "info": { + "name": "com.google.api.grpc:proto-google-cloud-kms-v1", + "version": "0.61.0" + } + }, + { + "id": "com.google.api.grpc:proto-google-iam-v1@0.13.0", + "info": { + "name": "com.google.api.grpc:proto-google-iam-v1", + "version": "0.13.0" + } + }, + { + "id": "com.google.cloud:google-cloud-kms@1.13.0", + "info": { + "name": "com.google.cloud:google-cloud-kms", + "version": "1.13.0" + } + }, + { + "id": "com.google.cloud:google-cloud-core-grpc@1.19.0", + "info": { + "name": "com.google.cloud:google-cloud-core-grpc", + "version": "1.19.0" + } + }, + { + "id": "com.google.cloud:google-cloud-core@1.48.0", + "info": { + "name": "com.google.cloud:google-cloud-core", + "version": "1.48.0" + } + }, + { + "id": "joda-time:joda-time@2.9.2", + "info": { + "name": "joda-time:joda-time", + "version": "2.9.2" + } + }, + { + "id": "com.sun.xml.bind:jaxb-core@2.2.11", + "info": { + "name": "com.sun.xml.bind:jaxb-core", + "version": "2.2.11" + } + }, + { + "id": "com.sun.xml.bind:jaxb-impl@2.2.11", + "info": { + "name": "com.sun.xml.bind:jaxb-impl", + "version": "2.2.11" + } + }, + { + "id": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6", + "info": { + "name": "jakarta.ws.rs:jakarta.ws.rs-api", + "version": "2.1.6" + } + }, + { + "id": "javax.xml.bind:jaxb-api@2.2.2", + "info": { + "name": "javax.xml.bind:jaxb-api", + "version": "2.2.2" + } + }, + { + "id": "javax.activation:activation@1.1", + "info": { + "name": "javax.activation:activation", + "version": "1.1" + } + }, + { + "id": "javax.xml.stream:stax-api@1.0-2", + "info": { + "name": "javax.xml.stream:stax-api", + "version": "1.0-2" + } + }, + { + "id": "org.glassfish.hk2.external:jakarta.inject@2.6.1", + "info": { + "name": "org.glassfish.hk2.external:jakarta.inject", + "version": "2.6.1" + } + }, + { + "id": "//feature_flag:details@bazel", + "info": { + "name": "//feature_flag:details", + "version": "bazel" + } + }, + { + "id": "//globals:main@bazel", + "info": { + "name": "//globals:main", + "version": "bazel" + } + }, + { + "id": "//lambda:main@bazel", + "info": { + "name": "//lambda:main", + "version": "bazel" + } + }, + { + "id": "//warehouses/common:warehouse_type@bazel", + "info": { + "name": "//warehouses/common:warehouse_type", + "version": "bazel" + } + }, + { + "id": "//secred/client:main@bazel", + "info": { + "name": "//secred/client:main", + "version": "bazel" + } + }, + { + "id": "//secred/common:main@bazel", + "info": { + "name": "//secred/common:main", + "version": "bazel" + } + }, + { + "id": "//secrets/common:main@bazel", + "info": { + "name": "//secrets/common:main", + "version": "bazel" + } + }, + { + "id": "com.amazonaws:aws-java-sdk-core@1.12.84", + "info": { + "name": "com.amazonaws:aws-java-sdk-core", + "version": "1.12.84" + } + }, + { + "id": "com.fasterxml.jackson.dataformat:jackson-dataformat-cbor@2.9.8", + "info": { + "name": "com.fasterxml.jackson.dataformat:jackson-dataformat-cbor", + "version": "2.9.8" + } + }, + { + "id": "software.amazon.ion:ion-java@1.0.2", + "info": { + "name": "software.amazon.ion:ion-java", + "version": "1.0.2" + } + }, + { + "id": "//util:main@bazel", + "info": { + "name": "//util:main", + "version": "bazel" + } + }, + { + "id": "com.fasterxml.jackson.dataformat:jackson-dataformat-yaml@2.9.8", + "info": { + "name": "com.fasterxml.jackson.dataformat:jackson-dataformat-yaml", + "version": "2.9.8" + } + }, + { + "id": "org.yaml:snakeyaml@1.23", + "info": { + "name": "org.yaml:snakeyaml", + "version": "1.23" + } + }, + { + "id": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8", + "info": { + "name": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider", + "version": "2.9.8" + } + }, + { + "id": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-base@2.9.8", + "info": { + "name": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-base", + "version": "2.9.8" + } + }, + { + "id": "com.fasterxml.jackson.module:jackson-module-jaxb-annotations@2.9.8", + "info": { + "name": "com.fasterxml.jackson.module:jackson-module-jaxb-annotations", + "version": "2.9.8" + } + }, + { + "id": "com.intellij:annotations@12.0", + "info": { + "name": "com.intellij:annotations", + "version": "12.0" + } + }, + { + "id": "io.netty:netty-buffer@4.1.50.Final", + "info": { + "name": "io.netty:netty-buffer", + "version": "4.1.50.Final" + } + }, + { + "id": "io.netty:netty-common@4.1.45.Final", + "info": { + "name": "io.netty:netty-common", + "version": "4.1.45.Final" + } + }, + { + "id": "javax.xml.soap:javax.xml.soap-api@1.4.0", + "info": { + "name": "javax.xml.soap:javax.xml.soap-api", + "version": "1.4.0" + } + }, + { + "id": "org.bouncycastle:bcpkix-jdk15on@1.70", + "info": { + "name": "org.bouncycastle:bcpkix-jdk15on", + "version": "1.70" + } + }, + { + "id": "org.bouncycastle:bcprov-jdk15on@1.70", + "info": { + "name": "org.bouncycastle:bcprov-jdk15on", + "version": "1.70" + } + }, + { + "id": "org.bouncycastle:bcutil-jdk15on:jar@1.70", + "info": { + "name": "org.bouncycastle:bcutil-jdk15on:jar", + "version": "1.70" + } + }, + { + "id": "org.bouncycastle:bcprov-jdk15to18@1.70", + "info": { + "name": "org.bouncycastle:bcprov-jdk15to18", + "version": "1.70" + } + }, + { + "id": "org.glassfish.jersey.core:jersey-client@2.31", + "info": { + "name": "org.glassfish.jersey.core:jersey-client", + "version": "2.31" + } + }, + { + "id": "org.glassfish.jersey.core:jersey-common@2.31", + "info": { + "name": "org.glassfish.jersey.core:jersey-common", + "version": "2.31" + } + }, + { + "id": "org.glassfish.hk2:osgi-resource-locator@1.0.3", + "info": { + "name": "org.glassfish.hk2:osgi-resource-locator", + "version": "1.0.3" + } + }, + { + "id": "jakarta.annotation:jakarta.annotation-api@1.3.5", + "info": { + "name": "jakarta.annotation:jakarta.annotation-api", + "version": "1.3.5" + } + }, + { + "id": "com.sun.activation:jakarta.activation@2.0.1", + "info": { + "name": "com.sun.activation:jakarta.activation", + "version": "2.0.1" + } + }, + { + "id": "org.jooq:jool-java-8@0.9.14", + "info": { + "name": "org.jooq:jool-java-8", + "version": "0.9.14" + } + }, + { + "id": "commons-configuration:commons-configuration@1.10", + "info": { + "name": "commons-configuration:commons-configuration", + "version": "1.10" + } + }, + { + "id": "commons-lang:commons-lang@2.6", + "info": { + "name": "commons-lang:commons-lang", + "version": "2.6" + } + }, + { + "id": "org.glassfish.jersey.connectors:jersey-apache-connector@2.31", + "info": { + "name": "org.glassfish.jersey.connectors:jersey-apache-connector", + "version": "2.31" + } + }, + { + "id": "//secred/util:main@bazel", + "info": { + "name": "//secred/util:main", + "version": "bazel" + } + }, + { + "id": "//database:credential_models@bazel", + "info": { + "name": "//database:credential_models", + "version": "bazel" + } + }, + { + "id": "//secrets/services:main@bazel", + "info": { + "name": "//secrets/services:main", + "version": "bazel" + } + }, + { + "id": "org.json:json@20171018", + "info": { + "name": "org.json:json", + "version": "20171018" + } + }, + { + "id": "//feature_flag:main@bazel", + "info": { + "name": "//feature_flag:main", + "version": "bazel" + } + }, + { + "id": "//database:flags@bazel", + "info": { + "name": "//database:flags", + "version": "bazel" + } + }, + { + "id": "//database:postgresql_jdbc_fix@bazel", + "info": { + "name": "//database:postgresql_jdbc_fix", + "version": "bazel" + } + }, + { + "id": "org.postgresql:postgresql@42.3.3", + "info": { + "name": "org.postgresql:postgresql", + "version": "42.3.3" + } + }, + { + "id": "//api/db:api_production_datasource@bazel", + "info": { + "name": "//api/db:api_production_datasource", + "version": "bazel" + } + }, + { + "id": "com.zaxxer:HikariCP@3.4.1", + "info": { + "name": "com.zaxxer:HikariCP", + "version": "3.4.1" + } + }, + { + "id": "org.slf4j:slf4j-api@1.7.13", + "info": { + "name": "org.slf4j:slf4j-api", + "version": "1.7.13" + } + }, + { + "id": "commons-io:commons-io@2.4", + "info": { + "name": "commons-io:commons-io", + "version": "2.4" + } + }, + { + "id": "//database:data_sources@bazel", + "info": { + "name": "//database:data_sources", + "version": "bazel" + } + }, + { + "id": "com.mchange:c3p0@0.9.5.1", + "info": { + "name": "com.mchange:c3p0", + "version": "0.9.5.1" + } + }, + { + "id": "com.mchange:mchange-commons-java@0.2.10", + "info": { + "name": "com.mchange:mchange-commons-java", + "version": "0.2.10" + } + }, + { + "id": "//database/exceptions:main@bazel", + "info": { + "name": "//database/exceptions:main", + "version": "bazel" + } + }, + { + "id": "//utils/nullability:main@bazel", + "info": { + "name": "//utils/nullability:main", + "version": "bazel" + } + }, + { + "id": "//dockerized/postgres:main@bazel", + "info": { + "name": "//dockerized/postgres:main", + "version": "bazel" + } + }, + { + "id": "//dockerized/common:main@bazel", + "info": { + "name": "//dockerized/common:main", + "version": "bazel" + } + }, + { + "id": "//metal:main@bazel", + "info": { + "name": "//metal:main", + "version": "bazel" + } + }, + { + "id": "com.amazonaws:aws-java-sdk-logs@1.12.84", + "info": { + "name": "com.amazonaws:aws-java-sdk-logs", + "version": "1.12.84" + } + }, + { + "id": "com.amazonaws:jmespath-java@1.11.91", + "info": { + "name": "com.amazonaws:jmespath-java", + "version": "1.11.91" + } + }, + { + "id": "com.amazonaws:aws-java-sdk-resourcegroupstaggingapi@1.12.84", + "info": { + "name": "com.amazonaws:aws-java-sdk-resourcegroupstaggingapi", + "version": "1.12.84" + } + }, + { + "id": "com.amazonaws:aws-java-sdk-s3@1.12.84", + "info": { + "name": "com.amazonaws:aws-java-sdk-s3", + "version": "1.12.84" + } + }, + { + "id": "com.amazonaws:aws-java-sdk-kms@1.12.84", + "info": { + "name": "com.amazonaws:aws-java-sdk-kms", + "version": "1.12.84" + } + }, + { + "id": "//newrelic_utils:donkey_logs_url_builder@bazel", + "info": { + "name": "//newrelic_utils:donkey_logs_url_builder", + "version": "bazel" + } + }, + { + "id": "//slack:main@bazel", + "info": { + "name": "//slack:main", + "version": "bazel" + } + }, + { + "id": "//http:main@bazel", + "info": { + "name": "//http:main", + "version": "bazel" + } + }, + { + "id": "javax.servlet:javax.servlet-api@3.1.0", + "info": { + "name": "javax.servlet:javax.servlet-api", + "version": "3.1.0" + } + }, + { + "id": "org.eclipse.jetty:jetty-server@9.4.40.v20210413", + "info": { + "name": "org.eclipse.jetty:jetty-server", + "version": "9.4.40.v20210413" + } + }, + { + "id": "org.eclipse.jetty:jetty-http@9.4.40.v20210413", + "info": { + "name": "org.eclipse.jetty:jetty-http", + "version": "9.4.40.v20210413" + } + }, + { + "id": "org.eclipse.jetty:jetty-io@9.4.40.v20210413", + "info": { + "name": "org.eclipse.jetty:jetty-io", + "version": "9.4.40.v20210413" + } + }, + { + "id": "org.eclipse.jetty:jetty-util@9.4.40.v20210413", + "info": { + "name": "org.eclipse.jetty:jetty-util", + "version": "9.4.40.v20210413" + } + }, + { + "id": "org.glassfish.hk2:hk2-api@2.6.1", + "info": { + "name": "org.glassfish.hk2:hk2-api", + "version": "2.6.1" + } + }, + { + "id": "org.glassfish.hk2:hk2-utils@2.6.1", + "info": { + "name": "org.glassfish.hk2:hk2-utils", + "version": "2.6.1" + } + }, + { + "id": "org.glassfish.hk2.external:aopalliance-repackaged@2.6.1", + "info": { + "name": "org.glassfish.hk2.external:aopalliance-repackaged", + "version": "2.6.1" + } + }, + { + "id": "org.glassfish.jersey.core:jersey-server@2.31", + "info": { + "name": "org.glassfish.jersey.core:jersey-server", + "version": "2.31" + } + }, + { + "id": "org.glassfish.jersey.media:jersey-media-jaxb@2.31", + "info": { + "name": "org.glassfish.jersey.media:jersey-media-jaxb", + "version": "2.31" + } + }, + { + "id": "jakarta.validation:jakarta.validation-api@2.0.2", + "info": { + "name": "jakarta.validation:jakarta.validation-api", + "version": "2.0.2" + } + }, + { + "id": "jakarta.xml.bind:jakarta.xml.bind-api@3.0.1", + "info": { + "name": "jakarta.xml.bind:jakarta.xml.bind-api", + "version": "3.0.1" + } + }, + { + "id": "org.glassfish.jersey.inject:jersey-hk2@2.31", + "info": { + "name": "org.glassfish.jersey.inject:jersey-hk2", + "version": "2.31" + } + }, + { + "id": "org.glassfish.hk2:hk2-locator@2.6.1", + "info": { + "name": "org.glassfish.hk2:hk2-locator", + "version": "2.6.1" + } + }, + { + "id": "org.javassist:javassist@3.21.0-GA", + "info": { + "name": "org.javassist:javassist", + "version": "3.21.0-GA" + } + }, + { + "id": "//forms:main@bazel", + "info": { + "name": "//forms:main", + "version": "bazel" + } + }, + { + "id": "//app:docs_deps@bazel", + "info": { + "name": "//app:docs_deps", + "version": "bazel" + } + }, + { + "id": "//heartbeat:main@bazel", + "info": { + "name": "//heartbeat:main", + "version": "bazel" + } + }, + { + "id": "//markdown:main@bazel", + "info": { + "name": "//markdown:main", + "version": "bazel" + } + }, + { + "id": "org.apache.velocity:velocity@1.7", + "info": { + "name": "org.apache.velocity:velocity", + "version": "1.7" + } + }, + { + "id": "commons-collections:commons-collections@3.2.2", + "info": { + "name": "commons-collections:commons-collections", + "version": "3.2.2" + } + }, + { + "id": "org.pegdown:pegdown@1.5.0", + "info": { + "name": "org.pegdown:pegdown", + "version": "1.5.0" + } + }, + { + "id": "org.parboiled:parboiled-java@1.2.0", + "info": { + "name": "org.parboiled:parboiled-java", + "version": "1.2.0" + } + }, + { + "id": "org.ow2.asm:asm-tree@8.0.1", + "info": { + "name": "org.ow2.asm:asm-tree", + "version": "8.0.1" + } + }, + { + "id": "org.ow2.asm:asm@8.0.1", + "info": { + "name": "org.ow2.asm:asm", + "version": "8.0.1" + } + }, + { + "id": "org.ow2.asm:asm-analysis@8.0.1", + "info": { + "name": "org.ow2.asm:asm-analysis", + "version": "8.0.1" + } + }, + { + "id": "org.ow2.asm:asm-util@8.0.1", + "info": { + "name": "org.ow2.asm:asm-util", + "version": "8.0.1" + } + }, + { + "id": "org.parboiled:parboiled-core@1.2.0", + "info": { + "name": "org.parboiled:parboiled-core", + "version": "1.2.0" + } + }, + { + "id": "//schema_migration:schema_migration_info@bazel", + "info": { + "name": "//schema_migration:schema_migration_info", + "version": "bazel" + } + }, + { + "id": "//core_interfaces:names_dep_to_avoid_cyclic_core_dep@bazel", + "info": { + "name": "//core_interfaces:names_dep_to_avoid_cyclic_core_dep", + "version": "bazel" + } + }, + { + "id": "com.ibm.icu:icu4j@62.1", + "info": { + "name": "com.ibm.icu:icu4j", + "version": "62.1" + } + }, + { + "id": "//sources/types:main@bazel", + "info": { + "name": "//sources/types:main", + "version": "bazel" + } + }, + { + "id": "//utils/validations:main@bazel", + "info": { + "name": "//utils/validations:main", + "version": "bazel" + } + }, + { + "id": "com.fasterxml.jackson.datatype:jackson-datatype-joda@2.9.8", + "info": { + "name": "com.fasterxml.jackson.datatype:jackson-datatype-joda", + "version": "2.9.8" + } + }, + { + "id": "org.glassfish.jersey.security:oauth1-client@2.31", + "info": { + "name": "org.glassfish.jersey.security:oauth1-client", + "version": "2.31" + } + }, + { + "id": "org.glassfish.jersey.security:oauth1-signature@2.31", + "info": { + "name": "org.glassfish.jersey.security:oauth1-signature", + "version": "2.31" + } + }, + { + "id": "//database:hikari@bazel", + "info": { + "name": "//database:hikari", + "version": "bazel" + } + }, + { + "id": "//database:main@bazel", + "info": { + "name": "//database:main", + "version": "bazel" + } + }, + { + "id": "//dbt/manifest:main@bazel", + "info": { + "name": "//dbt/manifest:main", + "version": "bazel" + } + }, + { + "id": "//dynamo:main@bazel", + "info": { + "name": "//dynamo:main", + "version": "bazel" + } + }, + { + "id": "//aws:main@bazel", + "info": { + "name": "//aws:main", + "version": "bazel" + } + }, + { + "id": "//cloud_storage:main@bazel", + "info": { + "name": "//cloud_storage:main", + "version": "bazel" + } + }, + { + "id": "//emails:core@bazel", + "info": { + "name": "//emails:core", + "version": "bazel" + } + }, + { + "id": "//secrets/system:main@bazel", + "info": { + "name": "//secrets/system:main", + "version": "bazel" + } + }, + { + "id": "com.amazonaws:aws-java-sdk-cloudtrail@1.12.84", + "info": { + "name": "com.amazonaws:aws-java-sdk-cloudtrail", + "version": "1.12.84" + } + }, + { + "id": "com.amazonaws:aws-java-sdk-config@1.12.84", + "info": { + "name": "com.amazonaws:aws-java-sdk-config", + "version": "1.12.84" + } + }, + { + "id": "com.amazonaws:aws-java-sdk-dynamodb@1.12.84", + "info": { + "name": "com.amazonaws:aws-java-sdk-dynamodb", + "version": "1.12.84" + } + }, + { + "id": "com.amazonaws:aws-java-sdk-ec2@1.12.84", + "info": { + "name": "com.amazonaws:aws-java-sdk-ec2", + "version": "1.12.84" + } + }, + { + "id": "com.amazonaws:aws-java-sdk-elasticloadbalancingv2@1.12.84", + "info": { + "name": "com.amazonaws:aws-java-sdk-elasticloadbalancingv2", + "version": "1.12.84" + } + }, + { + "id": "com.amazonaws:aws-java-sdk-glue@1.12.84", + "info": { + "name": "com.amazonaws:aws-java-sdk-glue", + "version": "1.12.84" + } + }, + { + "id": "com.amazonaws:aws-java-sdk-iam@1.12.84", + "info": { + "name": "com.amazonaws:aws-java-sdk-iam", + "version": "1.12.84" + } + }, + { + "id": "com.amazonaws:aws-java-sdk-route53@1.12.84", + "info": { + "name": "com.amazonaws:aws-java-sdk-route53", + "version": "1.12.84" + } + }, + { + "id": "com.amazonaws:aws-java-sdk-ses@1.12.84", + "info": { + "name": "com.amazonaws:aws-java-sdk-ses", + "version": "1.12.84" + } + }, + { + "id": "com.amazonaws:aws-java-sdk-sts@1.12.84", + "info": { + "name": "com.amazonaws:aws-java-sdk-sts", + "version": "1.12.84" + } + }, + { + "id": "//jackson_module_json_schema:main@bazel", + "info": { + "name": "//jackson_module_json_schema:main", + "version": "bazel" + } + }, + { + "id": "javax.validation:validation-api@1.1.0.Final", + "info": { + "name": "javax.validation:validation-api", + "version": "1.1.0.Final" + } + }, + { + "id": "//partners:main@bazel", + "info": { + "name": "//partners:main", + "version": "bazel" + } + }, + { + "id": "//webhook:main@bazel", + "info": { + "name": "//webhook:main", + "version": "bazel" + } + }, + { + "id": "//words:main@bazel", + "info": { + "name": "//words:main", + "version": "bazel" + } + }, + { + "id": "com.fasterxml.jackson.dataformat:jackson-dataformat-smile@2.9.8", + "info": { + "name": "com.fasterxml.jackson.dataformat:jackson-dataformat-smile", + "version": "2.9.8" + } + }, + { + "id": "com.google.api-client:google-api-client@1.31.1", + "info": { + "name": "com.google.api-client:google-api-client", + "version": "1.31.1" + } + }, + { + "id": "com.google.http-client:google-http-client-apache-v2@1.39.2", + "info": { + "name": "com.google.http-client:google-http-client-apache-v2", + "version": "1.39.2" + } + }, + { + "id": "com.google.oauth-client:google-oauth-client@1.23.0", + "info": { + "name": "com.google.oauth-client:google-oauth-client", + "version": "1.23.0" + } + }, + { + "id": "io.micrometer:micrometer-core@1.5.3", + "info": { + "name": "io.micrometer:micrometer-core", + "version": "1.5.3" + } + }, + { + "id": "org.hdrhistogram:HdrHistogram@2.1.12", + "info": { + "name": "org.hdrhistogram:HdrHistogram", + "version": "2.1.12" + } + }, + { + "id": "org.latencyutils:LatencyUtils@2.0.3", + "info": { + "name": "org.latencyutils:LatencyUtils", + "version": "2.0.3" + } + }, + { + "id": "//common:main@bazel", + "info": { + "name": "//common:main", + "version": "bazel" + } + }, + { + "id": "//utils/threading:main@bazel", + "info": { + "name": "//utils/threading:main", + "version": "bazel" + } + }, + { + "id": "//core_interfaces/cursor:main@bazel", + "info": { + "name": "//core_interfaces/cursor:main", + "version": "bazel" + } + }, + { + "id": "//database/resilience:main@bazel", + "info": { + "name": "//database/resilience:main", + "version": "bazel" + } + }, + { + "id": "//database:ssh_verify@bazel", + "info": { + "name": "//database:ssh_verify", + "version": "bazel" + } + }, + { + "id": "//database:tls_verify@bazel", + "info": { + "name": "//database:tls_verify", + "version": "bazel" + } + }, + { + "id": "//dbt/api/client:main@bazel", + "info": { + "name": "//dbt/api/client:main", + "version": "bazel" + } + }, + { + "id": "//http:basic_auth_credentials@bazel", + "info": { + "name": "//http:basic_auth_credentials", + "version": "bazel" + } + }, + { + "id": "//http:curl_request@bazel", + "info": { + "name": "//http:curl_request", + "version": "bazel" + } + }, + { + "id": "//utils/uri:main@bazel", + "info": { + "name": "//utils/uri:main", + "version": "bazel" + } + }, + { + "id": "//dbt/services:main@bazel", + "info": { + "name": "//dbt/services:main", + "version": "bazel" + } + }, + { + "id": "//dbt/git:main@bazel", + "info": { + "name": "//dbt/git:main", + "version": "bazel" + } + }, + { + "id": "org.eclipse.jgit:org.eclipse.jgit@6.2.0.202206071550-r", + "info": { + "name": "org.eclipse.jgit:org.eclipse.jgit", + "version": "6.2.0.202206071550-r" + } + }, + { + "id": "com.googlecode.javaewah:JavaEWAH@1.1.13", + "info": { + "name": "com.googlecode.javaewah:JavaEWAH", + "version": "1.1.13" + } + }, + { + "id": "org.eclipse.jgit:org.eclipse.jgit.ssh.apache@6.2.0.202206071550-r", + "info": { + "name": "org.eclipse.jgit:org.eclipse.jgit.ssh.apache", + "version": "6.2.0.202206071550-r" + } + }, + { + "id": "net.i2p.crypto:eddsa@0.3.0", + "info": { + "name": "net.i2p.crypto:eddsa", + "version": "0.3.0" + } + }, + { + "id": "org.apache.sshd:sshd-sftp@2.8.0", + "info": { + "name": "org.apache.sshd:sshd-sftp", + "version": "2.8.0" + } + }, + { + "id": "org.apache.sshd:sshd-core@2.8.0", + "info": { + "name": "org.apache.sshd:sshd-core", + "version": "2.8.0" + } + }, + { + "id": "org.apache.sshd:sshd-common@2.8.0", + "info": { + "name": "org.apache.sshd:sshd-common", + "version": "2.8.0" + } + }, + { + "id": "org.slf4j:jcl-over-slf4j@1.7.32", + "info": { + "name": "org.slf4j:jcl-over-slf4j", + "version": "1.7.32" + } + }, + { + "id": "org.apache.sshd:sshd-osgi@2.8.0", + "info": { + "name": "org.apache.sshd:sshd-osgi", + "version": "2.8.0" + } + }, + { + "id": "//emails:main@bazel", + "info": { + "name": "//emails:main", + "version": "bazel" + } + }, + { + "id": "//feature_flag:flags@bazel", + "info": { + "name": "//feature_flag:flags", + "version": "bazel" + } + }, + { + "id": "//feature_flag/service:main@bazel", + "info": { + "name": "//feature_flag/service:main", + "version": "bazel" + } + }, + { + "id": "com.hubspot.jinjava:jinjava@2.5.6", + "info": { + "name": "com.hubspot.jinjava:jinjava", + "version": "2.5.6" + } + }, + { + "id": "org.jsoup:jsoup@1.8.2", + "info": { + "name": "org.jsoup:jsoup", + "version": "1.8.2" + } + }, + { + "id": "ch.obermuhlner:big-math@2.0.0", + "info": { + "name": "ch.obermuhlner:big-math", + "version": "2.0.0" + } + }, + { + "id": "com.google.code.findbugs:annotations@3.0.1", + "info": { + "name": "com.google.code.findbugs:annotations", + "version": "3.0.1" + } + }, + { + "id": "com.google.re2j:re2j@1.5", + "info": { + "name": "com.google.re2j:re2j", + "version": "1.5" + } + }, + { + "id": "com.googlecode.java-ipv6:java-ipv6@0.17", + "info": { + "name": "com.googlecode.java-ipv6:java-ipv6", + "version": "0.17" + } + }, + { + "id": "commons-net:commons-net@3.3", + "info": { + "name": "commons-net:commons-net", + "version": "3.3" + } + }, + { + "id": "//services:main@bazel", + "info": { + "name": "//services:main", + "version": "bazel" + } + }, + { + "id": "//core_implementation:main@bazel", + "info": { + "name": "//core_implementation:main", + "version": "bazel" + } + }, + { + "id": "//core_implementation:operation_java_proto@bazel", + "info": { + "name": "//core_implementation:operation_java_proto", + "version": "bazel" + } + }, + { + "id": "//core_implementation:operation_proto@bazel", + "info": { + "name": "//core_implementation:operation_proto", + "version": "bazel" + } + }, + { + "id": "//core_implementation/proto:row_proto@bazel", + "info": { + "name": "//core_implementation/proto:row_proto", + "version": "bazel" + } + }, + { + "id": "//cloudwatch_metrics:main@bazel", + "info": { + "name": "//cloudwatch_metrics:main", + "version": "bazel" + } + }, + { + "id": "//google_cloud:main@bazel", + "info": { + "name": "//google_cloud:main", + "version": "bazel" + } + }, + { + "id": "@com_google_cloud_google_cloud_bigquerydatatransfer//:main@bazel", + "info": { + "name": "@com_google_cloud_google_cloud_bigquerydatatransfer//:main", + "version": "bazel" + } + }, + { + "id": "com.google.api.grpc:proto-google-cloud-monitoring-v3@1.75.0", + "info": { + "name": "com.google.api.grpc:proto-google-cloud-monitoring-v3", + "version": "1.75.0" + } + }, + { + "id": "com.google.api.grpc:proto-google-cloud-pubsub-v1@1.101.1", + "info": { + "name": "com.google.api.grpc:proto-google-cloud-pubsub-v1", + "version": "1.101.1" + } + }, + { + "id": "com.google.guava:listenablefuture@9999.0-empty-to-avoid-conflict-with-guava", + "info": { + "name": "com.google.guava:listenablefuture", + "version": "9999.0-empty-to-avoid-conflict-with-guava" + } + }, + { + "id": "com.google.guava:failureaccess@1.0.1", + "info": { + "name": "com.google.guava:failureaccess", + "version": "1.0.1" + } + }, + { + "id": "com.google.apis:google-api-services-bigquery@v2-rev459-1.25.0", + "info": { + "name": "com.google.apis:google-api-services-bigquery", + "version": "v2-rev459-1.25.0" + } + }, + { + "id": "com.google.apis:google-api-services-cloudresourcemanager@v1-rev495-1.23.0", + "info": { + "name": "com.google.apis:google-api-services-cloudresourcemanager", + "version": "v1-rev495-1.23.0" + } + }, + { + "id": "com.google.apis:google-api-services-iam@v1-rev193-1.22.0", + "info": { + "name": "com.google.apis:google-api-services-iam", + "version": "v1-rev193-1.22.0" + } + }, + { + "id": "com.google.apis:google-api-services-storage@v1-rev20200326-1.30.9", + "info": { + "name": "com.google.apis:google-api-services-storage", + "version": "v1-rev20200326-1.30.9" + } + }, + { + "id": "com.google.cloud:google-cloud-datastore@1.70.0", + "info": { + "name": "com.google.cloud:google-cloud-datastore", + "version": "1.70.0" + } + }, + { + "id": "com.google.cloud.datastore:datastore-v1-proto-client@1.6.0", + "info": { + "name": "com.google.cloud.datastore:datastore-v1-proto-client", + "version": "1.6.0" + } + }, + { + "id": "com.google.api.grpc:proto-google-cloud-datastore-v1@0.54.0", + "info": { + "name": "com.google.api.grpc:proto-google-cloud-datastore-v1", + "version": "0.54.0" + } + }, + { + "id": "com.google.http-client:google-http-client-protobuf@1.29.1", + "info": { + "name": "com.google.http-client:google-http-client-protobuf", + "version": "1.29.1" + } + }, + { + "id": "com.google.http-client:google-http-client-jackson@1.23.0", + "info": { + "name": "com.google.http-client:google-http-client-jackson", + "version": "1.23.0" + } + }, + { + "id": "org.codehaus.jackson:jackson-core-asl@1.9.13", + "info": { + "name": "org.codehaus.jackson:jackson-core-asl", + "version": "1.9.13" + } + }, + { + "id": "com.google.cloud:google-cloud-core-http@1.48.0", + "info": { + "name": "com.google.cloud:google-cloud-core-http", + "version": "1.48.0" + } + }, + { + "id": "com.google.http-client:google-http-client-appengine@1.23.0", + "info": { + "name": "com.google.http-client:google-http-client-appengine", + "version": "1.23.0" + } + }, + { + "id": "com.google.api:gax-httpjson@0.42.0", + "info": { + "name": "com.google.api:gax-httpjson", + "version": "0.42.0" + } + }, + { + "id": "com.google.cloud:google-cloud-monitoring@1.93.0", + "info": { + "name": "com.google.cloud:google-cloud-monitoring", + "version": "1.93.0" + } + }, + { + "id": "com.google.cloud:google-cloud-pubsub@1.119.1", + "info": { + "name": "com.google.cloud:google-cloud-pubsub", + "version": "1.119.1" + } + }, + { + "id": "io.opencensus:opencensus-proto@0.2.0", + "info": { + "name": "io.opencensus:opencensus-proto", + "version": "0.2.0" + } + }, + { + "id": "io.grpc:grpc-xds@1.46.0", + "info": { + "name": "io.grpc:grpc-xds", + "version": "1.46.0" + } + }, + { + "id": "io.grpc:grpc-services@1.46.0", + "info": { + "name": "io.grpc:grpc-services", + "version": "1.46.0" + } + }, + { + "id": "io.grpc:grpc-googleapis@1.46.0", + "info": { + "name": "io.grpc:grpc-googleapis", + "version": "1.46.0" + } + }, + { + "id": "com.google.http-client:google-http-client-gson@1.41.8", + "info": { + "name": "com.google.http-client:google-http-client-gson", + "version": "1.41.8" + } + }, + { + "id": "com.google.cloud:google-cloud-storage@1.108.0", + "info": { + "name": "com.google.cloud:google-cloud-storage", + "version": "1.108.0" + } + }, + { + "id": "io.jsonwebtoken:jjwt@0.9.0", + "info": { + "name": "io.jsonwebtoken:jjwt", + "version": "0.9.0" + } + }, + { + "id": "com.amazonaws:aws-java-sdk-cloudwatch@1.12.84", + "info": { + "name": "com.amazonaws:aws-java-sdk-cloudwatch", + "version": "1.12.84" + } + }, + { + "id": "//core_implementation/column_blocking:main@bazel", + "info": { + "name": "//core_implementation/column_blocking:main", + "version": "bazel" + } + }, + { + "id": "//core_implementation/proto:main@bazel", + "info": { + "name": "//core_implementation/proto:main", + "version": "bazel" + } + }, + { + "id": "//core_implementation/proto:row_java_proto@bazel", + "info": { + "name": "//core_implementation/proto:row_java_proto", + "version": "bazel" + } + }, + { + "id": "//utils/jdk:main@bazel", + "info": { + "name": "//utils/jdk:main", + "version": "bazel" + } + }, + { + "id": "//utils/serializers:main@bazel", + "info": { + "name": "//utils/serializers:main", + "version": "bazel" + } + }, + { + "id": "org.apache.commons:commons-pool2@2.8.0", + "info": { + "name": "org.apache.commons:commons-pool2", + "version": "2.8.0" + } + }, + { + "id": "//core_implementation/transform:main@bazel", + "info": { + "name": "//core_implementation/transform:main", + "version": "bazel" + } + }, + { + "id": "//utils/serialization:main@bazel", + "info": { + "name": "//utils/serialization:main", + "version": "bazel" + } + }, + { + "id": "//core_interfaces:warning@bazel", + "info": { + "name": "//core_interfaces:warning", + "version": "bazel" + } + }, + { + "id": "//logging:main@bazel", + "info": { + "name": "//logging:main", + "version": "bazel" + } + }, + { + "id": "//log_appender/cloudwatch:main@bazel", + "info": { + "name": "//log_appender/cloudwatch:main", + "version": "bazel" + } + }, + { + "id": "//log_appender/gcs_appender:main@bazel", + "info": { + "name": "//log_appender/gcs_appender:main", + "version": "bazel" + } + }, + { + "id": "//utils/hook:main@bazel", + "info": { + "name": "//utils/hook:main", + "version": "bazel" + } + }, + { + "id": "//log_appender/stackdriver:main@bazel", + "info": { + "name": "//log_appender/stackdriver:main", + "version": "bazel" + } + }, + { + "id": "com.google.cloud:google-cloud-logging@1.19.0", + "info": { + "name": "com.google.cloud:google-cloud-logging", + "version": "1.19.0" + } + }, + { + "id": "com.google.api.grpc:proto-google-cloud-logging-v2@0.2.1", + "info": { + "name": "com.google.api.grpc:proto-google-cloud-logging-v2", + "version": "0.2.1" + } + }, + { + "id": "//micrometer:main@bazel", + "info": { + "name": "//micrometer:main", + "version": "bazel" + } + }, + { + "id": "com.newrelic.telemetry:micrometer-registry-new-relic@0.6.0", + "info": { + "name": "com.newrelic.telemetry:micrometer-registry-new-relic", + "version": "0.6.0" + } + }, + { + "id": "com.newrelic.telemetry:telemetry@0.7.0", + "info": { + "name": "com.newrelic.telemetry:telemetry", + "version": "0.7.0" + } + }, + { + "id": "com.newrelic.telemetry:telemetry-core@0.7.0", + "info": { + "name": "com.newrelic.telemetry:telemetry-core", + "version": "0.7.0" + } + }, + { + "id": "io.micrometer:micrometer-registry-stackdriver@1.5.3", + "info": { + "name": "io.micrometer:micrometer-registry-stackdriver", + "version": "1.5.3" + } + }, + { + "id": "//pipeline_queue:main@bazel", + "info": { + "name": "//pipeline_queue:main", + "version": "bazel" + } + }, + { + "id": "//shaded_dependencies/azure:azure_identity_shaded@bazel", + "info": { + "name": "//shaded_dependencies/azure:azure_identity_shaded", + "version": "bazel" + } + }, + { + "id": "//shaded_dependencies/azure:azure_storage_blob_shaded@bazel", + "info": { + "name": "//shaded_dependencies/azure:azure_storage_blob_shaded", + "version": "bazel" + } + }, + { + "id": "//utils/network_monitor:main@bazel", + "info": { + "name": "//utils/network_monitor:main", + "version": "bazel" + } + }, + { + "id": "//utils/os:main@bazel", + "info": { + "name": "//utils/os:main", + "version": "bazel" + } + }, + { + "id": "//schema_migration:main@bazel", + "info": { + "name": "//schema_migration:main", + "version": "bazel" + } + }, + { + "id": "//schema_migration:service@bazel", + "info": { + "name": "//schema_migration:service", + "version": "bazel" + } + }, + { + "id": "//utils/sync_statistics:main@bazel", + "info": { + "name": "//utils/sync_statistics:main", + "version": "bazel" + } + }, + { + "id": "//benchmarking:stats@bazel", + "info": { + "name": "//benchmarking:stats", + "version": "bazel" + } + }, + { + "id": "com.fasterxml.jackson.dataformat:jackson-dataformat-xml@2.9.8", + "info": { + "name": "com.fasterxml.jackson.dataformat:jackson-dataformat-xml", + "version": "2.9.8" + } + }, + { + "id": "org.codehaus.woodstox:stax2-api@3.1.4", + "info": { + "name": "org.codehaus.woodstox:stax2-api", + "version": "3.1.4" + } + }, + { + "id": "com.fasterxml.woodstox:woodstox-core@5.0.3", + "info": { + "name": "com.fasterxml.woodstox:woodstox-core", + "version": "5.0.3" + } + }, + { + "id": "io.apptik.json:json-core@1.0.4", + "info": { + "name": "io.apptik.json:json-core", + "version": "1.0.4" + } + }, + { + "id": "//warehouses/common:observability@bazel", + "info": { + "name": "//warehouses/common:observability", + "version": "bazel" + } + }, + { + "id": "//warehouses/common:events@bazel", + "info": { + "name": "//warehouses/common:events", + "version": "bazel" + } + }, + { + "id": "//warehouses/common:feature_flags@bazel", + "info": { + "name": "//warehouses/common:feature_flags", + "version": "bazel" + } + }, + { + "id": "//heartbeat:lite@bazel", + "info": { + "name": "//heartbeat:lite", + "version": "bazel" + } + }, + { + "id": "com.github.alexandrnikitin:bloom-filter_2.11@0.11.0", + "info": { + "name": "com.github.alexandrnikitin:bloom-filter_2.11", + "version": "0.11.0" + } + }, + { + "id": "org.scala-lang:scala-library@2.11.1", + "info": { + "name": "org.scala-lang:scala-library", + "version": "2.11.1" + } + }, + { + "id": "io.projectreactor:reactor-core@3.4.11", + "info": { + "name": "io.projectreactor:reactor-core", + "version": "3.4.11" + } + }, + { + "id": "org.reactivestreams:reactive-streams@1.0.3", + "info": { + "name": "org.reactivestreams:reactive-streams", + "version": "1.0.3" + } + }, + { + "id": "net.agkn:hll@1.6.0", + "info": { + "name": "net.agkn:hll", + "version": "1.6.0" + } + }, + { + "id": "it.unimi.dsi:fastutil@8.1.0", + "info": { + "name": "it.unimi.dsi:fastutil", + "version": "8.1.0" + } + }, + { + "id": "org.jetbrains.kotlin:kotlin-stdlib@1.3.50", + "info": { + "name": "org.jetbrains.kotlin:kotlin-stdlib", + "version": "1.3.50" + } + }, + { + "id": "org.jetbrains:annotations@17.0.0", + "info": { + "name": "org.jetbrains:annotations", + "version": "17.0.0" + } + }, + { + "id": "org.jetbrains.kotlin:kotlin-stdlib-common@1.3.71", + "info": { + "name": "org.jetbrains.kotlin:kotlin-stdlib-common", + "version": "1.3.71" + } + }, + { + "id": "org.openjdk.jmh:jmh-core@1.19", + "info": { + "name": "org.openjdk.jmh:jmh-core", + "version": "1.19" + } + }, + { + "id": "net.sf.jopt-simple:jopt-simple@5.0.4", + "info": { + "name": "net.sf.jopt-simple:jopt-simple", + "version": "5.0.4" + } + }, + { + "id": "org.apache.commons:commons-math3@3.6.1", + "info": { + "name": "org.apache.commons:commons-math3", + "version": "3.6.1" + } + }, + { + "id": "org.rocksdb:rocksdbjni@6.8.1", + "info": { + "name": "org.rocksdb:rocksdbjni", + "version": "6.8.1" + } + }, + { + "id": "org.xerial.snappy:snappy-java@1.1.8.4", + "info": { + "name": "org.xerial.snappy:snappy-java", + "version": "1.1.8.4" + } + }, + { + "id": "//refine:main@bazel", + "info": { + "name": "//refine:main", + "version": "bazel" + } + }, + { + "id": "//schema_service:main@bazel", + "info": { + "name": "//schema_service:main", + "version": "bazel" + } + }, + { + "id": "//services/cmk_encryption:main@bazel", + "info": { + "name": "//services/cmk_encryption:main", + "version": "bazel" + } + }, + { + "id": "javax.ws.rs:javax.ws.rs-api@2.1.1", + "info": { + "name": "javax.ws.rs:javax.ws.rs-api", + "version": "2.1.1" + } + }, + { + "id": "//services/logging:main@bazel", + "info": { + "name": "//services/logging:main", + "version": "bazel" + } + }, + { + "id": "//ssh:main@bazel", + "info": { + "name": "//ssh:main", + "version": "bazel" + } + }, + { + "id": "//secrets/db:main@bazel", + "info": { + "name": "//secrets/db:main", + "version": "bazel" + } + }, + { + "id": "//kms:main@bazel", + "info": { + "name": "//kms:main", + "version": "bazel" + } + }, + { + "id": "@jsch_patched//:main@bazel", + "info": { + "name": "@jsch_patched//:main", + "version": "bazel" + } + }, + { + "id": "com.jcraft:jzlib@1.1.3", + "info": { + "name": "com.jcraft:jzlib", + "version": "1.1.3" + } + }, + { + "id": "//warehouses/big_query:main@bazel", + "info": { + "name": "//warehouses/big_query:main", + "version": "bazel" + } + }, + { + "id": "//json:default_object_mapper@bazel", + "info": { + "name": "//json:default_object_mapper", + "version": "bazel" + } + }, + { + "id": "//warehouses/common:main@bazel", + "info": { + "name": "//warehouses/common:main", + "version": "bazel" + } + }, + { + "id": "//port_forwarder:tunnel_data_source@bazel", + "info": { + "name": "//port_forwarder:tunnel_data_source", + "version": "bazel" + } + }, + { + "id": "//aws:instance_id@bazel", + "info": { + "name": "//aws:instance_id", + "version": "bazel" + } + }, + { + "id": "org.eclipse.jetty:jetty-servlet@9.4.40.v20210413", + "info": { + "name": "org.eclipse.jetty:jetty-servlet", + "version": "9.4.40.v20210413" + } + }, + { + "id": "org.eclipse.jetty:jetty-security@9.4.40.v20210413", + "info": { + "name": "org.eclipse.jetty:jetty-security", + "version": "9.4.40.v20210413" + } + }, + { + "id": "org.eclipse.jetty:jetty-util-ajax@9.4.40.v20210413", + "info": { + "name": "org.eclipse.jetty:jetty-util-ajax", + "version": "9.4.40.v20210413" + } + }, + { + "id": "org.glassfish.jersey.containers:jersey-container-servlet-core@2.31", + "info": { + "name": "org.glassfish.jersey.containers:jersey-container-servlet-core", + "version": "2.31" + } + }, + { + "id": "//warehouses/common:staging_s3@bazel", + "info": { + "name": "//warehouses/common:staging_s3", + "version": "bazel" + } + }, + { + "id": "//warehouses/common-local:writer_file@bazel", + "info": { + "name": "//warehouses/common-local:writer_file", + "version": "bazel" + } + }, + { + "id": "com.github.luben:zstd-jni@1.4.9-1", + "info": { + "name": "com.github.luben:zstd-jni", + "version": "1.4.9-1" + } + }, + { + "id": "//warehouses/common-local:writer_base@bazel", + "info": { + "name": "//warehouses/common-local:writer_base", + "version": "bazel" + } + }, + { + "id": "//warehouses/common:staging_azure@bazel", + "info": { + "name": "//warehouses/common:staging_azure", + "version": "bazel" + } + }, + { + "id": "com.microsoft.azure:azure-keyvault-cryptography@1.2.4", + "info": { + "name": "com.microsoft.azure:azure-keyvault-cryptography", + "version": "1.2.4" + } + }, + { + "id": "com.microsoft.azure:azure-keyvault-webkey@1.2.4", + "info": { + "name": "com.microsoft.azure:azure-keyvault-webkey", + "version": "1.2.4" + } + }, + { + "id": "com.microsoft.azure:azure-keyvault-core@1.2.4", + "info": { + "name": "com.microsoft.azure:azure-keyvault-core", + "version": "1.2.4" + } + }, + { + "id": "com.microsoft.azure:azure-storage@8.6.3", + "info": { + "name": "com.microsoft.azure:azure-storage", + "version": "8.6.3" + } + }, + { + "id": "//warehouses/common:staging_gcs@bazel", + "info": { + "name": "//warehouses/common:staging_gcs", + "version": "bazel" + } + }, + { + "id": "//warehouses/common-local:writer_csv@bazel", + "info": { + "name": "//warehouses/common-local:writer_csv", + "version": "bazel" + } + }, + { + "id": "//warehouses/common-local:writer_avro@bazel", + "info": { + "name": "//warehouses/common-local:writer_avro", + "version": "bazel" + } + }, + { + "id": "//warehouses/common-local:writer_avro_base@bazel", + "info": { + "name": "//warehouses/common-local:writer_avro_base", + "version": "bazel" + } + }, + { + "id": "org.apache.avro:avro@1.11.0", + "info": { + "name": "org.apache.avro:avro", + "version": "1.11.0" + } + }, + { + "id": "org.apache.commons:commons-compress@1.16", + "info": { + "name": "org.apache.commons:commons-compress", + "version": "1.16" + } + }, + { + "id": "org.objenesis:objenesis@2.6", + "info": { + "name": "org.objenesis:objenesis", + "version": "2.6" + } + }, + { + "id": "//warehouses/common-local:writer_json@bazel", + "info": { + "name": "//warehouses/common-local:writer_json", + "version": "bazel" + } + }, + { + "id": "com.google.api.grpc:proto-google-cloud-billingbudgets-v1@1.1.0", + "info": { + "name": "com.google.api.grpc:proto-google-cloud-billingbudgets-v1", + "version": "1.1.0" + } + }, + { + "id": "org.checkerframework:checker-compat-qual@2.5.5", + "info": { + "name": "org.checkerframework:checker-compat-qual", + "version": "2.5.5" + } + }, + { + "id": "com.google.apis:google-api-services-cloudbilling@v1-rev9-1.22.0", + "info": { + "name": "com.google.apis:google-api-services-cloudbilling", + "version": "v1-rev9-1.22.0" + } + }, + { + "id": "com.google.apis:google-api-services-servicemanagement@v1-rev435-1.23.0", + "info": { + "name": "com.google.apis:google-api-services-servicemanagement", + "version": "v1-rev435-1.23.0" + } + }, + { + "id": "com.google.apis:google-api-services-serviceusage@v1beta1-rev20210427-1.31.0", + "info": { + "name": "com.google.apis:google-api-services-serviceusage", + "version": "v1beta1-rev20210427-1.31.0" + } + }, + { + "id": "com.google.cloud:google-cloud-billingbudgets@1.1.0", + "info": { + "name": "com.google.cloud:google-cloud-billingbudgets", + "version": "1.1.0" + } + }, + { + "id": "com.google.api.grpc:proto-google-cloud-billingbudgets-v1beta1@0.7.0", + "info": { + "name": "com.google.api.grpc:proto-google-cloud-billingbudgets-v1beta1", + "version": "0.7.0" + } + }, + { + "id": "com.stripe:stripe-java@19.20.0", + "info": { + "name": "com.stripe:stripe-java", + "version": "19.20.0" + } + }, + { + "id": "io.swagger.core.v3:swagger-annotations@2.1.11", + "info": { + "name": "io.swagger.core.v3:swagger-annotations", + "version": "2.1.11" + } + }, + { + "id": "//utils/bootstrap:main@bazel", + "info": { + "name": "//utils/bootstrap:main", + "version": "bazel" + } + }, + { + "id": "//integrations/braze:main@bazel", + "info": { + "name": "//integrations/braze:main", + "version": "bazel" + } + }, + { + "id": "//services/resync:main@bazel", + "info": { + "name": "//services/resync:main", + "version": "bazel" + } + }, + { + "id": "//services:exceptions@bazel", + "info": { + "name": "//services:exceptions", + "version": "bazel" + } + }, + { + "id": "//services:integration_control@bazel", + "info": { + "name": "//services:integration_control", + "version": "bazel" + } + }, + { + "id": "//utils/fsort:main@bazel", + "info": { + "name": "//utils/fsort:main", + "version": "bazel" + } + }, + { + "id": "info.picocli:picocli@4.5.1", + "info": { + "name": "info.picocli:picocli", + "version": "4.5.1" + } + }, + { + "id": "com.cronutils:cron-utils@9.0.2", + "info": { + "name": "com.cronutils:cron-utils", + "version": "9.0.2" + } + }, + { + "id": "org.hibernate:hibernate-validator@5.4.3.Final", + "info": { + "name": "org.hibernate:hibernate-validator", + "version": "5.4.3.Final" + } + }, + { + "id": "com.fasterxml:classmate@1.3.4", + "info": { + "name": "com.fasterxml:classmate", + "version": "1.3.4" + } + }, + { + "id": "org.jboss.logging:jboss-logging@3.3.2.Final", + "info": { + "name": "org.jboss.logging:jboss-logging", + "version": "3.3.2.Final" + } + }, + { + "id": "//donkey:main@bazel", + "info": { + "name": "//donkey:main", + "version": "bazel" + } + }, + { + "id": "//event_bus:main@bazel", + "info": { + "name": "//event_bus:main", + "version": "bazel" + } + }, + { + "id": "com.github.f4b6a3:ulid-creator@4.0.0", + "info": { + "name": "com.github.f4b6a3:ulid-creator", + "version": "4.0.0" + } + }, + { + "id": "//integrated_scheduler/scheduler:pubsub@bazel", + "info": { + "name": "//integrated_scheduler/scheduler:pubsub", + "version": "bazel" + } + }, + { + "id": "//integrated_scheduler/scheduler:messages@bazel", + "info": { + "name": "//integrated_scheduler/scheduler:messages", + "version": "bazel" + } + }, + { + "id": "com.google.apis:google-api-services-pubsub@v1-rev452-1.25.0", + "info": { + "name": "com.google.apis:google-api-services-pubsub", + "version": "v1-rev452-1.25.0" + } + }, + { + "id": "//integrations/netsuite:main@bazel", + "info": { + "name": "//integrations/netsuite:main", + "version": "bazel" + } + }, + { + "id": "//core_utils:main@bazel", + "info": { + "name": "//core_utils:main", + "version": "bazel" + } + }, + { + "id": "//dblike:main@bazel", + "info": { + "name": "//dblike:main", + "version": "bazel" + } + }, + { + "id": "//integrations/db:main@bazel", + "info": { + "name": "//integrations/db:main", + "version": "bazel" + } + }, + { + "id": "//integrations/hvr/hvr_tool:main@bazel", + "info": { + "name": "//integrations/hvr/hvr_tool:main", + "version": "bazel" + } + }, + { + "id": "//utils/cipher_adapter:main@bazel", + "info": { + "name": "//utils/cipher_adapter:main", + "version": "bazel" + } + }, + { + "id": "//utils/run_shell:main@bazel", + "info": { + "name": "//utils/run_shell:main", + "version": "bazel" + } + }, + { + "id": "//utils/sleep_control:main@bazel", + "info": { + "name": "//utils/sleep_control:main", + "version": "bazel" + } + }, + { + "id": "//utils/segmented_input_stream:main@bazel", + "info": { + "name": "//utils/segmented_input_stream:main", + "version": "bazel" + } + }, + { + "id": "//utils/socket_receiver:main@bazel", + "info": { + "name": "//utils/socket_receiver:main", + "version": "bazel" + } + }, + { + "id": "//integrations/isolated_endpoint_sync:main@bazel", + "info": { + "name": "//integrations/isolated_endpoint_sync:main", + "version": "bazel" + } + }, + { + "id": "//integrations/speed_test:main@bazel", + "info": { + "name": "//integrations/speed_test:main", + "version": "bazel" + } + }, + { + "id": "//integrations/speed_test:utils@bazel", + "info": { + "name": "//integrations/speed_test:utils", + "version": "bazel" + } + }, + { + "id": "//ip_utils:main@bazel", + "info": { + "name": "//ip_utils:main", + "version": "bazel" + } + }, + { + "id": "//port_forwarder:main@bazel", + "info": { + "name": "//port_forwarder:main", + "version": "bazel" + } + }, + { + "id": "//:databricks_jdbc@bazel", + "info": { + "name": "//:databricks_jdbc", + "version": "bazel" + } + }, + { + "id": "//:netsuite_jdbc_connector@bazel", + "info": { + "name": "//:netsuite_jdbc_connector", + "version": "bazel" + } + }, + { + "id": "//:sap_s4hana_jdbc_connector@bazel", + "info": { + "name": "//:sap_s4hana_jdbc_connector", + "version": "bazel" + } + }, + { + "id": "//utils/oracle:main@bazel", + "info": { + "name": "//utils/oracle:main", + "version": "bazel" + } + }, + { + "id": "//verification:main@bazel", + "info": { + "name": "//verification:main", + "version": "bazel" + } + }, + { + "id": "mysql:mysql-connector-java@8.0.13", + "info": { + "name": "mysql:mysql-connector-java", + "version": "8.0.13" + } + }, + { + "id": "org.mariadb.jdbc:mariadb-java-client@2.5.4", + "info": { + "name": "org.mariadb.jdbc:mariadb-java-client", + "version": "2.5.4" + } + }, + { + "id": "@mysql_binlog_connector//:main@bazel", + "info": { + "name": "@mysql_binlog_connector//:main", + "version": "bazel" + } + }, + { + "id": "com.amazonaws:aws-java-sdk-redshift@1.12.84", + "info": { + "name": "com.amazonaws:aws-java-sdk-redshift", + "version": "1.12.84" + } + }, + { + "id": "com.ibm.db2:jcc@11.5.0.0", + "info": { + "name": "com.ibm.db2:jcc", + "version": "11.5.0.0" + } + }, + { + "id": "com.microsoft.sqlserver:mssql-jdbc@9.4.0.jre11", + "info": { + "name": "com.microsoft.sqlserver:mssql-jdbc", + "version": "9.4.0.jre11" + } + }, + { + "id": "net.snowflake:snowflake-jdbc@3.13.18", + "info": { + "name": "net.snowflake:snowflake-jdbc", + "version": "3.13.18" + } + }, + { + "id": "//testing:main@bazel", + "info": { + "name": "//testing:main", + "version": "bazel" + } + }, + { + "id": "//core_mocks:main@bazel", + "info": { + "name": "//core_mocks:main", + "version": "bazel" + } + }, + { + "id": "com.jayway.jsonpath:json-path@2.4.0", + "info": { + "name": "com.jayway.jsonpath:json-path", + "version": "2.4.0" + } + }, + { + "id": "net.minidev:json-smart@2.3", + "info": { + "name": "net.minidev:json-smart", + "version": "2.3" + } + }, + { + "id": "net.minidev:accessors-smart@1.2", + "info": { + "name": "net.minidev:accessors-smart", + "version": "1.2" + } + }, + { + "id": "com.github.tomakehurst:wiremock-jre8-standalone@2.27.2", + "info": { + "name": "com.github.tomakehurst:wiremock-jre8-standalone", + "version": "2.27.2" + } + }, + { + "id": "javax.websocket:javax.websocket-api@1.1", + "info": { + "name": "javax.websocket:javax.websocket-api", + "version": "1.1" + } + }, + { + "id": "junit:junit@4.13", + "info": { + "name": "junit:junit", + "version": "4.13" + } + }, + { + "id": "org.hamcrest:hamcrest-core@2.2", + "info": { + "name": "org.hamcrest:hamcrest-core", + "version": "2.2" + } + }, + { + "id": "org.hamcrest:hamcrest@2.2", + "info": { + "name": "org.hamcrest:hamcrest", + "version": "2.2" + } + }, + { + "id": "org.mockito:mockito-core@2.28.2", + "info": { + "name": "org.mockito:mockito-core", + "version": "2.28.2" + } + }, + { + "id": "net.bytebuddy:byte-buddy@1.10.14", + "info": { + "name": "net.bytebuddy:byte-buddy", + "version": "1.10.14" + } + }, + { + "id": "net.bytebuddy:byte-buddy-agent@1.10.14", + "info": { + "name": "net.bytebuddy:byte-buddy-agent", + "version": "1.10.14" + } + }, + { + "id": "//utils/beans:main@bazel", + "info": { + "name": "//utils/beans:main", + "version": "bazel" + } + }, + { + "id": "com.github.jsqlparser:jsqlparser@4.2", + "info": { + "name": "com.github.jsqlparser:jsqlparser", + "version": "4.2" + } + }, + { + "id": "com.walkmind.extensions:collections@1.20", + "info": { + "name": "com.walkmind.extensions:collections", + "version": "1.20" + } + }, + { + "id": "//integrations/db_like_standardization:main@bazel", + "info": { + "name": "//integrations/db_like_standardization:main", + "version": "bazel" + } + }, + { + "id": "//secrets/group:main@bazel", + "info": { + "name": "//secrets/group:main", + "version": "bazel" + } + }, + { + "id": "//services/setup_test_runner:main@bazel", + "info": { + "name": "//services/setup_test_runner:main", + "version": "bazel" + } + }, + { + "id": "//setup_test_runner:client@bazel", + "info": { + "name": "//setup_test_runner:client", + "version": "bazel" + } + }, + { + "id": "//http:exception_mappers@bazel", + "info": { + "name": "//http:exception_mappers", + "version": "bazel" + } + }, + { + "id": "//http:json@bazel", + "info": { + "name": "//http:json", + "version": "bazel" + } + }, + { + "id": "//transformation_runner:client@bazel", + "info": { + "name": "//transformation_runner:client", + "version": "bazel" + } + }, + { + "id": "org.slf4j:slf4j-jdk14@1.7.13", + "info": { + "name": "org.slf4j:slf4j-jdk14", + "version": "1.7.13" + } + }, + { + "id": "//events:main@bazel", + "info": { + "name": "//events:main", + "version": "bazel" + } + }, + { + "id": "//feature_flag/sandbox:main@bazel", + "info": { + "name": "//feature_flag/sandbox:main", + "version": "bazel" + } + }, + { + "id": "//feature_flag/json:main@bazel", + "info": { + "name": "//feature_flag/json:main", + "version": "bazel" + } + }, + { + "id": "//integrated_scheduler/dag:main@bazel", + "info": { + "name": "//integrated_scheduler/dag:main", + "version": "bazel" + } + }, + { + "id": "//integrated_scheduler/pipeline:main@bazel", + "info": { + "name": "//integrated_scheduler/pipeline:main", + "version": "bazel" + } + }, + { + "id": "//dbt/runner:main@bazel", + "info": { + "name": "//dbt/runner:main", + "version": "bazel" + } + }, + { + "id": "//dbt/agent:common@bazel", + "info": { + "name": "//dbt/agent:common", + "version": "bazel" + } + }, + { + "id": "//log_appender/datadog:main@bazel", + "info": { + "name": "//log_appender/datadog:main", + "version": "bazel" + } + }, + { + "id": "//log_appender/log_analytics:main@bazel", + "info": { + "name": "//log_appender/log_analytics:main", + "version": "bazel" + } + }, + { + "id": "//log_appender/splunk:main@bazel", + "info": { + "name": "//log_appender/splunk:main", + "version": "bazel" + } + }, + { + "id": "//logging:ufl@bazel", + "info": { + "name": "//logging:ufl", + "version": "bazel" + } + }, + { + "id": "//warehouses/big_query:locations@bazel", + "info": { + "name": "//warehouses/big_query:locations", + "version": "bazel" + } + }, + { + "id": "//warehouses/redshift:redshift_cluster_service@bazel", + "info": { + "name": "//warehouses/redshift:redshift_cluster_service", + "version": "bazel" + } + }, + { + "id": "//log_tailer:main@bazel", + "info": { + "name": "//log_tailer:main", + "version": "bazel" + } + }, + { + "id": "//integrations/zuora:main@bazel", + "info": { + "name": "//integrations/zuora:main", + "version": "bazel" + } + }, + { + "id": "//secrets/integration:main@bazel", + "info": { + "name": "//secrets/integration:main", + "version": "bazel" + } + }, + { + "id": "//logging:fluent_bit@bazel", + "info": { + "name": "//logging:fluent_bit", + "version": "bazel" + } + }, + { + "id": "//service_registry:main@bazel", + "info": { + "name": "//service_registry:main", + "version": "bazel" + } + }, + { + "id": "//coil:main@bazel", + "info": { + "name": "//coil:main", + "version": "bazel" + } + }, + { + "id": "//coil:coil_framework_java@bazel", + "info": { + "name": "//coil:coil_framework_java", + "version": "bazel" + } + }, + { + "id": "//coil:coil_framework_clojure@bazel", + "info": { + "name": "//coil:coil_framework_clojure", + "version": "bazel" + } + }, + { + "id": "//integrations/coil_connectors:main@bazel", + "info": { + "name": "//integrations/coil_connectors:main", + "version": "bazel" + } + }, + { + "id": "org.clojure:clojure@1.10.1", + "info": { + "name": "org.clojure:clojure", + "version": "1.10.1" + } + }, + { + "id": "org.clojure:core.specs.alpha@0.2.56", + "info": { + "name": "org.clojure:core.specs.alpha", + "version": "0.2.56" + } + }, + { + "id": "org.clojure:data.json@1.1.0", + "info": { + "name": "org.clojure:data.json", + "version": "1.1.0" + } + }, + { + "id": "//webhook/client:main@bazel", + "info": { + "name": "//webhook/client:main", + "version": "bazel" + } + }, + { + "id": "//webhook/storage:main@bazel", + "info": { + "name": "//webhook/storage:main", + "version": "bazel" + } + }, + { + "id": "//webhook/utils:main@bazel", + "info": { + "name": "//webhook/utils:main", + "version": "bazel" + } + }, + { + "id": "//core_interfaces:pojos@bazel", + "info": { + "name": "//core_interfaces:pojos", + "version": "bazel" + } + }, + { + "id": "io.kubernetes:client-java@3.0.0-beta2", + "info": { + "name": "io.kubernetes:client-java", + "version": "3.0.0-beta2" + } + }, + { + "id": "io.kubernetes:client-java-api@3.0.0-beta2", + "info": { + "name": "io.kubernetes:client-java-api", + "version": "3.0.0-beta2" + } + }, + { + "id": "com.squareup.okhttp:okhttp@2.7.5", + "info": { + "name": "com.squareup.okhttp:okhttp", + "version": "2.7.5" + } + }, + { + "id": "com.squareup.okio:okio@1.13.0", + "info": { + "name": "com.squareup.okio:okio", + "version": "1.13.0" + } + }, + { + "id": "org.joda:joda-convert@1.2", + "info": { + "name": "org.joda:joda-convert", + "version": "1.2" + } + }, + { + "id": "com.squareup.okhttp:logging-interceptor@2.7.5", + "info": { + "name": "com.squareup.okhttp:logging-interceptor", + "version": "2.7.5" + } + }, + { + "id": "io.sundr:builder-annotations@0.8.0", + "info": { + "name": "io.sundr:builder-annotations", + "version": "0.8.0" + } + }, + { + "id": "io.sundr:sundr-codegen@0.8.0", + "info": { + "name": "io.sundr:sundr-codegen", + "version": "0.8.0" + } + }, + { + "id": "io.sundr:sundr-core@0.8.0", + "info": { + "name": "io.sundr:sundr-core", + "version": "0.8.0" + } + }, + { + "id": "io.swagger:swagger-annotations@1.6.0", + "info": { + "name": "io.swagger:swagger-annotations", + "version": "1.6.0" + } + }, + { + "id": "com.microsoft.azure:adal4j@1.6.3", + "info": { + "name": "com.microsoft.azure:adal4j", + "version": "1.6.3" + } + }, + { + "id": "com.nimbusds:oauth2-oidc-sdk@5.64.4", + "info": { + "name": "com.nimbusds:oauth2-oidc-sdk", + "version": "5.64.4" + } + }, + { + "id": "com.github.stephenc.jcip:jcip-annotations@1.0-1", + "info": { + "name": "com.github.stephenc.jcip:jcip-annotations", + "version": "1.0-1" + } + }, + { + "id": "com.sun.mail:javax.mail@1.5.4", + "info": { + "name": "com.sun.mail:javax.mail", + "version": "1.5.4" + } + }, + { + "id": "com.nimbusds:nimbus-jose-jwt@5.5", + "info": { + "name": "com.nimbusds:nimbus-jose-jwt", + "version": "5.5" + } + }, + { + "id": "com.nimbusds:lang-tag@1.4.3", + "info": { + "name": "com.nimbusds:lang-tag", + "version": "1.4.3" + } + }, + { + "id": "com.squareup.okhttp:okhttp-ws@2.7.5", + "info": { + "name": "com.squareup.okhttp:okhttp-ws", + "version": "2.7.5" + } + }, + { + "id": "io.kubernetes:client-java-proto@3.0.0", + "info": { + "name": "io.kubernetes:client-java-proto", + "version": "3.0.0" + } + }, + { + "id": "lambdaisland:deep-diff2@2.0.108", + "info": { + "name": "lambdaisland:deep-diff2", + "version": "2.0.108" + } + }, + { + "id": "fipp:fipp@0.6.23", + "info": { + "name": "fipp:fipp", + "version": "0.6.23" + } + }, + { + "id": "org.clojure:core.rrb-vector@0.1.1", + "info": { + "name": "org.clojure:core.rrb-vector", + "version": "0.1.1" + } + }, + { + "id": "lambdaisland:clj-diff@1.1.58", + "info": { + "name": "lambdaisland:clj-diff", + "version": "1.1.58" + } + }, + { + "id": "mvxcvi:arrangement@1.2.1", + "info": { + "name": "mvxcvi:arrangement", + "version": "1.2.1" + } + }, + { + "id": "org.apache.commons:commons-collections4@4.1", + "info": { + "name": "org.apache.commons:commons-collections4", + "version": "4.1" + } + }, + { + "id": "//integrations/chartio:main@bazel", + "info": { + "name": "//integrations/chartio:main", + "version": "bazel" + } + }, + { + "id": "//integrations/google_data_studio:main@bazel", + "info": { + "name": "//integrations/google_data_studio:main", + "version": "bazel" + } + }, + { + "id": "//integrations/periscope:main@bazel", + "info": { + "name": "//integrations/periscope:main", + "version": "bazel" + } + }, + { + "id": "//warehouses/common:tasks@bazel", + "info": { + "name": "//warehouses/common:tasks", + "version": "bazel" + } + }, + { + "id": "//integrations/sigma_computing:main@bazel", + "info": { + "name": "//integrations/sigma_computing:main", + "version": "bazel" + } + }, + { + "id": "//integrations/sisense:main@bazel", + "info": { + "name": "//integrations/sisense:main", + "version": "bazel" + } + }, + { + "id": "//integrations/tableau:main@bazel", + "info": { + "name": "//integrations/tableau:main", + "version": "bazel" + } + }, + { + "id": "//integrations/looker:main@bazel", + "info": { + "name": "//integrations/looker:main", + "version": "bazel" + } + }, + { + "id": "//integrations/postgres2020:main@bazel", + "info": { + "name": "//integrations/postgres2020:main", + "version": "bazel" + } + }, + { + "id": "//geo:main@bazel", + "info": { + "name": "//geo:main", + "version": "bazel" + } + }, + { + "id": "//utils/binary:main@bazel", + "info": { + "name": "//utils/binary:main", + "version": "bazel" + } + }, + { + "id": "//integrations/configuration_tracker:main@bazel", + "info": { + "name": "//integrations/configuration_tracker:main", + "version": "bazel" + } + }, + { + "id": "com.google.cloud:google-cloud-bigquery@1.48.0", + "info": { + "name": "com.google.cloud:google-cloud-bigquery", + "version": "1.48.0" + } + }, + { + "id": "com.google.auto.value:auto-value@1.5.3", + "info": { + "name": "com.google.auto.value:auto-value", + "version": "1.5.3" + } + }, + { + "id": "org.jeasy:easy-rules-core@4.1.0", + "info": { + "name": "org.jeasy:easy-rules-core", + "version": "4.1.0" + } + }, + { + "id": "//services:ab_tests@bazel", + "info": { + "name": "//services:ab_tests", + "version": "bazel" + } + }, + { + "id": "//teleport:main@bazel", + "info": { + "name": "//teleport:main", + "version": "bazel" + } + }, + { + "id": "//utils/operations:main@bazel", + "info": { + "name": "//utils/operations:main", + "version": "bazel" + } + }, + { + "id": "//sources/bridge:main@bazel", + "info": { + "name": "//sources/bridge:main", + "version": "bazel" + } + }, + { + "id": "//api:connector_config_formatter@bazel", + "info": { + "name": "//api:connector_config_formatter", + "version": "bazel" + } + }, + { + "id": "//sources/form:main@bazel", + "info": { + "name": "//sources/form:main", + "version": "bazel" + } + }, + { + "id": "//warehouses/azure:main@bazel", + "info": { + "name": "//warehouses/azure:main", + "version": "bazel" + } + }, + { + "id": "//port_forwarder:azure@bazel", + "info": { + "name": "//port_forwarder:azure", + "version": "bazel" + } + }, + { + "id": "//warehouses/common-local:writer_parquet@bazel", + "info": { + "name": "//warehouses/common-local:writer_parquet", + "version": "bazel" + } + }, + { + "id": "org.apache.hadoop:hadoop-common@2.7.7", + "info": { + "name": "org.apache.hadoop:hadoop-common", + "version": "2.7.7" + } + }, + { + "id": "org.apache.htrace:htrace-core@3.1.0-incubating", + "info": { + "name": "org.apache.htrace:htrace-core", + "version": "3.1.0-incubating" + } + }, + { + "id": "xmlenc:xmlenc@0.52", + "info": { + "name": "xmlenc:xmlenc", + "version": "0.52" + } + }, + { + "id": "org.mortbay.jetty:jetty@6.1.26", + "info": { + "name": "org.mortbay.jetty:jetty", + "version": "6.1.26" + } + }, + { + "id": "org.mortbay.jetty:jetty-util@6.1.26", + "info": { + "name": "org.mortbay.jetty:jetty-util", + "version": "6.1.26" + } + }, + { + "id": "org.mortbay.jetty:servlet-api@2.5-20081211", + "info": { + "name": "org.mortbay.jetty:servlet-api", + "version": "2.5-20081211" + } + }, + { + "id": "net.java.dev.jets3t:jets3t@0.9.0", + "info": { + "name": "net.java.dev.jets3t:jets3t", + "version": "0.9.0" + } + }, + { + "id": "com.jamesmurty.utils:java-xmlbuilder@0.4", + "info": { + "name": "com.jamesmurty.utils:java-xmlbuilder", + "version": "0.4" + } + }, + { + "id": "org.codehaus.jackson:jackson-mapper-asl@1.9.13", + "info": { + "name": "org.codehaus.jackson:jackson-mapper-asl", + "version": "1.9.13" + } + }, + { + "id": "org.apache.curator:curator-client@2.7.1", + "info": { + "name": "org.apache.curator:curator-client", + "version": "2.7.1" + } + }, + { + "id": "org.apache.zookeeper:zookeeper@3.4.6", + "info": { + "name": "org.apache.zookeeper:zookeeper", + "version": "3.4.6" + } + }, + { + "id": "io.netty:netty@3.7.0.Final", + "info": { + "name": "io.netty:netty", + "version": "3.7.0.Final" + } + }, + { + "id": "log4j:log4j@1.2.17", + "info": { + "name": "log4j:log4j", + "version": "1.2.17" + } + }, + { + "id": "com.jcraft:jsch@0.1.54", + "info": { + "name": "com.jcraft:jsch", + "version": "0.1.54" + } + }, + { + "id": "com.sun.jersey:jersey-json@1.13", + "info": { + "name": "com.sun.jersey:jersey-json", + "version": "1.13" + } + }, + { + "id": "org.codehaus.jackson:jackson-xc@1.9.13", + "info": { + "name": "org.codehaus.jackson:jackson-xc", + "version": "1.9.13" + } + }, + { + "id": "org.codehaus.jettison:jettison@1.1", + "info": { + "name": "org.codehaus.jettison:jettison", + "version": "1.1" + } + }, + { + "id": "stax:stax-api@1.0.1", + "info": { + "name": "stax:stax-api", + "version": "1.0.1" + } + }, + { + "id": "org.codehaus.jackson:jackson-jaxrs@1.9.13", + "info": { + "name": "org.codehaus.jackson:jackson-jaxrs", + "version": "1.9.13" + } + }, + { + "id": "com.sun.jersey:jersey-core@1.13", + "info": { + "name": "com.sun.jersey:jersey-core", + "version": "1.13" + } + }, + { + "id": "org.mortbay.jetty:jetty-sslengine@6.1.26", + "info": { + "name": "org.mortbay.jetty:jetty-sslengine", + "version": "6.1.26" + } + }, + { + "id": "commons-cli:commons-cli@1.3.1", + "info": { + "name": "commons-cli:commons-cli", + "version": "1.3.1" + } + }, + { + "id": "org.apache.hadoop:hadoop-auth@2.7.7", + "info": { + "name": "org.apache.hadoop:hadoop-auth", + "version": "2.7.7" + } + }, + { + "id": "org.apache.directory.server:apacheds-kerberos-codec@2.0.0-M15", + "info": { + "name": "org.apache.directory.server:apacheds-kerberos-codec", + "version": "2.0.0-M15" + } + }, + { + "id": "org.apache.directory.api:api-asn1-api@1.0.0-M20", + "info": { + "name": "org.apache.directory.api:api-asn1-api", + "version": "1.0.0-M20" + } + }, + { + "id": "org.apache.directory.api:api-util@1.0.0-M20", + "info": { + "name": "org.apache.directory.api:api-util", + "version": "1.0.0-M20" + } + }, + { + "id": "org.apache.directory.server:apacheds-i18n@2.0.0-M15", + "info": { + "name": "org.apache.directory.server:apacheds-i18n", + "version": "2.0.0-M15" + } + }, + { + "id": "org.apache.curator:curator-framework@2.7.1", + "info": { + "name": "org.apache.curator:curator-framework", + "version": "2.7.1" + } + }, + { + "id": "javax.servlet.jsp:jsp-api@2.1", + "info": { + "name": "javax.servlet.jsp:jsp-api", + "version": "2.1" + } + }, + { + "id": "org.apache.curator:curator-recipes@2.7.1", + "info": { + "name": "org.apache.curator:curator-recipes", + "version": "2.7.1" + } + }, + { + "id": "commons-httpclient:commons-httpclient@3.1", + "info": { + "name": "commons-httpclient:commons-httpclient", + "version": "3.1" + } + }, + { + "id": "javax.servlet:servlet-api@2.5", + "info": { + "name": "javax.servlet:servlet-api", + "version": "2.5" + } + }, + { + "id": "com.sun.jersey:jersey-server@1.9", + "info": { + "name": "com.sun.jersey:jersey-server", + "version": "1.9" + } + }, + { + "id": "asm:asm@3.1", + "info": { + "name": "asm:asm", + "version": "3.1" + } + }, + { + "id": "org.apache.hadoop:hadoop-annotations@2.7.7", + "info": { + "name": "org.apache.hadoop:hadoop-annotations", + "version": "2.7.7" + } + }, + { + "id": "org.apache.hadoop:hadoop-mapreduce-client-core@2.7.7", + "info": { + "name": "org.apache.hadoop:hadoop-mapreduce-client-core", + "version": "2.7.7" + } + }, + { + "id": "com.google.inject.extensions:guice-servlet@3.0", + "info": { + "name": "com.google.inject.extensions:guice-servlet", + "version": "3.0" + } + }, + { + "id": "com.google.inject:guice@4.2.2", + "info": { + "name": "com.google.inject:guice", + "version": "4.2.2" + } + }, + { + "id": "aopalliance:aopalliance@1.0", + "info": { + "name": "aopalliance:aopalliance", + "version": "1.0" + } + }, + { + "id": "javax.inject:javax.inject@1", + "info": { + "name": "javax.inject:javax.inject", + "version": "1" + } + }, + { + "id": "org.apache.hadoop:hadoop-yarn-common@2.7.7", + "info": { + "name": "org.apache.hadoop:hadoop-yarn-common", + "version": "2.7.7" + } + }, + { + "id": "org.apache.hadoop:hadoop-yarn-api@2.7.7", + "info": { + "name": "org.apache.hadoop:hadoop-yarn-api", + "version": "2.7.7" + } + }, + { + "id": "com.sun.jersey:jersey-client@1.13", + "info": { + "name": "com.sun.jersey:jersey-client", + "version": "1.13" + } + }, + { + "id": "com.sun.jersey.contribs:jersey-guice@1.9", + "info": { + "name": "com.sun.jersey.contribs:jersey-guice", + "version": "1.9" + } + }, + { + "id": "org.apache.parquet:parquet-avro@1.12.2", + "info": { + "name": "org.apache.parquet:parquet-avro", + "version": "1.12.2" + } + }, + { + "id": "org.apache.parquet:parquet-column@1.12.2", + "info": { + "name": "org.apache.parquet:parquet-column", + "version": "1.12.2" + } + }, + { + "id": "org.apache.parquet:parquet-common@1.12.2", + "info": { + "name": "org.apache.parquet:parquet-common", + "version": "1.12.2" + } + }, + { + "id": "org.apache.parquet:parquet-format-structures@1.12.2", + "info": { + "name": "org.apache.parquet:parquet-format-structures", + "version": "1.12.2" + } + }, + { + "id": "org.apache.yetus:audience-annotations@0.12.0", + "info": { + "name": "org.apache.yetus:audience-annotations", + "version": "0.12.0" + } + }, + { + "id": "org.apache.parquet:parquet-encoding@1.12.2", + "info": { + "name": "org.apache.parquet:parquet-encoding", + "version": "1.12.2" + } + }, + { + "id": "org.apache.parquet:parquet-hadoop@1.12.2", + "info": { + "name": "org.apache.parquet:parquet-hadoop", + "version": "1.12.2" + } + }, + { + "id": "org.apache.parquet:parquet-jackson@1.12.2", + "info": { + "name": "org.apache.parquet:parquet-jackson", + "version": "1.12.2" + } + }, + { + "id": "commons-pool:commons-pool@1.6", + "info": { + "name": "commons-pool:commons-pool", + "version": "1.6" + } + }, + { + "id": "//warehouses/databricks:main@bazel", + "info": { + "name": "//warehouses/databricks:main", + "version": "bazel" + } + }, + { + "id": "//port_forwarder:databricks@bazel", + "info": { + "name": "//port_forwarder:databricks", + "version": "bazel" + } + }, + { + "id": "//warehouses/mysql:main@bazel", + "info": { + "name": "//warehouses/mysql:main", + "version": "bazel" + } + }, + { + "id": "//port_forwarder:mysql@bazel", + "info": { + "name": "//port_forwarder:mysql", + "version": "bazel" + } + }, + { + "id": "//warehouses/panoply:main@bazel", + "info": { + "name": "//warehouses/panoply:main", + "version": "bazel" + } + }, + { + "id": "//warehouses/redshift:main@bazel", + "info": { + "name": "//warehouses/redshift:main", + "version": "bazel" + } + }, + { + "id": "io.netty:netty-all@4.1.45.Final", + "info": { + "name": "io.netty:netty-all", + "version": "4.1.45.Final" + } + }, + { + "id": "@redshift_jdbc42//jar:jar@bazel", + "info": { + "name": "@redshift_jdbc42//jar:jar", + "version": "bazel" + } + }, + { + "id": "//warehouses/periscope:main@bazel", + "info": { + "name": "//warehouses/periscope:main", + "version": "bazel" + } + }, + { + "id": "//warehouses/postgres:main@bazel", + "info": { + "name": "//warehouses/postgres:main", + "version": "bazel" + } + }, + { + "id": "//integrations/db:setup_form_utils@bazel", + "info": { + "name": "//integrations/db:setup_form_utils", + "version": "bazel" + } + }, + { + "id": "//port_forwarder:postgres@bazel", + "info": { + "name": "//port_forwarder:postgres", + "version": "bazel" + } + }, + { + "id": "//warehouses/s3_data_lake:main@bazel", + "info": { + "name": "//warehouses/s3_data_lake:main", + "version": "bazel" + } + }, + { + "id": "org.apache.iceberg:iceberg-api@0.13.1", + "info": { + "name": "org.apache.iceberg:iceberg-api", + "version": "0.13.1" + } + }, + { + "id": "com.github.stephenc.findbugs:findbugs-annotations@1.3.9-1", + "info": { + "name": "com.github.stephenc.findbugs:findbugs-annotations", + "version": "1.3.9-1" + } + }, + { + "id": "org.apache.iceberg:iceberg-bundled-guava@0.13.1", + "info": { + "name": "org.apache.iceberg:iceberg-bundled-guava", + "version": "0.13.1" + } + }, + { + "id": "org.apache.iceberg:iceberg-core@0.13.1", + "info": { + "name": "org.apache.iceberg:iceberg-core", + "version": "0.13.1" + } + }, + { + "id": "org.roaringbitmap:RoaringBitmap@0.9.22", + "info": { + "name": "org.roaringbitmap:RoaringBitmap", + "version": "0.9.22" + } + }, + { + "id": "org.roaringbitmap:shims@0.9.22", + "info": { + "name": "org.roaringbitmap:shims", + "version": "0.9.22" + } + }, + { + "id": "com.github.ben-manes.caffeine:caffeine@2.8.4", + "info": { + "name": "com.github.ben-manes.caffeine:caffeine", + "version": "2.8.4" + } + }, + { + "id": "org.apache.iceberg:iceberg-common@0.13.1", + "info": { + "name": "org.apache.iceberg:iceberg-common", + "version": "0.13.1" + } + }, + { + "id": "org.apache.iceberg:iceberg-data@0.13.1", + "info": { + "name": "org.apache.iceberg:iceberg-data", + "version": "0.13.1" + } + }, + { + "id": "org.apache.orc:orc-core:jar:nohive@1.7.2", + "info": { + "name": "org.apache.orc:orc-core:jar:nohive", + "version": "1.7.2" + } + }, + { + "id": "io.airlift:aircompressor@0.9", + "info": { + "name": "io.airlift:aircompressor", + "version": "0.9" + } + }, + { + "id": "io.airlift:slice@0.10", + "info": { + "name": "io.airlift:slice", + "version": "0.10" + } + }, + { + "id": "org.apache.orc:orc-shims@1.7.2", + "info": { + "name": "org.apache.orc:orc-shims", + "version": "1.7.2" + } + }, + { + "id": "org.threeten:threeten-extra@0.9", + "info": { + "name": "org.threeten:threeten-extra", + "version": "0.9" + } + }, + { + "id": "org.apache.iceberg:iceberg-parquet@0.13.1", + "info": { + "name": "org.apache.iceberg:iceberg-parquet", + "version": "0.13.1" + } + }, + { + "id": "//warehouses/snowflake:main@bazel", + "info": { + "name": "//warehouses/snowflake:main", + "version": "bazel" + } + }, + { + "id": "//port_forwarder:snowflake@bazel", + "info": { + "name": "//port_forwarder:snowflake", + "version": "bazel" + } + }, + { + "id": "//warehouses/sql_server:main@bazel", + "info": { + "name": "//warehouses/sql_server:main", + "version": "bazel" + } + }, + { + "id": "//port_forwarder:sqlserver@bazel", + "info": { + "name": "//port_forwarder:sqlserver", + "version": "bazel" + } + }, + { + "id": "//integrations/adjust:main@bazel", + "info": { + "name": "//integrations/adjust:main", + "version": "bazel" + } + }, + { + "id": "//integrations/adobe_analytics:main@bazel", + "info": { + "name": "//integrations/adobe_analytics:main", + "version": "bazel" + } + }, + { + "id": "//integrations/bidirectional_cube:main@bazel", + "info": { + "name": "//integrations/bidirectional_cube:main", + "version": "bazel" + } + }, + { + "id": "//integrations/priority_sync:main@bazel", + "info": { + "name": "//integrations/priority_sync:main", + "version": "bazel" + } + }, + { + "id": "com.google.api-ads:ads-lib@4.4.0", + "info": { + "name": "com.google.api-ads:ads-lib", + "version": "4.4.0" + } + }, + { + "id": "com.google.inject.extensions:guice-multibindings@4.0", + "info": { + "name": "com.google.inject.extensions:guice-multibindings", + "version": "4.0" + } + }, + { + "id": "com.google.inject.extensions:guice-assistedinject@4.0", + "info": { + "name": "com.google.inject.extensions:guice-assistedinject", + "version": "4.0" + } + }, + { + "id": "net.sf.opencsv:opencsv@1.8", + "info": { + "name": "net.sf.opencsv:opencsv", + "version": "1.8" + } + }, + { + "id": "commons-beanutils:commons-beanutils@1.9.2", + "info": { + "name": "commons-beanutils:commons-beanutils", + "version": "1.9.2" + } + }, + { + "id": "com.beust:jcommander@1.82", + "info": { + "name": "com.beust:jcommander", + "version": "1.82" + } + }, + { + "id": "com.google.api-ads:adwords-axis@4.4.0", + "info": { + "name": "com.google.api-ads:adwords-axis", + "version": "4.4.0" + } + }, + { + "id": "com.google.api-ads:ads-lib-axis@4.4.0", + "info": { + "name": "com.google.api-ads:ads-lib-axis", + "version": "4.4.0" + } + }, + { + "id": "javax.xml:jaxrpc-api@1.1", + "info": { + "name": "javax.xml:jaxrpc-api", + "version": "1.1" + } + }, + { + "id": "wsdl4j:wsdl4j@1.6.2", + "info": { + "name": "wsdl4j:wsdl4j", + "version": "1.6.2" + } + }, + { + "id": "commons-discovery:commons-discovery@0.5", + "info": { + "name": "commons-discovery:commons-discovery", + "version": "0.5" + } + }, + { + "id": "org.apache.axis:axis@1.4", + "info": { + "name": "org.apache.axis:axis", + "version": "1.4" + } + }, + { + "id": "//integrations/adobe_analytics_data_feed:main@bazel", + "info": { + "name": "//integrations/adobe_analytics_data_feed:main", + "version": "bazel" + } + }, + { + "id": "//integrations/ftp:main@bazel", + "info": { + "name": "//integrations/ftp:main", + "version": "bazel" + } + }, + { + "id": "//integrations/file:main@bazel", + "info": { + "name": "//integrations/file:main", + "version": "bazel" + } + }, + { + "id": "com.fasterxml.util:java-merge-sort@1.0.0", + "info": { + "name": "com.fasterxml.util:java-merge-sort", + "version": "1.0.0" + } + }, + { + "id": "com.monitorjbl:xlsx-streamer@1.2.1", + "info": { + "name": "com.monitorjbl:xlsx-streamer", + "version": "1.2.1" + } + }, + { + "id": "org.apache.poi:ooxml-schemas@1.3", + "info": { + "name": "org.apache.poi:ooxml-schemas", + "version": "1.3" + } + }, + { + "id": "org.apache.xmlbeans:xmlbeans@2.6.0", + "info": { + "name": "org.apache.xmlbeans:xmlbeans", + "version": "2.6.0" + } + }, + { + "id": "org.apache.poi:poi-ooxml@3.17", + "info": { + "name": "org.apache.poi:poi-ooxml", + "version": "3.17" + } + }, + { + "id": "com.github.virtuald:curvesapi@1.04", + "info": { + "name": "com.github.virtuald:curvesapi", + "version": "1.04" + } + }, + { + "id": "org.apache.poi:poi@3.17", + "info": { + "name": "org.apache.poi:poi", + "version": "3.17" + } + }, + { + "id": "org.apache.poi:poi-ooxml-schemas@3.17", + "info": { + "name": "org.apache.poi:poi-ooxml-schemas", + "version": "3.17" + } + }, + { + "id": "com.rackspace.apache:xerces2-xsd11@2.11.1", + "info": { + "name": "com.rackspace.apache:xerces2-xsd11", + "version": "2.11.1" + } + }, + { + "id": "com.rackspace.eclipse.webtools.sourceediting:org.eclipse.wst.xml.xpath2.processor@2.1.100", + "info": { + "name": "com.rackspace.eclipse.webtools.sourceediting:org.eclipse.wst.xml.xpath2.processor", + "version": "2.1.100" + } + }, + { + "id": "edu.princeton.cup:java-cup@10k", + "info": { + "name": "edu.princeton.cup:java-cup", + "version": "10k" + } + }, + { + "id": "xml-resolver:xml-resolver@1.2", + "info": { + "name": "xml-resolver:xml-resolver", + "version": "1.2" + } + }, + { + "id": "xml-apis:xml-apis@1.4.01", + "info": { + "name": "xml-apis:xml-apis", + "version": "1.4.01" + } + }, + { + "id": "org.awaitility:awaitility@4.0.3", + "info": { + "name": "org.awaitility:awaitility", + "version": "4.0.3" + } + }, + { + "id": "//integrations/adp_workforce_now:main@bazel", + "info": { + "name": "//integrations/adp_workforce_now:main", + "version": "bazel" + } + }, + { + "id": "//ecomm:main@bazel", + "info": { + "name": "//ecomm:main", + "version": "bazel" + } + }, + { + "id": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-xml-provider@2.9.8", + "info": { + "name": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-xml-provider", + "version": "2.9.8" + } + }, + { + "id": "org.codehaus.woodstox:woodstox-core-asl@4.2.0", + "info": { + "name": "org.codehaus.woodstox:woodstox-core-asl", + "version": "4.2.0" + } + }, + { + "id": "//integrations/adroll:main@bazel", + "info": { + "name": "//integrations/adroll:main", + "version": "bazel" + } + }, + { + "id": "//integrations/adwords:main@bazel", + "info": { + "name": "//integrations/adwords:main", + "version": "bazel" + } + }, + { + "id": "//integrations/cube:main@bazel", + "info": { + "name": "//integrations/cube:main", + "version": "bazel" + } + }, + { + "id": "com.google.api-ads:google-ads@19.0.0", + "info": { + "name": "com.google.api-ads:google-ads", + "version": "19.0.0" + } + }, + { + "id": "com.google.auto.service:auto-service@1.0-rc2", + "info": { + "name": "com.google.auto.service:auto-service", + "version": "1.0-rc2" + } + }, + { + "id": "com.google.auto:auto-common@0.10", + "info": { + "name": "com.google.auto:auto-common", + "version": "0.10" + } + }, + { + "id": "com.google.api-ads:google-ads-codegen@19.0.0", + "info": { + "name": "com.google.api-ads:google-ads-codegen", + "version": "19.0.0" + } + }, + { + "id": "com.google.api-ads:google-ads-stubs-v11@19.0.0", + "info": { + "name": "com.google.api-ads:google-ads-stubs-v11", + "version": "19.0.0" + } + }, + { + "id": "com.google.api-ads:google-ads-stubs-lib@19.0.0", + "info": { + "name": "com.google.api-ads:google-ads-stubs-lib", + "version": "19.0.0" + } + }, + { + "id": "com.google.api-ads:google-ads-stubs-v10@19.0.0", + "info": { + "name": "com.google.api-ads:google-ads-stubs-v10", + "version": "19.0.0" + } + }, + { + "id": "com.google.api-ads:google-ads-stubs-v9@19.0.0", + "info": { + "name": "com.google.api-ads:google-ads-stubs-v9", + "version": "19.0.0" + } + }, + { + "id": "com.squareup:javapoet@1.11.1", + "info": { + "name": "com.squareup:javapoet", + "version": "1.11.1" + } + }, + { + "id": "org.reflections:reflections@0.9.12", + "info": { + "name": "org.reflections:reflections", + "version": "0.9.12" + } + }, + { + "id": "//integrations/google_ads:main@bazel", + "info": { + "name": "//integrations/google_ads:main", + "version": "bazel" + } + }, + { + "id": "//integrations/airtable:main@bazel", + "info": { + "name": "//integrations/airtable:main", + "version": "bazel" + } + }, + { + "id": "//integrations/amazon_ads:main@bazel", + "info": { + "name": "//integrations/amazon_ads:main", + "version": "bazel" + } + }, + { + "id": "//integrations/amplitude:main@bazel", + "info": { + "name": "//integrations/amplitude:main", + "version": "bazel" + } + }, + { + "id": "//integrations/anaplan:main@bazel", + "info": { + "name": "//integrations/anaplan:main", + "version": "bazel" + } + }, + { + "id": "//integrations/apple_search_ads:main@bazel", + "info": { + "name": "//integrations/apple_search_ads:main", + "version": "bazel" + } + }, + { + "id": "//integrations/appsflyer:main@bazel", + "info": { + "name": "//integrations/appsflyer:main", + "version": "bazel" + } + }, + { + "id": "//integrations/asana:main@bazel", + "info": { + "name": "//integrations/asana:main", + "version": "bazel" + } + }, + { + "id": "//integrations/aws_cloudtrail:main@bazel", + "info": { + "name": "//integrations/aws_cloudtrail:main", + "version": "bazel" + } + }, + { + "id": "//integrations/aws_inventory:main@bazel", + "info": { + "name": "//integrations/aws_inventory:main", + "version": "bazel" + } + }, + { + "id": "//integrations/azure_blob_storage:main@bazel", + "info": { + "name": "//integrations/azure_blob_storage:main", + "version": "bazel" + } + }, + { + "id": "//integrations/azure_consumer_file:main@bazel", + "info": { + "name": "//integrations/azure_consumer_file:main", + "version": "bazel" + } + }, + { + "id": "//integrations/azure_service_bus:main@bazel", + "info": { + "name": "//integrations/azure_service_bus:main", + "version": "bazel" + } + }, + { + "id": "//integrations/kafka:main@bazel", + "info": { + "name": "//integrations/kafka:main", + "version": "bazel" + } + }, + { + "id": "//shaded_dependencies/azure:azure_messaging_eventhubs_shaded@bazel", + "info": { + "name": "//shaded_dependencies/azure:azure_messaging_eventhubs_shaded", + "version": "bazel" + } + }, + { + "id": "io.confluent:kafka-protobuf-serializer@5.5.1", + "info": { + "name": "io.confluent:kafka-protobuf-serializer", + "version": "5.5.1" + } + }, + { + "id": "io.confluent:kafka-schema-serializer@5.5.1", + "info": { + "name": "io.confluent:kafka-schema-serializer", + "version": "5.5.1" + } + }, + { + "id": "io.confluent:common-config@5.5.1", + "info": { + "name": "io.confluent:common-config", + "version": "5.5.1" + } + }, + { + "id": "io.confluent:common-utils@5.5.1", + "info": { + "name": "io.confluent:common-utils", + "version": "5.5.1" + } + }, + { + "id": "io.confluent:kafka-schema-registry-client@5.5.1", + "info": { + "name": "io.confluent:kafka-schema-registry-client", + "version": "5.5.1" + } + }, + { + "id": "org.apache.kafka:kafka-clients@2.1.0", + "info": { + "name": "org.apache.kafka:kafka-clients", + "version": "2.1.0" + } + }, + { + "id": "org.lz4:lz4-java@1.8.0", + "info": { + "name": "org.lz4:lz4-java", + "version": "1.8.0" + } + }, + { + "id": "io.confluent:kafka-protobuf-provider@5.5.1", + "info": { + "name": "io.confluent:kafka-protobuf-provider", + "version": "5.5.1" + } + }, + { + "id": "com.squareup.wire:wire-schema@3.2.2", + "info": { + "name": "com.squareup.wire:wire-schema", + "version": "3.2.2" + } + }, + { + "id": "com.squareup.wire:wire-runtime@3.2.2", + "info": { + "name": "com.squareup.wire:wire-runtime", + "version": "3.2.2" + } + }, + { + "id": "org.jetbrains.kotlin:kotlin-stdlib-jdk8@1.3.71", + "info": { + "name": "org.jetbrains.kotlin:kotlin-stdlib-jdk8", + "version": "1.3.71" + } + }, + { + "id": "org.jetbrains.kotlin:kotlin-stdlib-jdk7@1.3.71", + "info": { + "name": "org.jetbrains.kotlin:kotlin-stdlib-jdk7", + "version": "1.3.71" + } + }, + { + "id": "//shaded_dependencies/azure:azure_core_shaded@bazel", + "info": { + "name": "//shaded_dependencies/azure:azure_core_shaded", + "version": "bazel" + } + }, + { + "id": "//shaded_dependencies/azure:azure_messaging_servicebus_shaded@bazel", + "info": { + "name": "//shaded_dependencies/azure:azure_messaging_servicebus_shaded", + "version": "bazel" + } + }, + { + "id": "//shaded_dependencies/azure:microsoft_azure_servicebus_shaded@bazel", + "info": { + "name": "//shaded_dependencies/azure:microsoft_azure_servicebus_shaded", + "version": "bazel" + } + }, + { + "id": "com.azure:azure-core-amqp@2.3.3", + "info": { + "name": "com.azure:azure-core-amqp", + "version": "2.3.3" + } + }, + { + "id": "com.azure:azure-core@1.21.0", + "info": { + "name": "com.azure:azure-core", + "version": "1.21.0" + } + }, + { + "id": "io.projectreactor:reactor-core@3.4.10", + "info": { + "name": "io.projectreactor:reactor-core", + "version": "3.4.10" + } + }, + { + "id": "com.fasterxml.jackson.core:jackson-annotations@2.12.5", + "info": { + "name": "com.fasterxml.jackson.core:jackson-annotations", + "version": "2.12.5" + } + }, + { + "id": "com.fasterxml.jackson.core:jackson-databind@2.12.5", + "info": { + "name": "com.fasterxml.jackson.core:jackson-databind", + "version": "2.12.5" + } + }, + { + "id": "com.fasterxml.jackson.core:jackson-core@2.12.5", + "info": { + "name": "com.fasterxml.jackson.core:jackson-core", + "version": "2.12.5" + } + }, + { + "id": "io.netty:netty-tcnative-boringssl-static@2.0.43.Final", + "info": { + "name": "io.netty:netty-tcnative-boringssl-static", + "version": "2.0.43.Final" + } + }, + { + "id": "org.slf4j:slf4j-api@1.7.32", + "info": { + "name": "org.slf4j:slf4j-api", + "version": "1.7.32" + } + }, + { + "id": "com.fasterxml.jackson.dataformat:jackson-dataformat-xml@2.12.5", + "info": { + "name": "com.fasterxml.jackson.dataformat:jackson-dataformat-xml", + "version": "2.12.5" + } + }, + { + "id": "com.fasterxml.jackson.module:jackson-module-jaxb-annotations@2.12.5", + "info": { + "name": "com.fasterxml.jackson.module:jackson-module-jaxb-annotations", + "version": "2.12.5" + } + }, + { + "id": "jakarta.activation:jakarta.activation-api@1.2.2", + "info": { + "name": "jakarta.activation:jakarta.activation-api", + "version": "1.2.2" + } + }, + { + "id": "jakarta.xml.bind:jakarta.xml.bind-api@2.3.3", + "info": { + "name": "jakarta.xml.bind:jakarta.xml.bind-api", + "version": "2.3.3" + } + }, + { + "id": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.12.5", + "info": { + "name": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310", + "version": "2.12.5" + } + }, + { + "id": "com.microsoft.azure:qpid-proton-j-extensions@1.2.4", + "info": { + "name": "com.microsoft.azure:qpid-proton-j-extensions", + "version": "1.2.4" + } + }, + { + "id": "org.apache.qpid:proton-j@0.33.8", + "info": { + "name": "org.apache.qpid:proton-j", + "version": "0.33.8" + } + }, + { + "id": "com.azure:azure-core-http-netty@1.11.1", + "info": { + "name": "com.azure:azure-core-http-netty", + "version": "1.11.1" + } + }, + { + "id": "io.netty:netty-handler-proxy@4.1.68.Final", + "info": { + "name": "io.netty:netty-handler-proxy", + "version": "4.1.68.Final" + } + }, + { + "id": "io.netty:netty-common@4.1.68.Final", + "info": { + "name": "io.netty:netty-common", + "version": "4.1.68.Final" + } + }, + { + "id": "io.netty:netty-codec@4.1.68.Final", + "info": { + "name": "io.netty:netty-codec", + "version": "4.1.68.Final" + } + }, + { + "id": "io.netty:netty-buffer@4.1.68.Final", + "info": { + "name": "io.netty:netty-buffer", + "version": "4.1.68.Final" + } + }, + { + "id": "io.netty:netty-transport@4.1.68.Final", + "info": { + "name": "io.netty:netty-transport", + "version": "4.1.68.Final" + } + }, + { + "id": "io.netty:netty-resolver@4.1.68.Final", + "info": { + "name": "io.netty:netty-resolver", + "version": "4.1.68.Final" + } + }, + { + "id": "io.netty:netty-codec-socks@4.1.68.Final", + "info": { + "name": "io.netty:netty-codec-socks", + "version": "4.1.68.Final" + } + }, + { + "id": "io.netty:netty-codec-http@4.1.68.Final", + "info": { + "name": "io.netty:netty-codec-http", + "version": "4.1.68.Final" + } + }, + { + "id": "io.netty:netty-handler@4.1.68.Final", + "info": { + "name": "io.netty:netty-handler", + "version": "4.1.68.Final" + } + }, + { + "id": "io.projectreactor.netty:reactor-netty-http@1.0.11", + "info": { + "name": "io.projectreactor.netty:reactor-netty-http", + "version": "1.0.11" + } + }, + { + "id": "io.projectreactor.netty:reactor-netty-core@1.0.11", + "info": { + "name": "io.projectreactor.netty:reactor-netty-core", + "version": "1.0.11" + } + }, + { + "id": "io.netty:netty-resolver-dns@4.1.68.Final", + "info": { + "name": "io.netty:netty-resolver-dns", + "version": "4.1.68.Final" + } + }, + { + "id": "io.netty:netty-codec-dns@4.1.68.Final", + "info": { + "name": "io.netty:netty-codec-dns", + "version": "4.1.68.Final" + } + }, + { + "id": "io.netty:netty-transport-native-epoll:jar:linux-x86_64@4.1.68.Final", + "info": { + "name": "io.netty:netty-transport-native-epoll:jar:linux-x86_64", + "version": "4.1.68.Final" + } + }, + { + "id": "io.netty:netty-transport-native-unix-common@4.1.68.Final", + "info": { + "name": "io.netty:netty-transport-native-unix-common", + "version": "4.1.68.Final" + } + }, + { + "id": "io.netty:netty-resolver-dns-native-macos:jar:osx-x86_64@4.1.68.Final", + "info": { + "name": "io.netty:netty-resolver-dns-native-macos:jar:osx-x86_64", + "version": "4.1.68.Final" + } + }, + { + "id": "io.netty:netty-codec-http2@4.1.68.Final", + "info": { + "name": "io.netty:netty-codec-http2", + "version": "4.1.68.Final" + } + }, + { + "id": "io.netty:netty-transport-native-kqueue:jar:osx-x86_64@4.1.68.Final", + "info": { + "name": "io.netty:netty-transport-native-kqueue:jar:osx-x86_64", + "version": "4.1.68.Final" + } + }, + { + "id": "//integrations/big_commerce:main@bazel", + "info": { + "name": "//integrations/big_commerce:main", + "version": "bazel" + } + }, + { + "id": "//integrations/bingads:main@bazel", + "info": { + "name": "//integrations/bingads:main", + "version": "bazel" + } + }, + { + "id": "//xml_util:main@bazel", + "info": { + "name": "//xml_util:main", + "version": "bazel" + } + }, + { + "id": "com.microsoft.bingads:microsoft.bingads@12.0.3", + "info": { + "name": "com.microsoft.bingads:microsoft.bingads", + "version": "12.0.3" + } + }, + { + "id": "com.googlecode.jcsv:jcsv@1.4.0", + "info": { + "name": "com.googlecode.jcsv:jcsv", + "version": "1.4.0" + } + }, + { + "id": "org.apache.cxf:cxf-rt-transports-http@3.2.14", + "info": { + "name": "org.apache.cxf:cxf-rt-transports-http", + "version": "3.2.14" + } + }, + { + "id": "org.apache.cxf:cxf-core@3.2.14", + "info": { + "name": "org.apache.cxf:cxf-core", + "version": "3.2.14" + } + }, + { + "id": "org.apache.ws.xmlschema:xmlschema-core@2.2.5", + "info": { + "name": "org.apache.ws.xmlschema:xmlschema-core", + "version": "2.2.5" + } + }, + { + "id": "org.apache.cxf:cxf-rt-frontend-jaxws@3.2.14", + "info": { + "name": "org.apache.cxf:cxf-rt-frontend-jaxws", + "version": "3.2.14" + } + }, + { + "id": "org.apache.cxf:cxf-rt-ws-addr@3.2.14", + "info": { + "name": "org.apache.cxf:cxf-rt-ws-addr", + "version": "3.2.14" + } + }, + { + "id": "org.apache.cxf:cxf-rt-bindings-soap@3.2.14", + "info": { + "name": "org.apache.cxf:cxf-rt-bindings-soap", + "version": "3.2.14" + } + }, + { + "id": "org.apache.cxf:cxf-rt-databinding-jaxb@3.2.14", + "info": { + "name": "org.apache.cxf:cxf-rt-databinding-jaxb", + "version": "3.2.14" + } + }, + { + "id": "org.apache.cxf:cxf-rt-wsdl@3.2.14", + "info": { + "name": "org.apache.cxf:cxf-rt-wsdl", + "version": "3.2.14" + } + }, + { + "id": "org.apache.cxf:cxf-rt-ws-policy@3.2.14", + "info": { + "name": "org.apache.cxf:cxf-rt-ws-policy", + "version": "3.2.14" + } + }, + { + "id": "org.apache.neethi:neethi@3.1.1", + "info": { + "name": "org.apache.neethi:neethi", + "version": "3.1.1" + } + }, + { + "id": "org.apache.cxf:cxf-rt-bindings-xml@3.2.14", + "info": { + "name": "org.apache.cxf:cxf-rt-bindings-xml", + "version": "3.2.14" + } + }, + { + "id": "org.apache.cxf:cxf-rt-frontend-simple@3.2.14", + "info": { + "name": "org.apache.cxf:cxf-rt-frontend-simple", + "version": "3.2.14" + } + }, + { + "id": "org.apache.httpcomponents:httpmime@4.5.13", + "info": { + "name": "org.apache.httpcomponents:httpmime", + "version": "4.5.13" + } + }, + { + "id": "//integrations/box:main@bazel", + "info": { + "name": "//integrations/box:main", + "version": "bazel" + } + }, + { + "id": "//integrations/braintree:main@bazel", + "info": { + "name": "//integrations/braintree:main", + "version": "bazel" + } + }, + { + "id": "com.braintreepayments.gateway:braintree-java@2.108.0", + "info": { + "name": "com.braintreepayments.gateway:braintree-java", + "version": "2.108.0" + } + }, + { + "id": "com.fasterxml.jackson.jr:jackson-jr-objects@2.9.9", + "info": { + "name": "com.fasterxml.jackson.jr:jackson-jr-objects", + "version": "2.9.9" + } + }, + { + "id": "org.apache.commons:commons-csv@1.8", + "info": { + "name": "org.apache.commons:commons-csv", + "version": "1.8" + } + }, + { + "id": "org.osgi:org.osgi.core@4.2.0", + "info": { + "name": "org.osgi:org.osgi.core", + "version": "4.2.0" + } + }, + { + "id": "//integrations/branch:main@bazel", + "info": { + "name": "//integrations/branch:main", + "version": "bazel" + } + }, + { + "id": "//integrations/business_central:main@bazel", + "info": { + "name": "//integrations/business_central:main", + "version": "bazel" + } + }, + { + "id": "//integrations/cloudfront:main@bazel", + "info": { + "name": "//integrations/cloudfront:main", + "version": "bazel" + } + }, + { + "id": "//integrations/s3:main@bazel", + "info": { + "name": "//integrations/s3:main", + "version": "bazel" + } + }, + { + "id": "//integrations/coupa:main@bazel", + "info": { + "name": "//integrations/coupa:main", + "version": "bazel" + } + }, + { + "id": "//integrations/criteo:main@bazel", + "info": { + "name": "//integrations/criteo:main", + "version": "bazel" + } + }, + { + "id": "//integrations/db2:main@bazel", + "info": { + "name": "//integrations/db2:main", + "version": "bazel" + } + }, + { + "id": "//utils/byte_array_list:main@bazel", + "info": { + "name": "//utils/byte_array_list:main", + "version": "bazel" + } + }, + { + "id": "//integrations/document:main@bazel", + "info": { + "name": "//integrations/document:main", + "version": "bazel" + } + }, + { + "id": "//integrations/mongo:main@bazel", + "info": { + "name": "//integrations/mongo:main", + "version": "bazel" + } + }, + { + "id": "dnsjava:dnsjava@3.0.2", + "info": { + "name": "dnsjava:dnsjava", + "version": "3.0.2" + } + }, + { + "id": "io.opentelemetry:opentelemetry-api@0.13.1", + "info": { + "name": "io.opentelemetry:opentelemetry-api", + "version": "0.13.1" + } + }, + { + "id": "io.opentelemetry:opentelemetry-api-metrics@0.13.0-alpha", + "info": { + "name": "io.opentelemetry:opentelemetry-api-metrics", + "version": "0.13.0-alpha" + } + }, + { + "id": "io.opentelemetry:opentelemetry-api-common@0.13.1", + "info": { + "name": "io.opentelemetry:opentelemetry-api-common", + "version": "0.13.1" + } + }, + { + "id": "io.opentelemetry:opentelemetry-context@0.13.1", + "info": { + "name": "io.opentelemetry:opentelemetry-context", + "version": "0.13.1" + } + }, + { + "id": "io.opentelemetry:opentelemetry-api-trace@0.13.1", + "info": { + "name": "io.opentelemetry:opentelemetry-api-trace", + "version": "0.13.1" + } + }, + { + "id": "io.opentelemetry:opentelemetry-api-baggage@0.13.1", + "info": { + "name": "io.opentelemetry:opentelemetry-api-baggage", + "version": "0.13.1" + } + }, + { + "id": "io.opentelemetry:opentelemetry-extension-annotations@0.13.1", + "info": { + "name": "io.opentelemetry:opentelemetry-extension-annotations", + "version": "0.13.1" + } + }, + { + "id": "org.mongodb:mongo-java-driver@3.12.0", + "info": { + "name": "org.mongodb:mongo-java-driver", + "version": "3.12.0" + } + }, + { + "id": "//integrations/double_click_campaign_manager:main@bazel", + "info": { + "name": "//integrations/double_click_campaign_manager:main", + "version": "bazel" + } + }, + { + "id": "//integrations/dropbox:main@bazel", + "info": { + "name": "//integrations/dropbox:main", + "version": "bazel" + } + }, + { + "id": "com.dropbox.core:dropbox-core-sdk@4.0.0", + "info": { + "name": "com.dropbox.core:dropbox-core-sdk", + "version": "4.0.0" + } + }, + { + "id": "//integrations/dummy_postgres:main@bazel", + "info": { + "name": "//integrations/dummy_postgres:main", + "version": "bazel" + } + }, + { + "id": "//integrations/dynamics365:main@bazel", + "info": { + "name": "//integrations/dynamics365:main", + "version": "bazel" + } + }, + { + "id": "//integrations/dynamodb:main@bazel", + "info": { + "name": "//integrations/dynamodb:main", + "version": "bazel" + } + }, + { + "id": "@acmecorp_amazon_kinesis_client//:main@bazel", + "info": { + "name": "@acmecorp_amazon_kinesis_client//:main", + "version": "bazel" + } + }, + { + "id": "com.amazonaws:aws-java-sdk-kinesis@1.12.84", + "info": { + "name": "com.amazonaws:aws-java-sdk-kinesis", + "version": "1.12.84" + } + }, + { + "id": "com.amazonaws:dynamodb-streams-kinesis-adapter@1.4.0", + "info": { + "name": "com.amazonaws:dynamodb-streams-kinesis-adapter", + "version": "1.4.0" + } + }, + { + "id": "com.amazonaws:amazon-kinesis-client@1.13.0", + "info": { + "name": "com.amazonaws:amazon-kinesis-client", + "version": "1.13.0" + } + }, + { + "id": "//integrations/elasticsearch:main@bazel", + "info": { + "name": "//integrations/elasticsearch:main", + "version": "bazel" + } + }, + { + "id": "org.apache.lucene:lucene-core@8.9.0", + "info": { + "name": "org.apache.lucene:lucene-core", + "version": "8.9.0" + } + }, + { + "id": "org.elasticsearch.client:elasticsearch-rest-client@7.14.0", + "info": { + "name": "org.elasticsearch.client:elasticsearch-rest-client", + "version": "7.14.0" + } + }, + { + "id": "org.apache.httpcomponents:httpcore-nio@4.4.13", + "info": { + "name": "org.apache.httpcomponents:httpcore-nio", + "version": "4.4.13" + } + }, + { + "id": "org.apache.httpcomponents:httpasyncclient@4.1.4", + "info": { + "name": "org.apache.httpcomponents:httpasyncclient", + "version": "4.1.4" + } + }, + { + "id": "org.elasticsearch.client:elasticsearch-rest-high-level-client@7.14.0", + "info": { + "name": "org.elasticsearch.client:elasticsearch-rest-high-level-client", + "version": "7.14.0" + } + }, + { + "id": "org.elasticsearch.plugin:parent-join-client@7.14.0", + "info": { + "name": "org.elasticsearch.plugin:parent-join-client", + "version": "7.14.0" + } + }, + { + "id": "org.elasticsearch.plugin:lang-mustache-client@7.14.0", + "info": { + "name": "org.elasticsearch.plugin:lang-mustache-client", + "version": "7.14.0" + } + }, + { + "id": "com.github.spullara.mustache.java:compiler@0.9.6", + "info": { + "name": "com.github.spullara.mustache.java:compiler", + "version": "0.9.6" + } + }, + { + "id": "org.elasticsearch.plugin:aggs-matrix-stats-client@7.14.0", + "info": { + "name": "org.elasticsearch.plugin:aggs-matrix-stats-client", + "version": "7.14.0" + } + }, + { + "id": "org.elasticsearch.plugin:mapper-extras-client@7.14.0", + "info": { + "name": "org.elasticsearch.plugin:mapper-extras-client", + "version": "7.14.0" + } + }, + { + "id": "org.elasticsearch:elasticsearch@7.14.0", + "info": { + "name": "org.elasticsearch:elasticsearch", + "version": "7.14.0" + } + }, + { + "id": "org.apache.lucene:lucene-suggest@8.9.0", + "info": { + "name": "org.apache.lucene:lucene-suggest", + "version": "8.9.0" + } + }, + { + "id": "org.elasticsearch:jna@5.7.0-1", + "info": { + "name": "org.elasticsearch:jna", + "version": "5.7.0-1" + } + }, + { + "id": "org.apache.lucene:lucene-highlighter@8.9.0", + "info": { + "name": "org.apache.lucene:lucene-highlighter", + "version": "8.9.0" + } + }, + { + "id": "com.tdunning:t-digest@3.2", + "info": { + "name": "com.tdunning:t-digest", + "version": "3.2" + } + }, + { + "id": "org.elasticsearch:elasticsearch-cli@7.14.0", + "info": { + "name": "org.elasticsearch:elasticsearch-cli", + "version": "7.14.0" + } + }, + { + "id": "org.elasticsearch:elasticsearch-core@7.14.0", + "info": { + "name": "org.elasticsearch:elasticsearch-core", + "version": "7.14.0" + } + }, + { + "id": "org.elasticsearch:elasticsearch-x-content@7.14.0", + "info": { + "name": "org.elasticsearch:elasticsearch-x-content", + "version": "7.14.0" + } + }, + { + "id": "org.apache.lucene:lucene-grouping@8.9.0", + "info": { + "name": "org.apache.lucene:lucene-grouping", + "version": "8.9.0" + } + }, + { + "id": "org.apache.lucene:lucene-join@8.9.0", + "info": { + "name": "org.apache.lucene:lucene-join", + "version": "8.9.0" + } + }, + { + "id": "org.apache.logging.log4j:log4j-api@2.17.1", + "info": { + "name": "org.apache.logging.log4j:log4j-api", + "version": "2.17.1" + } + }, + { + "id": "com.carrotsearch:hppc@0.8.1", + "info": { + "name": "com.carrotsearch:hppc", + "version": "0.8.1" + } + }, + { + "id": "org.apache.lucene:lucene-sandbox@8.9.0", + "info": { + "name": "org.apache.lucene:lucene-sandbox", + "version": "8.9.0" + } + }, + { + "id": "org.apache.lucene:lucene-backward-codecs@8.9.0", + "info": { + "name": "org.apache.lucene:lucene-backward-codecs", + "version": "8.9.0" + } + }, + { + "id": "org.apache.lucene:lucene-spatial-extras@8.9.0", + "info": { + "name": "org.apache.lucene:lucene-spatial-extras", + "version": "8.9.0" + } + }, + { + "id": "org.apache.lucene:lucene-spatial3d@8.9.0", + "info": { + "name": "org.apache.lucene:lucene-spatial3d", + "version": "8.9.0" + } + }, + { + "id": "org.apache.lucene:lucene-misc@8.9.0", + "info": { + "name": "org.apache.lucene:lucene-misc", + "version": "8.9.0" + } + }, + { + "id": "org.elasticsearch:elasticsearch-geo@7.14.0", + "info": { + "name": "org.elasticsearch:elasticsearch-geo", + "version": "7.14.0" + } + }, + { + "id": "org.apache.lucene:lucene-analyzers-common@8.9.0", + "info": { + "name": "org.apache.lucene:lucene-analyzers-common", + "version": "8.9.0" + } + }, + { + "id": "org.apache.lucene:lucene-memory@8.9.0", + "info": { + "name": "org.apache.lucene:lucene-memory", + "version": "8.9.0" + } + }, + { + "id": "org.apache.lucene:lucene-queries@8.9.0", + "info": { + "name": "org.apache.lucene:lucene-queries", + "version": "8.9.0" + } + }, + { + "id": "org.elasticsearch:elasticsearch-secure-sm@7.14.0", + "info": { + "name": "org.elasticsearch:elasticsearch-secure-sm", + "version": "7.14.0" + } + }, + { + "id": "org.elasticsearch:elasticsearch-plugin-classloader@7.14.0", + "info": { + "name": "org.elasticsearch:elasticsearch-plugin-classloader", + "version": "7.14.0" + } + }, + { + "id": "org.apache.lucene:lucene-queryparser@8.9.0", + "info": { + "name": "org.apache.lucene:lucene-queryparser", + "version": "8.9.0" + } + }, + { + "id": "org.elasticsearch.plugin:rank-eval-client@7.14.0", + "info": { + "name": "org.elasticsearch.plugin:rank-eval-client", + "version": "7.14.0" + } + }, + { + "id": "org.opensearch.client:opensearch-rest-client@1.1.0", + "info": { + "name": "org.opensearch.client:opensearch-rest-client", + "version": "1.1.0" + } + }, + { + "id": "org.opensearch.client:opensearch-rest-high-level-client@1.1.0", + "info": { + "name": "org.opensearch.client:opensearch-rest-high-level-client", + "version": "1.1.0" + } + }, + { + "id": "org.opensearch.plugin:aggs-matrix-stats-client@1.1.0", + "info": { + "name": "org.opensearch.plugin:aggs-matrix-stats-client", + "version": "1.1.0" + } + }, + { + "id": "org.opensearch.plugin:lang-mustache-client@1.1.0", + "info": { + "name": "org.opensearch.plugin:lang-mustache-client", + "version": "1.1.0" + } + }, + { + "id": "org.opensearch.plugin:mapper-extras-client@1.1.0", + "info": { + "name": "org.opensearch.plugin:mapper-extras-client", + "version": "1.1.0" + } + }, + { + "id": "org.opensearch:opensearch@1.1.0", + "info": { + "name": "org.opensearch:opensearch", + "version": "1.1.0" + } + }, + { + "id": "org.opensearch:opensearch-cli@1.1.0", + "info": { + "name": "org.opensearch:opensearch-cli", + "version": "1.1.0" + } + }, + { + "id": "org.opensearch:opensearch-core@1.1.0", + "info": { + "name": "org.opensearch:opensearch-core", + "version": "1.1.0" + } + }, + { + "id": "org.opensearch:opensearch-geo@1.1.0", + "info": { + "name": "org.opensearch:opensearch-geo", + "version": "1.1.0" + } + }, + { + "id": "org.opensearch:opensearch-secure-sm@1.1.0", + "info": { + "name": "org.opensearch:opensearch-secure-sm", + "version": "1.1.0" + } + }, + { + "id": "org.opensearch:opensearch-x-content@1.1.0", + "info": { + "name": "org.opensearch:opensearch-x-content", + "version": "1.1.0" + } + }, + { + "id": "org.opensearch.plugin:rank-eval-client@1.1.0", + "info": { + "name": "org.opensearch.plugin:rank-eval-client", + "version": "1.1.0" + } + }, + { + "id": "org.opensearch.plugin:parent-join-client@1.1.0", + "info": { + "name": "org.opensearch.plugin:parent-join-client", + "version": "1.1.0" + } + }, + { + "id": "//integrations/eloqua:main@bazel", + "info": { + "name": "//integrations/eloqua:main", + "version": "bazel" + } + }, + { + "id": "//integrations/email:main@bazel", + "info": { + "name": "//integrations/email:main", + "version": "bazel" + } + }, + { + "id": "javax.mail:mail@1.4.5", + "info": { + "name": "javax.mail:mail", + "version": "1.4.5" + } + }, + { + "id": "//integrations/facebook:main@bazel", + "info": { + "name": "//integrations/facebook:main", + "version": "bazel" + } + }, + { + "id": "//integrations/acmecorp_log:main@bazel", + "info": { + "name": "//integrations/acmecorp_log:main", + "version": "bazel" + } + }, + { + "id": "org.apache.logging.log4j:log4j-core@2.17.1", + "info": { + "name": "org.apache.logging.log4j:log4j-core", + "version": "2.17.1" + } + }, + { + "id": "//integrations/freshdesk:main@bazel", + "info": { + "name": "//integrations/freshdesk:main", + "version": "bazel" + } + }, + { + "id": "//integrations/freshservice_classic:main@bazel", + "info": { + "name": "//integrations/freshservice_classic:main", + "version": "bazel" + } + }, + { + "id": "//integrations/front:main@bazel", + "info": { + "name": "//integrations/front:main", + "version": "bazel" + } + }, + { + "id": "//integrations/functions/aws_lambda:main@bazel", + "info": { + "name": "//integrations/functions/aws_lambda:main", + "version": "bazel" + } + }, + { + "id": "//integrations/functions/common:main@bazel", + "info": { + "name": "//integrations/functions/common:main", + "version": "bazel" + } + }, + { + "id": "com.amazonaws:aws-java-sdk-lambda@1.12.84", + "info": { + "name": "com.amazonaws:aws-java-sdk-lambda", + "version": "1.12.84" + } + }, + { + "id": "//integrations/functions/azure_function:main@bazel", + "info": { + "name": "//integrations/functions/azure_function:main", + "version": "bazel" + } + }, + { + "id": "//integrations/functions/google_cloud_function:main@bazel", + "info": { + "name": "//integrations/functions/google_cloud_function:main", + "version": "bazel" + } + }, + { + "id": "//integrations/gcs:main@bazel", + "info": { + "name": "//integrations/gcs:main", + "version": "bazel" + } + }, + { + "id": "//integrations/gainsight_customer_success:main@bazel", + "info": { + "name": "//integrations/gainsight_customer_success:main", + "version": "bazel" + } + }, + { + "id": "//integrations/gdrive:main@bazel", + "info": { + "name": "//integrations/gdrive:main", + "version": "bazel" + } + }, + { + "id": "//integrations/gsheets:main@bazel", + "info": { + "name": "//integrations/gsheets:main", + "version": "bazel" + } + }, + { + "id": "com.google.apis:google-api-services-drive@v3-rev197-1.25.0", + "info": { + "name": "com.google.apis:google-api-services-drive", + "version": "v3-rev197-1.25.0" + } + }, + { + "id": "com.google.oauth-client:google-oauth-client-jetty@1.23.0", + "info": { + "name": "com.google.oauth-client:google-oauth-client-jetty", + "version": "1.23.0" + } + }, + { + "id": "com.google.oauth-client:google-oauth-client-java6@1.23.0", + "info": { + "name": "com.google.oauth-client:google-oauth-client-java6", + "version": "1.23.0" + } + }, + { + "id": "//integrations/github:main@bazel", + "info": { + "name": "//integrations/github:main", + "version": "bazel" + } + }, + { + "id": "//integrations/google_ad_manager:main@bazel", + "info": { + "name": "//integrations/google_ad_manager:main", + "version": "bazel" + } + }, + { + "id": "//integrations/google_analytics:main@bazel", + "info": { + "name": "//integrations/google_analytics:main", + "version": "bazel" + } + }, + { + "id": "//util:rest_api@bazel", + "info": { + "name": "//util:rest_api", + "version": "bazel" + } + }, + { + "id": "//utils/time:acmecorp_clock@bazel", + "info": { + "name": "//utils/time:acmecorp_clock", + "version": "bazel" + } + }, + { + "id": "//utils/token_api:main@bazel", + "info": { + "name": "//utils/token_api:main", + "version": "bazel" + } + }, + { + "id": "//integrations/google_analytics_4:main@bazel", + "info": { + "name": "//integrations/google_analytics_4:main", + "version": "bazel" + } + }, + { + "id": "//integrations/google_analytics_4_export:main@bazel", + "info": { + "name": "//integrations/google_analytics_4_export:main", + "version": "bazel" + } + }, + { + "id": "//integrations/google_analytics_360:main@bazel", + "info": { + "name": "//integrations/google_analytics_360:main", + "version": "bazel" + } + }, + { + "id": "//integrations/google_display_and_video_360:main@bazel", + "info": { + "name": "//integrations/google_display_and_video_360:main", + "version": "bazel" + } + }, + { + "id": "//integrations/google_search_ads_360:main@bazel", + "info": { + "name": "//integrations/google_search_ads_360:main", + "version": "bazel" + } + }, + { + "id": "//integrations/google_play:main@bazel", + "info": { + "name": "//integrations/google_play:main", + "version": "bazel" + } + }, + { + "id": "//integrations/google_search_console:main@bazel", + "info": { + "name": "//integrations/google_search_console:main", + "version": "bazel" + } + }, + { + "id": "//integrations/greenhouse:main@bazel", + "info": { + "name": "//integrations/greenhouse:main", + "version": "bazel" + } + }, + { + "id": "//integrations/heap:main@bazel", + "info": { + "name": "//integrations/heap:main", + "version": "bazel" + } + }, + { + "id": "//integrations/height:main@bazel", + "info": { + "name": "//integrations/height:main", + "version": "bazel" + } + }, + { + "id": "//integrations/helpscout:main@bazel", + "info": { + "name": "//integrations/helpscout:main", + "version": "bazel" + } + }, + { + "id": "//integrations/hubspot:main@bazel", + "info": { + "name": "//integrations/hubspot:main", + "version": "bazel" + } + }, + { + "id": "//integrations/instagram:main@bazel", + "info": { + "name": "//integrations/instagram:main", + "version": "bazel" + } + }, + { + "id": "org.assertj:assertj-core@3.14.0", + "info": { + "name": "org.assertj:assertj-core", + "version": "3.14.0" + } + }, + { + "id": "//integrations/intercom:main@bazel", + "info": { + "name": "//integrations/intercom:main", + "version": "bazel" + } + }, + { + "id": "//integrations/iterable:main@bazel", + "info": { + "name": "//integrations/iterable:main", + "version": "bazel" + } + }, + { + "id": "//integrations/itunes_connect:main@bazel", + "info": { + "name": "//integrations/itunes_connect:main", + "version": "bazel" + } + }, + { + "id": "//dockerized/google_cloud/datastore:main@bazel", + "info": { + "name": "//dockerized/google_cloud/datastore:main", + "version": "bazel" + } + }, + { + "id": "net.lingala.zip4j:zip4j@1.3.2", + "info": { + "name": "net.lingala.zip4j:zip4j", + "version": "1.3.2" + } + }, + { + "id": "//integrations/jira:main@bazel", + "info": { + "name": "//integrations/jira:main", + "version": "bazel" + } + }, + { + "id": "//core_implementation:standard_renaming_filter_2@bazel", + "info": { + "name": "//core_implementation:standard_renaming_filter_2", + "version": "bazel" + } + }, + { + "id": "//integrations/kinesis:main@bazel", + "info": { + "name": "//integrations/kinesis:main", + "version": "bazel" + } + }, + { + "id": "//integrations/klaviyo:main@bazel", + "info": { + "name": "//integrations/klaviyo:main", + "version": "bazel" + } + }, + { + "id": "//integrations/kustomer:main@bazel", + "info": { + "name": "//integrations/kustomer:main", + "version": "bazel" + } + }, + { + "id": "//integrations/lever:main@bazel", + "info": { + "name": "//integrations/lever:main", + "version": "bazel" + } + }, + { + "id": "//integrations/lightspeed_retail:main@bazel", + "info": { + "name": "//integrations/lightspeed_retail:main", + "version": "bazel" + } + }, + { + "id": "//integrations/linkedin:main@bazel", + "info": { + "name": "//integrations/linkedin:main", + "version": "bazel" + } + }, + { + "id": "//integrations/mailchimp:main@bazel", + "info": { + "name": "//integrations/mailchimp:main", + "version": "bazel" + } + }, + { + "id": "//integrations/mandrill:main@bazel", + "info": { + "name": "//integrations/mandrill:main", + "version": "bazel" + } + }, + { + "id": "//integrations/marin:main@bazel", + "info": { + "name": "//integrations/marin:main", + "version": "bazel" + } + }, + { + "id": "//integrations/sftp:main@bazel", + "info": { + "name": "//integrations/sftp:main", + "version": "bazel" + } + }, + { + "id": "//integrations/marketo:main@bazel", + "info": { + "name": "//integrations/marketo:main", + "version": "bazel" + } + }, + { + "id": "//size:main@bazel", + "info": { + "name": "//size:main", + "version": "bazel" + } + }, + { + "id": "com.sun.xml.messaging.saaj:saaj-impl@1.3.25", + "info": { + "name": "com.sun.xml.messaging.saaj:saaj-impl", + "version": "1.3.25" + } + }, + { + "id": "org.jvnet.mimepull:mimepull@1.9.6", + "info": { + "name": "org.jvnet.mimepull:mimepull", + "version": "1.9.6" + } + }, + { + "id": "org.jvnet.staxex:stax-ex@1.7.7", + "info": { + "name": "org.jvnet.staxex:stax-ex", + "version": "1.7.7" + } + }, + { + "id": "//integrations/mavenlink:main@bazel", + "info": { + "name": "//integrations/mavenlink:main", + "version": "bazel" + } + }, + { + "id": "//integrations/medallia:main@bazel", + "info": { + "name": "//integrations/medallia:main", + "version": "bazel" + } + }, + { + "id": "//http_client:main@bazel", + "info": { + "name": "//http_client:main", + "version": "bazel" + } + }, + { + "id": "io.github.resilience4j:resilience4j-core@1.7.1", + "info": { + "name": "io.github.resilience4j:resilience4j-core", + "version": "1.7.1" + } + }, + { + "id": "io.vavr:vavr@0.10.2", + "info": { + "name": "io.vavr:vavr", + "version": "0.10.2" + } + }, + { + "id": "io.vavr:vavr-match@0.10.2", + "info": { + "name": "io.vavr:vavr-match", + "version": "0.10.2" + } + }, + { + "id": "io.github.resilience4j:resilience4j-retry@1.7.1", + "info": { + "name": "io.github.resilience4j:resilience4j-retry", + "version": "1.7.1" + } + }, + { + "id": "//integrations/microsoft_lists:main@bazel", + "info": { + "name": "//integrations/microsoft_lists:main", + "version": "bazel" + } + }, + { + "id": "//integrations/mixpanel:main@bazel", + "info": { + "name": "//integrations/mixpanel:main", + "version": "bazel" + } + }, + { + "id": "//integrations/mysql:main@bazel", + "info": { + "name": "//integrations/mysql:main", + "version": "bazel" + } + }, + { + "id": "//integrations/optimizely:main@bazel", + "info": { + "name": "//integrations/optimizely:main", + "version": "bazel" + } + }, + { + "id": "//integrations/oracle_cloud_apps_cx:main@bazel", + "info": { + "name": "//integrations/oracle_cloud_apps_cx:main", + "version": "bazel" + } + }, + { + "id": "//integrations/oracle_cloud_apps:main@bazel", + "info": { + "name": "//integrations/oracle_cloud_apps:main", + "version": "bazel" + } + }, + { + "id": "//integrations/oracle_cloud_apps_erp_scm:main@bazel", + "info": { + "name": "//integrations/oracle_cloud_apps_erp_scm:main", + "version": "bazel" + } + }, + { + "id": "//integrations/oracle_fusion_cloud_apps:main@bazel", + "info": { + "name": "//integrations/oracle_fusion_cloud_apps:main", + "version": "bazel" + } + }, + { + "id": "com.opencsv:opencsv@4.1", + "info": { + "name": "com.opencsv:opencsv", + "version": "4.1" + } + }, + { + "id": "org.apache.commons:commons-text@1.1", + "info": { + "name": "org.apache.commons:commons-text", + "version": "1.1" + } + }, + { + "id": "org.glassfish.jersey.media:jersey-media-multipart@2.31", + "info": { + "name": "org.glassfish.jersey.media:jersey-media-multipart", + "version": "2.31" + } + }, + { + "id": "//integrations/oracle:main@bazel", + "info": { + "name": "//integrations/oracle:main", + "version": "bazel" + } + }, + { + "id": "//integrations/debezium_sql_parser:main@bazel", + "info": { + "name": "//integrations/debezium_sql_parser:main", + "version": "bazel" + } + }, + { + "id": "//integrations/hvr:main@bazel", + "info": { + "name": "//integrations/hvr:main", + "version": "bazel" + } + }, + { + "id": "//integrations/hvr/unserializer:main@bazel", + "info": { + "name": "//integrations/hvr/unserializer:main", + "version": "bazel" + } + }, + { + "id": "//port_forwarder:oracle@bazel", + "info": { + "name": "//port_forwarder:oracle", + "version": "bazel" + } + }, + { + "id": "//utils/byte_array_list/sync_adapter:main@bazel", + "info": { + "name": "//utils/byte_array_list/sync_adapter:main", + "version": "bazel" + } + }, + { + "id": "//integrations/oracle_hva:main@bazel", + "info": { + "name": "//integrations/oracle_hva:main", + "version": "bazel" + } + }, + { + "id": "//integrations/oracle_hva2:main@bazel", + "info": { + "name": "//integrations/oracle_hva2:main", + "version": "bazel" + } + }, + { + "id": "//integrations/outbrain:main@bazel", + "info": { + "name": "//integrations/outbrain:main", + "version": "bazel" + } + }, + { + "id": "org.eclipse.jetty:jetty-servlets@9.4.40.v20210413", + "info": { + "name": "org.eclipse.jetty:jetty-servlets", + "version": "9.4.40.v20210413" + } + }, + { + "id": "org.eclipse.jetty:jetty-continuation@9.4.40.v20210413", + "info": { + "name": "org.eclipse.jetty:jetty-continuation", + "version": "9.4.40.v20210413" + } + }, + { + "id": "org.glassfish.jersey.containers:jersey-container-servlet@2.31", + "info": { + "name": "org.glassfish.jersey.containers:jersey-container-servlet", + "version": "2.31" + } + }, + { + "id": "//integrations/outreach:main@bazel", + "info": { + "name": "//integrations/outreach:main", + "version": "bazel" + } + }, + { + "id": "//integrations/pardot:main@bazel", + "info": { + "name": "//integrations/pardot:main", + "version": "bazel" + } + }, + { + "id": "//integrations/paypal:main@bazel", + "info": { + "name": "//integrations/paypal:main", + "version": "bazel" + } + }, + { + "id": "//integrations/pendo:main@bazel", + "info": { + "name": "//integrations/pendo:main", + "version": "bazel" + } + }, + { + "id": "//integrations/pinterest:main@bazel", + "info": { + "name": "//integrations/pinterest:main", + "version": "bazel" + } + }, + { + "id": "//integrations/pipedrive:main@bazel", + "info": { + "name": "//integrations/pipedrive:main", + "version": "bazel" + } + }, + { + "id": "//integrations/postgres:main@bazel", + "info": { + "name": "//integrations/postgres:main", + "version": "bazel" + } + }, + { + "id": "//integrations/postgres:wal_java_proto@bazel", + "info": { + "name": "//integrations/postgres:wal_java_proto", + "version": "bazel" + } + }, + { + "id": "//integrations/postgres:wal_proto@bazel", + "info": { + "name": "//integrations/postgres:wal_proto", + "version": "bazel" + } + }, + { + "id": "//integrations/qualtrics:main@bazel", + "info": { + "name": "//integrations/qualtrics:main", + "version": "bazel" + } + }, + { + "id": "//integrations/quickbooks:main@bazel", + "info": { + "name": "//integrations/quickbooks:main", + "version": "bazel" + } + }, + { + "id": "//integrations/recharge:main@bazel", + "info": { + "name": "//integrations/recharge:main", + "version": "bazel" + } + }, + { + "id": "//integrations/recurly:main@bazel", + "info": { + "name": "//integrations/recurly:main", + "version": "bazel" + } + }, + { + "id": "//integrations/reddit:main@bazel", + "info": { + "name": "//integrations/reddit:main", + "version": "bazel" + } + }, + { + "id": "//integrations/sage_intacct:main@bazel", + "info": { + "name": "//integrations/sage_intacct:main", + "version": "bazel" + } + }, + { + "id": "com.alibaba:druid@1.1.16", + "info": { + "name": "com.alibaba:druid", + "version": "1.1.16" + } + }, + { + "id": "//integrations/sailthru:main@bazel", + "info": { + "name": "//integrations/sailthru:main", + "version": "bazel" + } + }, + { + "id": "//integrations/salesforce:main@bazel", + "info": { + "name": "//integrations/salesforce:main", + "version": "bazel" + } + }, + { + "id": "//integrations/salesforce_commerce_cloud:main@bazel", + "info": { + "name": "//integrations/salesforce_commerce_cloud:main", + "version": "bazel" + } + }, + { + "id": "//integrations/salesforce_marketing_cloud:main@bazel", + "info": { + "name": "//integrations/salesforce_marketing_cloud:main", + "version": "bazel" + } + }, + { + "id": "//integrations/sap_business_bydesign:main@bazel", + "info": { + "name": "//integrations/sap_business_bydesign:main", + "version": "bazel" + } + }, + { + "id": "//integrations/sap_concur:main@bazel", + "info": { + "name": "//integrations/sap_concur:main", + "version": "bazel" + } + }, + { + "id": "//integrations/sap_s4hana:main@bazel", + "info": { + "name": "//integrations/sap_s4hana:main", + "version": "bazel" + } + }, + { + "id": "//integrations/segment:main@bazel", + "info": { + "name": "//integrations/segment:main", + "version": "bazel" + } + }, + { + "id": "//maxmind:main@bazel", + "info": { + "name": "//maxmind:main", + "version": "bazel" + } + }, + { + "id": "com.maxmind.db:maxmind-db@1.2.2", + "info": { + "name": "com.maxmind.db:maxmind-db", + "version": "1.2.2" + } + }, + { + "id": "com.maxmind.geoip2:geoip2@2.9.0", + "info": { + "name": "com.maxmind.geoip2:geoip2", + "version": "2.9.0" + } + }, + { + "id": "//integrations/sendgrid:main@bazel", + "info": { + "name": "//integrations/sendgrid:main", + "version": "bazel" + } + }, + { + "id": "//integrations/service_now:main@bazel", + "info": { + "name": "//integrations/service_now:main", + "version": "bazel" + } + }, + { + "id": "//integrations/shopify:main@bazel", + "info": { + "name": "//integrations/shopify:main", + "version": "bazel" + } + }, + { + "id": "//integrations/snapchat_ads:main@bazel", + "info": { + "name": "//integrations/snapchat_ads:main", + "version": "bazel" + } + }, + { + "id": "//integrations/snowplow:main@bazel", + "info": { + "name": "//integrations/snowplow:main", + "version": "bazel" + } + }, + { + "id": "com.blueconic:browscap-java@1.2.13", + "info": { + "name": "com.blueconic:browscap-java", + "version": "1.2.13" + } + }, + { + "id": "com.github.java-json-tools:json-schema-core@1.2.14", + "info": { + "name": "com.github.java-json-tools:json-schema-core", + "version": "1.2.14" + } + }, + { + "id": "com.github.java-json-tools:jackson-coreutils@2.0", + "info": { + "name": "com.github.java-json-tools:jackson-coreutils", + "version": "2.0" + } + }, + { + "id": "com.github.java-json-tools:msg-simple@1.2", + "info": { + "name": "com.github.java-json-tools:msg-simple", + "version": "1.2" + } + }, + { + "id": "com.github.java-json-tools:btf@1.3", + "info": { + "name": "com.github.java-json-tools:btf", + "version": "1.3" + } + }, + { + "id": "com.github.java-json-tools:jackson-coreutils-equivalence@1.0", + "info": { + "name": "com.github.java-json-tools:jackson-coreutils-equivalence", + "version": "1.0" + } + }, + { + "id": "com.github.java-json-tools:uri-template@0.10", + "info": { + "name": "com.github.java-json-tools:uri-template", + "version": "0.10" + } + }, + { + "id": "org.mozilla:rhino@1.7.7.2", + "info": { + "name": "org.mozilla:rhino", + "version": "1.7.7.2" + } + }, + { + "id": "com.github.java-json-tools:json-schema-validator@2.2.14", + "info": { + "name": "com.github.java-json-tools:json-schema-validator", + "version": "2.2.14" + } + }, + { + "id": "com.sun.mail:mailapi@1.6.2", + "info": { + "name": "com.sun.mail:mailapi", + "version": "1.6.2" + } + }, + { + "id": "com.googlecode.libphonenumber:libphonenumber@8.11.1", + "info": { + "name": "com.googlecode.libphonenumber:libphonenumber", + "version": "8.11.1" + } + }, + { + "id": "com.github.ua-parser:uap-java@1.4.0", + "info": { + "name": "com.github.ua-parser:uap-java", + "version": "1.4.0" + } + }, + { + "id": "com.snowplowanalytics:referer-parser_2.11@0.3.0", + "info": { + "name": "com.snowplowanalytics:referer-parser_2.11", + "version": "0.3.0" + } + }, + { + "id": "//integrations/snowflake:main@bazel", + "info": { + "name": "//integrations/snowflake:main", + "version": "bazel" + } + }, + { + "id": "//integrations/splunk:main@bazel", + "info": { + "name": "//integrations/splunk:main", + "version": "bazel" + } + }, + { + "id": "//integrations/sql_server:main@bazel", + "info": { + "name": "//integrations/sql_server:main", + "version": "bazel" + } + }, + { + "id": "//integrations/azure/utils:main@bazel", + "info": { + "name": "//integrations/azure/utils:main", + "version": "bazel" + } + }, + { + "id": "//integrations/square:main@bazel", + "info": { + "name": "//integrations/square:main", + "version": "bazel" + } + }, + { + "id": "//integrations/stripe:main@bazel", + "info": { + "name": "//integrations/stripe:main", + "version": "bazel" + } + }, + { + "id": "//integrations/survey_monkey:main@bazel", + "info": { + "name": "//integrations/survey_monkey:main", + "version": "bazel" + } + }, + { + "id": "//integrations/spotify_ads:main@bazel", + "info": { + "name": "//integrations/spotify_ads:main", + "version": "bazel" + } + }, + { + "id": "//integrations/taboola:main@bazel", + "info": { + "name": "//integrations/taboola:main", + "version": "bazel" + } + }, + { + "id": "//integrations/the_trade_desk:main@bazel", + "info": { + "name": "//integrations/the_trade_desk:main", + "version": "bazel" + } + }, + { + "id": "//integrations/tiktok_ads:main@bazel", + "info": { + "name": "//integrations/tiktok_ads:main", + "version": "bazel" + } + }, + { + "id": "//integrations/twilio:main@bazel", + "info": { + "name": "//integrations/twilio:main", + "version": "bazel" + } + }, + { + "id": "//integrations/twitter:main@bazel", + "info": { + "name": "//integrations/twitter:main", + "version": "bazel" + } + }, + { + "id": "//integrations/typeform:main@bazel", + "info": { + "name": "//integrations/typeform:main", + "version": "bazel" + } + }, + { + "id": "//integrations/uservoice:main@bazel", + "info": { + "name": "//integrations/uservoice:main", + "version": "bazel" + } + }, + { + "id": "//integrations/webhooks:main@bazel", + "info": { + "name": "//integrations/webhooks:main", + "version": "bazel" + } + }, + { + "id": "//integrations/wordpress:main@bazel", + "info": { + "name": "//integrations/wordpress:main", + "version": "bazel" + } + }, + { + "id": "//integrations/workday:main@bazel", + "info": { + "name": "//integrations/workday:main", + "version": "bazel" + } + }, + { + "id": "//integrations/workday_hcm:main@bazel", + "info": { + "name": "//integrations/workday_hcm:main", + "version": "bazel" + } + }, + { + "id": "org.projectlombok:lombok@1.18.12", + "info": { + "name": "org.projectlombok:lombok", + "version": "1.18.12" + } + }, + { + "id": "//integrations/xero:main@bazel", + "info": { + "name": "//integrations/xero:main", + "version": "bazel" + } + }, + { + "id": "//integrations/yahoo_gemini:main@bazel", + "info": { + "name": "//integrations/yahoo_gemini:main", + "version": "bazel" + } + }, + { + "id": "//integrations/youtube_analytics:main@bazel", + "info": { + "name": "//integrations/youtube_analytics:main", + "version": "bazel" + } + }, + { + "id": "//integrations/zendesk:main@bazel", + "info": { + "name": "//integrations/zendesk:main", + "version": "bazel" + } + }, + { + "id": "//integrations/zendesk_chat:main@bazel", + "info": { + "name": "//integrations/zendesk_chat:main", + "version": "bazel" + } + }, + { + "id": "//integrations/zendesk_sell:main@bazel", + "info": { + "name": "//integrations/zendesk_sell:main", + "version": "bazel" + } + }, + { + "id": "//integrations/zendesk_sunshine:main@bazel", + "info": { + "name": "//integrations/zendesk_sunshine:main", + "version": "bazel" + } + }, + { + "id": "//integrations/zoho_crm:main@bazel", + "info": { + "name": "//integrations/zoho_crm:main", + "version": "bazel" + } + }, + { + "id": "//integrations/delighted:main@bazel", + "info": { + "name": "//integrations/delighted:main", + "version": "bazel" + } + }, + { + "id": "//sources/delighted:main@bazel", + "info": { + "name": "//sources/delighted:main", + "version": "bazel" + } + }, + { + "id": "//sources/mapper:main@bazel", + "info": { + "name": "//sources/mapper:main", + "version": "bazel" + } + }, + { + "id": "//saml:main@bazel", + "info": { + "name": "//saml:main", + "version": "bazel" + } + }, + { + "id": "io.dropwizard.metrics:metrics-core@3.1.2", + "info": { + "name": "io.dropwizard.metrics:metrics-core", + "version": "3.1.2" + } + }, + { + "id": "net.shibboleth.utilities:java-support@7.3.0", + "info": { + "name": "net.shibboleth.utilities:java-support", + "version": "7.3.0" + } + }, + { + "id": "org.cryptacular:cryptacular@1.1.1", + "info": { + "name": "org.cryptacular:cryptacular", + "version": "1.1.1" + } + }, + { + "id": "org.opensaml:opensaml-core@3.3.0", + "info": { + "name": "org.opensaml:opensaml-core", + "version": "3.3.0" + } + }, + { + "id": "org.opensaml:opensaml-messaging-api@3.3.0", + "info": { + "name": "org.opensaml:opensaml-messaging-api", + "version": "3.3.0" + } + }, + { + "id": "org.opensaml:opensaml-messaging-impl@3.3.0", + "info": { + "name": "org.opensaml:opensaml-messaging-impl", + "version": "3.3.0" + } + }, + { + "id": "org.opensaml:opensaml-profile-api@3.3.0", + "info": { + "name": "org.opensaml:opensaml-profile-api", + "version": "3.3.0" + } + }, + { + "id": "org.opensaml:opensaml-saml-api@3.3.0", + "info": { + "name": "org.opensaml:opensaml-saml-api", + "version": "3.3.0" + } + }, + { + "id": "org.opensaml:opensaml-xmlsec-api@3.3.0", + "info": { + "name": "org.opensaml:opensaml-xmlsec-api", + "version": "3.3.0" + } + }, + { + "id": "org.opensaml:opensaml-security-api@3.3.0", + "info": { + "name": "org.opensaml:opensaml-security-api", + "version": "3.3.0" + } + }, + { + "id": "org.apache.santuario:xmlsec@2.1.1", + "info": { + "name": "org.apache.santuario:xmlsec", + "version": "2.1.1" + } + }, + { + "id": "org.opensaml:opensaml-storage-api@3.3.0", + "info": { + "name": "org.opensaml:opensaml-storage-api", + "version": "3.3.0" + } + }, + { + "id": "org.opensaml:opensaml-soap-api@3.3.0", + "info": { + "name": "org.opensaml:opensaml-soap-api", + "version": "3.3.0" + } + }, + { + "id": "org.opensaml:opensaml-saml-impl@3.3.0", + "info": { + "name": "org.opensaml:opensaml-saml-impl", + "version": "3.3.0" + } + }, + { + "id": "org.opensaml:opensaml-soap-impl@3.3.0", + "info": { + "name": "org.opensaml:opensaml-soap-impl", + "version": "3.3.0" + } + }, + { + "id": "org.opensaml:opensaml-security-impl@3.3.0", + "info": { + "name": "org.opensaml:opensaml-security-impl", + "version": "3.3.0" + } + }, + { + "id": "org.opensaml:opensaml-xmlsec-impl@3.3.0", + "info": { + "name": "org.opensaml:opensaml-xmlsec-impl", + "version": "3.3.0" + } + }, + { + "id": "//services/customer_data_access:main@bazel", + "info": { + "name": "//services/customer_data_access:main", + "version": "bazel" + } + }, + { + "id": "//zendesk_utils:main@bazel", + "info": { + "name": "//zendesk_utils:main", + "version": "bazel" + } + }, + { + "id": "//services/dbt:main@bazel", + "info": { + "name": "//services/dbt:main", + "version": "bazel" + } + }, + { + "id": "//services/schema_modification:main@bazel", + "info": { + "name": "//services/schema_modification:main", + "version": "bazel" + } + }, + { + "id": "//sfdc_connect:main@bazel", + "info": { + "name": "//sfdc_connect:main", + "version": "bazel" + } + }, + { + "id": "//ufl_storage/client:main@bazel", + "info": { + "name": "//ufl_storage/client:main", + "version": "bazel" + } + }, + { + "id": "//ufl_storage/storage:main@bazel", + "info": { + "name": "//ufl_storage/storage:main", + "version": "bazel" + } + }, + { + "id": "//utils/integrated_scheduler:main@bazel", + "info": { + "name": "//utils/integrated_scheduler:main", + "version": "bazel" + } + }, + { + "id": "com.google.cloud:google-cloud-firestore@1.10.0", + "info": { + "name": "com.google.cloud:google-cloud-firestore", + "version": "1.10.0" + } + }, + { + "id": "com.google.api.grpc:proto-google-cloud-firestore-v1beta1@0.63.0", + "info": { + "name": "com.google.api.grpc:proto-google-cloud-firestore-v1beta1", + "version": "0.63.0" + } + }, + { + "id": "io.opencensus:opencensus-contrib-grpc-util@0.21.0", + "info": { + "name": "io.opencensus:opencensus-contrib-grpc-util", + "version": "0.21.0" + } + }, + { + "id": "com.google.api.grpc:proto-google-cloud-firestore-admin-v1@1.10.0", + "info": { + "name": "com.google.api.grpc:proto-google-cloud-firestore-admin-v1", + "version": "1.10.0" + } + }, + { + "id": "com.google.api.grpc:proto-google-cloud-firestore-v1@1.10.0", + "info": { + "name": "com.google.api.grpc:proto-google-cloud-firestore-v1", + "version": "1.10.0" + } + }, + { + "id": "com.lambdaworks:scrypt@1.4.0", + "info": { + "name": "com.lambdaworks:scrypt", + "version": "1.4.0" + } + }, + { + "id": "org.eclipse.jetty.websocket:javax-websocket-server-impl@9.4.40.v20210413", + "info": { + "name": "org.eclipse.jetty.websocket:javax-websocket-server-impl", + "version": "9.4.40.v20210413" + } + }, + { + "id": "org.eclipse.jetty:jetty-annotations@9.4.40.v20210413", + "info": { + "name": "org.eclipse.jetty:jetty-annotations", + "version": "9.4.40.v20210413" + } + }, + { + "id": "org.ow2.asm:asm-commons@8.0.1", + "info": { + "name": "org.ow2.asm:asm-commons", + "version": "8.0.1" + } + }, + { + "id": "org.eclipse.jetty:jetty-webapp@9.4.40.v20210413", + "info": { + "name": "org.eclipse.jetty:jetty-webapp", + "version": "9.4.40.v20210413" + } + }, + { + "id": "org.eclipse.jetty:jetty-xml@9.4.40.v20210413", + "info": { + "name": "org.eclipse.jetty:jetty-xml", + "version": "9.4.40.v20210413" + } + }, + { + "id": "org.eclipse.jetty:jetty-plus@9.4.40.v20210413", + "info": { + "name": "org.eclipse.jetty:jetty-plus", + "version": "9.4.40.v20210413" + } + }, + { + "id": "org.eclipse.jetty:jetty-jndi@9.4.40.v20210413", + "info": { + "name": "org.eclipse.jetty:jetty-jndi", + "version": "9.4.40.v20210413" + } + }, + { + "id": "org.eclipse.jetty.websocket:javax-websocket-client-impl@9.4.40.v20210413", + "info": { + "name": "org.eclipse.jetty.websocket:javax-websocket-client-impl", + "version": "9.4.40.v20210413" + } + }, + { + "id": "javax.websocket:javax.websocket-client-api@1.0", + "info": { + "name": "javax.websocket:javax.websocket-client-api", + "version": "1.0" + } + }, + { + "id": "org.eclipse.jetty.websocket:websocket-client@9.4.40.v20210413", + "info": { + "name": "org.eclipse.jetty.websocket:websocket-client", + "version": "9.4.40.v20210413" + } + }, + { + "id": "org.eclipse.jetty:jetty-client@9.4.40.v20210413", + "info": { + "name": "org.eclipse.jetty:jetty-client", + "version": "9.4.40.v20210413" + } + }, + { + "id": "org.eclipse.jetty.websocket:websocket-common@9.4.40.v20210413", + "info": { + "name": "org.eclipse.jetty.websocket:websocket-common", + "version": "9.4.40.v20210413" + } + }, + { + "id": "org.eclipse.jetty.websocket:websocket-api@9.4.40.v20210413", + "info": { + "name": "org.eclipse.jetty.websocket:websocket-api", + "version": "9.4.40.v20210413" + } + }, + { + "id": "org.eclipse.jetty.websocket:websocket-server@9.4.40.v20210413", + "info": { + "name": "org.eclipse.jetty.websocket:websocket-server", + "version": "9.4.40.v20210413" + } + }, + { + "id": "org.eclipse.jetty.websocket:websocket-servlet@9.4.40.v20210413", + "info": { + "name": "org.eclipse.jetty.websocket:websocket-servlet", + "version": "9.4.40.v20210413" + } + }, + { + "id": "org.glassfish.jersey.media:jersey-media-sse@2.31", + "info": { + "name": "org.glassfish.jersey.media:jersey-media-sse", + "version": "2.31" + } + }, + { + "id": "meta-common-packages@meta", + "info": { + "name": "meta-common-packages", + "version": "meta" + } + } + ], + "graph": { + "rootNodeId": "//app:main@bazel", + "nodes": [ + { + "nodeId": "//app:main@bazel", + "pkgId": "//app:main@bazel", + "deps": [ + { + "nodeId": "//app/config:main@bazel" + }, + { + "nodeId": "//common:main@bazel" + }, + { + "nodeId": "//core_interfaces/cursor:main@bazel" + }, + { + "nodeId": "//database:hikari@bazel" + }, + { + "nodeId": "//database:ssh_verify@bazel" + }, + { + "nodeId": "//database:tls_verify@bazel" + }, + { + "nodeId": "//database/exceptions:main@bazel" + }, + { + "nodeId": "//dbt/api/client:main@bazel" + }, + { + "nodeId": "//dbt/manifest:main@bazel" + }, + { + "nodeId": "//dbt/services:main@bazel" + }, + { + "nodeId": "//donkey:main@bazel" + }, + { + "nodeId": "//emails:core@bazel" + }, + { + "nodeId": "//emails:main@bazel" + }, + { + "nodeId": "//events:main@bazel" + }, + { + "nodeId": "//feature_flag:flags@bazel" + }, + { + "nodeId": "//feature_flag/sandbox:main@bazel" + }, + { + "nodeId": "//feature_flag/service:main@bazel" + }, + { + "nodeId": "//heartbeat:main@bazel" + }, + { + "nodeId": "//integrated_scheduler/dag:main@bazel" + }, + { + "nodeId": "//integrated_scheduler/pipeline:main@bazel" + }, + { + "nodeId": "//integrated_scheduler/scheduler:messages@bazel" + }, + { + "nodeId": "//integrated_scheduler/scheduler:pubsub@bazel" + }, + { + "nodeId": "//jwt:main@bazel" + }, + { + "nodeId": "//kms:main@bazel" + }, + { + "nodeId": "//log_appender/gcs_appender:main@bazel" + }, + { + "nodeId": "//log_tailer:main@bazel" + }, + { + "nodeId": "//logging:fluent_bit@bazel" + }, + { + "nodeId": "//partners:main@bazel" + }, + { + "nodeId": "//saml:main@bazel" + }, + { + "nodeId": "//schema_migration:main@bazel" + }, + { + "nodeId": "//schema_service:main@bazel" + }, + { + "nodeId": "//secred/client:main@bazel" + }, + { + "nodeId": "//secred/common:main@bazel" + }, + { + "nodeId": "//secrets/db:main@bazel" + }, + { + "nodeId": "//service_registry:main@bazel" + }, + { + "nodeId": "//services:ab_tests@bazel" + }, + { + "nodeId": "//services:integration_control@bazel" + }, + { + "nodeId": "//services:main@bazel" + }, + { + "nodeId": "//services/cmk_encryption:main@bazel" + }, + { + "nodeId": "//services/customer_data_access:main@bazel" + }, + { + "nodeId": "//services/dbt:main@bazel" + }, + { + "nodeId": "//services/logging:main@bazel" + }, + { + "nodeId": "//services/schema_modification:main@bazel" + }, + { + "nodeId": "//services/setup_test_runner:main@bazel" + }, + { + "nodeId": "//setup_test_runner:client@bazel" + }, + { + "nodeId": "//sfdc_connect:main@bazel" + }, + { + "nodeId": "//transformation_runner:client@bazel" + }, + { + "nodeId": "//ufl_storage/client:main@bazel" + }, + { + "nodeId": "//ufl_storage/storage:main@bazel" + }, + { + "nodeId": "//utils/bootstrap:main@bazel" + }, + { + "nodeId": "//utils/integrated_scheduler:main@bazel" + }, + { + "nodeId": "//utils/validations:main@bazel" + }, + { + "nodeId": "//warehouses/big_query:main@bazel" + }, + { + "nodeId": "//warehouses/common:warehouse_type@bazel" + }, + { + "nodeId": "//warehouses/postgres:main@bazel" + }, + { + "nodeId": "//words:main@bazel" + }, + { + "nodeId": "//zendesk_utils:main@bazel" + }, + { + "nodeId": "com.cronutils:cron-utils@9.0.2" + }, + { + "nodeId": "com.fasterxml.jackson.dataformat:jackson-dataformat-yaml@2.9.8" + }, + { + "nodeId": "com.google.api.grpc:proto-google-cloud-pubsub-v1@1.101.1" + }, + { + "nodeId": "com.google.apis:google-api-services-bigquery@v2-rev459-1.25.0" + }, + { + "nodeId": "com.google.apis:google-api-services-cloudresourcemanager@v1-rev495-1.23.0" + }, + { + "nodeId": "com.google.cloud:google-cloud-bigquery@1.48.0" + }, + { + "nodeId": "com.google.cloud:google-cloud-datastore@1.70.0" + }, + { + "nodeId": "com.google.cloud:google-cloud-firestore@1.10.0" + }, + { + "nodeId": "com.google.cloud:google-cloud-pubsub@1.119.1" + }, + { + "nodeId": "com.google.http-client:google-http-client-jackson2@1.35.0" + }, + { + "nodeId": "com.lambdaworks:scrypt@1.4.0" + }, + { + "nodeId": "com.nimbusds:nimbus-jose-jwt@5.5" + }, + { + "nodeId": "com.stripe:stripe-java@19.20.0" + }, + { + "nodeId": "info.picocli:picocli@4.5.1" + }, + { + "nodeId": "jakarta.annotation:jakarta.annotation-api@1.3.5" + }, + { + "nodeId": "javax.servlet:javax.servlet-api@3.1.0" + }, + { + "nodeId": "javax.websocket:javax.websocket-api@1.1" + }, + { + "nodeId": "org.apache.velocity:velocity@1.7" + }, + { + "nodeId": "org.eclipse.jetty:jetty-server@9.4.40.v20210413" + }, + { + "nodeId": "org.eclipse.jetty:jetty-servlet@9.4.40.v20210413" + }, + { + "nodeId": "org.eclipse.jetty:jetty-servlets@9.4.40.v20210413" + }, + { + "nodeId": "org.eclipse.jetty:jetty-util@9.4.40.v20210413" + }, + { + "nodeId": "org.eclipse.jetty.websocket:javax-websocket-server-impl@9.4.40.v20210413" + }, + { + "nodeId": "org.eclipse.jetty.websocket:websocket-common@9.4.40.v20210413" + }, + { + "nodeId": "org.glassfish.hk2:hk2-api@2.6.1" + }, + { + "nodeId": "org.glassfish.jersey.containers:jersey-container-servlet@2.31" + }, + { + "nodeId": "org.glassfish.jersey.containers:jersey-container-servlet-core@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-server@2.31" + }, + { + "nodeId": "org.glassfish.jersey.inject:jersey-hk2@2.31" + }, + { + "nodeId": "org.glassfish.jersey.media:jersey-media-jaxb@2.31" + }, + { + "nodeId": "org.glassfish.jersey.media:jersey-media-multipart@2.31" + }, + { + "nodeId": "org.glassfish.jersey.media:jersey-media-sse@2.31" + }, + { + "nodeId": "org.glassfish.jersey.security:oauth1-signature@2.31" + }, + { + "nodeId": "org.jooq:jool-java-8@0.9.14" + }, + { + "nodeId": "org.jsoup:jsoup@1.8.2" + }, + { + "nodeId": "org.opensaml:opensaml-core@3.3.0" + }, + { + "nodeId": "org.opensaml:opensaml-messaging-api@3.3.0" + }, + { + "nodeId": "org.opensaml:opensaml-messaging-impl@3.3.0" + }, + { + "nodeId": "org.opensaml:opensaml-profile-api@3.3.0" + }, + { + "nodeId": "org.opensaml:opensaml-saml-api@3.3.0" + }, + { + "nodeId": "org.opensaml:opensaml-saml-impl@3.3.0" + }, + { + "nodeId": "org.opensaml:opensaml-security-api@3.3.0" + }, + { + "nodeId": "org.opensaml:opensaml-security-impl@3.3.0" + }, + { + "nodeId": "org.opensaml:opensaml-soap-api@3.3.0" + }, + { + "nodeId": "org.opensaml:opensaml-soap-impl@3.3.0" + }, + { + "nodeId": "org.opensaml:opensaml-storage-api@3.3.0" + }, + { + "nodeId": "org.opensaml:opensaml-xmlsec-api@3.3.0" + }, + { + "nodeId": "org.opensaml:opensaml-xmlsec-impl@3.3.0" + }, + { + "nodeId": "org.postgresql:postgresql@42.3.3" + }, + { + "nodeId": "meta-common-packages@meta" + } + ] + }, + { + "nodeId": "//app/config:main@bazel", + "pkgId": "//app/config:main@bazel", + "deps": [ + { + "nodeId": "//database:hikari@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.dataformat:jackson-dataformat-yaml@2.9.8" + }, + { + "nodeId": "com.zaxxer:HikariCP@3.4.1" + } + ] + }, + { + "nodeId": "//core_interfaces:main@bazel", + "pkgId": "//core_interfaces:main@bazel", + "deps": [ + { + "nodeId": "//crypto:pojos@bazel" + }, + { + "nodeId": "//database:enums@bazel" + }, + { + "nodeId": "//database:schema_migration_model@bazel" + }, + { + "nodeId": "//events:event_hub@bazel" + }, + { + "nodeId": "//heartbeat:main@bazel" + }, + { + "nodeId": "//schema_migration:schema_migration_info@bazel" + }, + { + "nodeId": "//sources/types:main@bazel" + }, + { + "nodeId": "//utils/validations:main@bazel" + }, + { + "nodeId": "//warehouses/common:warehouse_type@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.dataformat:jackson-dataformat-yaml@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-joda@2.9.8" + }, + { + "nodeId": "com.ibm.icu:icu4j@62.1" + }, + { + "nodeId": "org.glassfish.jersey.security:oauth1-client@2.31" + }, + { + "nodeId": "org.glassfish.jersey.security:oauth1-signature@2.31" + } + ] + }, + { + "nodeId": "//crypto:pojos@bazel", + "pkgId": "//crypto:pojos@bazel", + "deps": [] + }, + { + "nodeId": "//database:enums@bazel", + "pkgId": "//database:enums@bazel", + "deps": [] + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2", + "pkgId": "com.google.code.findbugs:jsr305@3.0.2", + "deps": [] + }, + { + "nodeId": "//database:schema_migration_model@bazel", + "pkgId": "//database:schema_migration_model@bazel", + "deps": [ + { + "nodeId": "//schema_migration:enum_types@bazel" + } + ] + }, + { + "nodeId": "//schema_migration:enum_types@bazel", + "pkgId": "//schema_migration:enum_types@bazel", + "deps": [] + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8", + "pkgId": "com.fasterxml.jackson.core:jackson-databind@2.9.8", + "deps": [] + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8", + "pkgId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8", + "deps": [] + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8", + "pkgId": "com.fasterxml.jackson.core:jackson-core@2.9.8", + "deps": [] + }, + { + "nodeId": "//events:event_hub@bazel", + "pkgId": "//events:event_hub@bazel", + "deps": [] + }, + { + "nodeId": "//logger:main@bazel", + "pkgId": "//logger:main@bazel", + "deps": [ + { + "nodeId": "//database:enums@bazel" + }, + { + "nodeId": "//feature_flag:details@bazel" + }, + { + "nodeId": "//secred/client:main@bazel" + }, + { + "nodeId": "//secred/common:main@bazel" + }, + { + "nodeId": "org.json:json@20171018" + } + ] + }, + { + "nodeId": "//crypto:main@bazel", + "pkgId": "//crypto:main@bazel", + "deps": [ + { + "nodeId": "//jwt:main@bazel" + }, + { + "nodeId": "//logger:acmecorp_logger@bazel" + }, + { + "nodeId": "com.amazonaws:aws-encryption-sdk-java@1.6.1" + }, + { + "nodeId": "com.google.api:gax-grpc@2.3.0" + }, + { + "nodeId": "com.google.api.grpc:proto-google-cloud-kms-v1@0.61.0" + }, + { + "nodeId": "com.google.auth:google-auth-library-credentials@0.9.1" + }, + { + "nodeId": "com.google.cloud:google-cloud-kms@1.13.0" + }, + { + "nodeId": "com.sun.xml.bind:jaxb-core@2.2.11" + }, + { + "nodeId": "com.sun.xml.bind:jaxb-impl@2.2.11" + }, + { + "nodeId": "io.grpc:grpc-core@1.32.2" + }, + { + "nodeId": "javax.xml.bind:jaxb-api@2.2.2" + } + ] + }, + { + "nodeId": "//json:main@bazel", + "pkgId": "//json:main@bazel", + "deps": [] + }, + { + "nodeId": "@com_fasterxml_jackson_dataformat_jackson_dataformat_csv//:main@bazel", + "pkgId": "@com_fasterxml_jackson_dataformat_jackson_dataformat_csv//:main@bazel", + "deps": [] + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8", + "pkgId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8", + "deps": [] + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8", + "pkgId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8", + "deps": [] + }, + { + "nodeId": "com.google.guava:guava@25.1-jre", + "pkgId": "com.google.guava:guava@25.1-jre", + "deps": [ + { + "nodeId": "com.google.errorprone:error_prone_annotations@2.13.1" + }, + { + "nodeId": "com.google.j2objc:j2objc-annotations@1.3" + }, + { + "nodeId": "org.checkerframework:checker-qual@3.22.0" + }, + { + "nodeId": "org.codehaus.mojo:animal-sniffer-annotations@1.21" + } + ] + }, + { + "nodeId": "com.google.errorprone:error_prone_annotations@2.13.1", + "pkgId": "com.google.errorprone:error_prone_annotations@2.13.1", + "deps": [] + }, + { + "nodeId": "com.google.j2objc:j2objc-annotations@1.3", + "pkgId": "com.google.j2objc:j2objc-annotations@1.3", + "deps": [] + }, + { + "nodeId": "org.checkerframework:checker-qual@3.22.0", + "pkgId": "org.checkerframework:checker-qual@3.22.0", + "deps": [] + }, + { + "nodeId": "org.codehaus.mojo:animal-sniffer-annotations@1.21", + "pkgId": "org.codehaus.mojo:animal-sniffer-annotations@1.21", + "deps": [] + }, + { + "nodeId": "//jwt:main@bazel", + "pkgId": "//jwt:main@bazel", + "deps": [] + }, + { + "nodeId": "commons-codec:commons-codec@1.10", + "pkgId": "commons-codec:commons-codec@1.10", + "deps": [] + }, + { + "nodeId": "//logger:acmecorp_logger@bazel", + "pkgId": "//logger:acmecorp_logger@bazel", + "deps": [] + }, + { + "nodeId": "//utils/time:main@bazel", + "pkgId": "//utils/time:main@bazel", + "deps": [] + }, + { + "nodeId": "//utils/exceptions:main@bazel", + "pkgId": "//utils/exceptions:main@bazel", + "deps": [] + }, + { + "nodeId": "com.amazonaws:aws-encryption-sdk-java@1.6.1", + "pkgId": "com.amazonaws:aws-encryption-sdk-java@1.6.1", + "deps": [ + { + "nodeId": "org.bouncycastle:bcprov-ext-jdk15on@1.70" + } + ] + }, + { + "nodeId": "org.apache.commons:commons-lang3@3.12.0", + "pkgId": "org.apache.commons:commons-lang3@3.12.0", + "deps": [] + }, + { + "nodeId": "org.bouncycastle:bcprov-ext-jdk15on@1.70", + "pkgId": "org.bouncycastle:bcprov-ext-jdk15on@1.70", + "deps": [] + }, + { + "nodeId": "com.google.api:gax@2.3.0", + "pkgId": "com.google.api:gax@2.3.0", + "deps": [ + { + "nodeId": "org.threeten:threetenbp@1.3.3" + }, + { + "nodeId": "io.opencensus:opencensus-api@0.12.3" + } + ] + }, + { + "nodeId": "com.google.auth:google-auth-library-oauth2-http@0.22.0", + "pkgId": "com.google.auth:google-auth-library-oauth2-http@0.22.0", + "deps": [ + { + "nodeId": "com.google.auto.value:auto-value-annotations@1.9" + }, + { + "nodeId": "com.google.http-client:google-http-client-jackson2@1.35.0" + }, + { + "nodeId": "com.google.auth:google-auth-library-credentials@0.9.1" + } + ] + }, + { + "nodeId": "com.google.http-client:google-http-client@1.39.2", + "pkgId": "com.google.http-client:google-http-client@1.39.2", + "deps": [ + { + "nodeId": "com.google.j2objc:j2objc-annotations@1.3" + }, + { + "nodeId": "io.opencensus:opencensus-contrib-http-util@0.11.1" + }, + { + "nodeId": "io.opencensus:opencensus-api@0.12.3" + } + ] + }, + { + "nodeId": "org.apache.httpcomponents:httpcore@4.4.13", + "pkgId": "org.apache.httpcomponents:httpcore@4.4.13", + "deps": [] + }, + { + "nodeId": "org.apache.httpcomponents:httpclient@4.5.13", + "pkgId": "org.apache.httpcomponents:httpclient@4.5.13", + "deps": [ + { + "nodeId": "commons-logging:commons-logging@1.2" + } + ] + }, + { + "nodeId": "commons-logging:commons-logging@1.2", + "pkgId": "commons-logging:commons-logging@1.2", + "deps": [] + }, + { + "nodeId": "io.opencensus:opencensus-contrib-http-util@0.11.1", + "pkgId": "io.opencensus:opencensus-contrib-http-util@0.11.1", + "deps": [ + { + "nodeId": "com.google.errorprone:error_prone_annotations@2.13.1" + }, + { + "nodeId": "io.opencensus:opencensus-api@0.12.3" + } + ] + }, + { + "nodeId": "io.opencensus:opencensus-api@0.12.3", + "pkgId": "io.opencensus:opencensus-api@0.12.3", + "deps": [ + { + "nodeId": "com.google.errorprone:error_prone_annotations@2.13.1" + }, + { + "nodeId": "io.grpc:grpc-context@1.32.2" + } + ] + }, + { + "nodeId": "io.grpc:grpc-context@1.32.2", + "pkgId": "io.grpc:grpc-context@1.32.2", + "deps": [] + }, + { + "nodeId": "com.google.auto.value:auto-value-annotations@1.9", + "pkgId": "com.google.auto.value:auto-value-annotations@1.9", + "deps": [] + }, + { + "nodeId": "com.google.http-client:google-http-client-jackson2@1.35.0", + "pkgId": "com.google.http-client:google-http-client-jackson2@1.35.0", + "deps": [] + }, + { + "nodeId": "com.google.auth:google-auth-library-credentials@0.9.1", + "pkgId": "com.google.auth:google-auth-library-credentials@0.9.1", + "deps": [] + }, + { + "nodeId": "com.google.api:api-common@1.9.0", + "pkgId": "com.google.api:api-common@1.9.0", + "deps": [ + { + "nodeId": "com.google.auto.value:auto-value-annotations@1.9" + } + ] + }, + { + "nodeId": "javax.annotation:javax.annotation-api@1.3.2", + "pkgId": "javax.annotation:javax.annotation-api@1.3.2", + "deps": [] + }, + { + "nodeId": "org.threeten:threetenbp@1.3.3", + "pkgId": "org.threeten:threetenbp@1.3.3", + "deps": [] + }, + { + "nodeId": "com.google.api:gax-grpc@2.3.0", + "pkgId": "com.google.api:gax-grpc@2.3.0", + "deps": [ + { + "nodeId": "io.grpc:grpc-stub@1.32.2" + }, + { + "nodeId": "io.grpc:grpc-auth@1.32.2" + }, + { + "nodeId": "com.google.api.grpc:proto-google-common-protos@1.15.0" + }, + { + "nodeId": "io.grpc:grpc-alts@1.46.0" + }, + { + "nodeId": "io.grpc:grpc-netty-shaded@1.32.2" + }, + { + "nodeId": "org.threeten:threetenbp@1.3.3" + }, + { + "nodeId": "com.google.auth:google-auth-library-credentials@0.9.1" + }, + { + "nodeId": "io.grpc:grpc-protobuf@1.32.2" + } + ] + }, + { + "nodeId": "io.grpc:grpc-stub@1.32.2", + "pkgId": "io.grpc:grpc-stub@1.32.2", + "deps": [ + { + "nodeId": "com.google.errorprone:error_prone_annotations@2.13.1" + }, + { + "nodeId": "io.grpc:grpc-api@1.32.2" + }, + { + "nodeId": "org.codehaus.mojo:animal-sniffer-annotations@1.21" + } + ] + }, + { + "nodeId": "io.grpc:grpc-api@1.32.2", + "pkgId": "io.grpc:grpc-api@1.32.2", + "deps": [ + { + "nodeId": "com.google.errorprone:error_prone_annotations@2.13.1" + }, + { + "nodeId": "org.codehaus.mojo:animal-sniffer-annotations@1.21" + }, + { + "nodeId": "io.grpc:grpc-context@1.32.2" + } + ] + }, + { + "nodeId": "io.grpc:grpc-auth@1.32.2", + "pkgId": "io.grpc:grpc-auth@1.32.2", + "deps": [ + { + "nodeId": "com.google.errorprone:error_prone_annotations@2.13.1" + }, + { + "nodeId": "io.grpc:grpc-api@1.32.2" + }, + { + "nodeId": "org.codehaus.mojo:animal-sniffer-annotations@1.21" + }, + { + "nodeId": "com.google.auth:google-auth-library-credentials@0.9.1" + } + ] + }, + { + "nodeId": "com.google.api.grpc:proto-google-common-protos@1.15.0", + "pkgId": "com.google.api.grpc:proto-google-common-protos@1.15.0", + "deps": [] + }, + { + "nodeId": "com.google.protobuf:protobuf-java@3.18.2", + "pkgId": "com.google.protobuf:protobuf-java@3.18.2", + "deps": [] + }, + { + "nodeId": "io.grpc:grpc-alts@1.46.0", + "pkgId": "io.grpc:grpc-alts@1.46.0", + "deps": [ + { + "nodeId": "org.conscrypt:conscrypt-openjdk-uber@2.5.1" + }, + { + "nodeId": "io.grpc:grpc-stub@1.32.2" + }, + { + "nodeId": "io.grpc:grpc-auth@1.32.2" + }, + { + "nodeId": "io.grpc:grpc-netty-shaded@1.32.2" + }, + { + "nodeId": "io.grpc:grpc-grpclb@1.46.0" + }, + { + "nodeId": "io.grpc:grpc-protobuf@1.32.2" + } + ] + }, + { + "nodeId": "org.conscrypt:conscrypt-openjdk-uber@2.5.1", + "pkgId": "org.conscrypt:conscrypt-openjdk-uber@2.5.1", + "deps": [] + }, + { + "nodeId": "io.grpc:grpc-netty-shaded@1.32.2", + "pkgId": "io.grpc:grpc-netty-shaded@1.32.2", + "deps": [ + { + "nodeId": "io.grpc:grpc-core@1.32.2" + } + ] + }, + { + "nodeId": "io.grpc:grpc-core@1.32.2", + "pkgId": "io.grpc:grpc-core@1.32.2", + "deps": [ + { + "nodeId": "com.google.errorprone:error_prone_annotations@2.13.1" + }, + { + "nodeId": "com.google.android:annotations@4.1.1.4" + }, + { + "nodeId": "com.google.code.gson:gson@2.9.0" + }, + { + "nodeId": "io.grpc:grpc-api@1.32.2" + }, + { + "nodeId": "org.codehaus.mojo:animal-sniffer-annotations@1.21" + }, + { + "nodeId": "io.perfmark:perfmark-api@0.25.0" + } + ] + }, + { + "nodeId": "com.google.android:annotations@4.1.1.4", + "pkgId": "com.google.android:annotations@4.1.1.4", + "deps": [] + }, + { + "nodeId": "com.google.code.gson:gson@2.9.0", + "pkgId": "com.google.code.gson:gson@2.9.0", + "deps": [] + }, + { + "nodeId": "io.perfmark:perfmark-api@0.25.0", + "pkgId": "io.perfmark:perfmark-api@0.25.0", + "deps": [] + }, + { + "nodeId": "io.grpc:grpc-grpclb@1.46.0", + "pkgId": "io.grpc:grpc-grpclb@1.46.0", + "deps": [ + { + "nodeId": "com.google.errorprone:error_prone_annotations@2.13.1" + }, + { + "nodeId": "io.grpc:grpc-stub@1.32.2" + }, + { + "nodeId": "com.google.protobuf:protobuf-java-util@3.18.2" + }, + { + "nodeId": "io.grpc:grpc-core@1.32.2" + }, + { + "nodeId": "io.grpc:grpc-protobuf@1.32.2" + } + ] + }, + { + "nodeId": "com.google.protobuf:protobuf-java-util@3.18.2", + "pkgId": "com.google.protobuf:protobuf-java-util@3.18.2", + "deps": [ + { + "nodeId": "com.google.code.gson:gson@2.9.0" + }, + { + "nodeId": "com.google.errorprone:error_prone_annotations@2.13.1" + } + ] + }, + { + "nodeId": "io.grpc:grpc-protobuf@1.32.2", + "pkgId": "io.grpc:grpc-protobuf@1.32.2", + "deps": [ + { + "nodeId": "com.google.errorprone:error_prone_annotations@2.13.1" + }, + { + "nodeId": "com.google.api.grpc:proto-google-common-protos@1.15.0" + }, + { + "nodeId": "io.grpc:grpc-api@1.32.2" + }, + { + "nodeId": "org.codehaus.mojo:animal-sniffer-annotations@1.21" + }, + { + "nodeId": "io.grpc:grpc-protobuf-lite@1.32.2" + } + ] + }, + { + "nodeId": "io.grpc:grpc-protobuf-lite@1.32.2", + "pkgId": "io.grpc:grpc-protobuf-lite@1.32.2", + "deps": [ + { + "nodeId": "com.google.errorprone:error_prone_annotations@2.13.1" + }, + { + "nodeId": "com.google.protobuf:protobuf-javalite@3.12.0" + }, + { + "nodeId": "io.grpc:grpc-api@1.32.2" + }, + { + "nodeId": "org.codehaus.mojo:animal-sniffer-annotations@1.21" + } + ] + }, + { + "nodeId": "com.google.protobuf:protobuf-javalite@3.12.0", + "pkgId": "com.google.protobuf:protobuf-javalite@3.12.0", + "deps": [] + }, + { + "nodeId": "com.google.api.grpc:proto-google-cloud-kms-v1@0.61.0", + "pkgId": "com.google.api.grpc:proto-google-cloud-kms-v1@0.61.0", + "deps": [ + { + "nodeId": "com.google.api.grpc:proto-google-common-protos@1.15.0" + }, + { + "nodeId": "com.google.api.grpc:proto-google-iam-v1@0.13.0" + } + ] + }, + { + "nodeId": "com.google.api.grpc:proto-google-iam-v1@0.13.0", + "pkgId": "com.google.api.grpc:proto-google-iam-v1@0.13.0", + "deps": [ + { + "nodeId": "com.google.api.grpc:proto-google-common-protos@1.15.0" + } + ] + }, + { + "nodeId": "com.google.cloud:google-cloud-kms@1.13.0", + "pkgId": "com.google.cloud:google-cloud-kms@1.13.0", + "deps": [ + { + "nodeId": "io.grpc:grpc-stub@1.32.2" + }, + { + "nodeId": "io.grpc:grpc-auth@1.32.2" + }, + { + "nodeId": "com.google.cloud:google-cloud-core-grpc@1.19.0" + }, + { + "nodeId": "com.google.api.grpc:proto-google-cloud-kms-v1@0.61.0" + }, + { + "nodeId": "io.grpc:grpc-netty-shaded@1.32.2" + } + ] + }, + { + "nodeId": "com.google.cloud:google-cloud-core-grpc@1.19.0", + "pkgId": "com.google.cloud:google-cloud-core-grpc@1.19.0", + "deps": [ + { + "nodeId": "io.grpc:grpc-stub@1.32.2" + }, + { + "nodeId": "io.grpc:grpc-auth@1.32.2" + }, + { + "nodeId": "io.grpc:grpc-netty-shaded@1.32.2" + }, + { + "nodeId": "com.google.protobuf:protobuf-java-util@3.18.2" + }, + { + "nodeId": "com.google.api:gax-grpc@2.3.0" + }, + { + "nodeId": "io.grpc:grpc-context@1.32.2" + }, + { + "nodeId": "com.google.auth:google-auth-library-credentials@0.9.1" + }, + { + "nodeId": "io.grpc:grpc-protobuf@1.32.2" + } + ] + }, + { + "nodeId": "com.google.cloud:google-cloud-core@1.48.0", + "pkgId": "com.google.cloud:google-cloud-core@1.48.0", + "deps": [ + { + "nodeId": "com.google.api.grpc:proto-google-common-protos@1.15.0" + }, + { + "nodeId": "com.google.protobuf:protobuf-java-util@3.18.2" + }, + { + "nodeId": "com.google.api.grpc:proto-google-iam-v1@0.13.0" + }, + { + "nodeId": "joda-time:joda-time@2.9.2" + } + ] + }, + { + "nodeId": "joda-time:joda-time@2.9.2", + "pkgId": "joda-time:joda-time@2.9.2", + "deps": [] + }, + { + "nodeId": "com.sun.xml.bind:jaxb-core@2.2.11", + "pkgId": "com.sun.xml.bind:jaxb-core@2.2.11", + "deps": [] + }, + { + "nodeId": "com.sun.xml.bind:jaxb-impl@2.2.11", + "pkgId": "com.sun.xml.bind:jaxb-impl@2.2.11", + "deps": [] + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6", + "pkgId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6", + "deps": [] + }, + { + "nodeId": "javax.xml.bind:jaxb-api@2.2.2", + "pkgId": "javax.xml.bind:jaxb-api@2.2.2", + "deps": [ + { + "nodeId": "javax.activation:activation@1.1" + }, + { + "nodeId": "javax.xml.stream:stax-api@1.0-2" + } + ] + }, + { + "nodeId": "javax.activation:activation@1.1", + "pkgId": "javax.activation:activation@1.1", + "deps": [] + }, + { + "nodeId": "javax.xml.stream:stax-api@1.0-2", + "pkgId": "javax.xml.stream:stax-api@1.0-2", + "deps": [] + }, + { + "nodeId": "org.glassfish.hk2.external:jakarta.inject@2.6.1", + "pkgId": "org.glassfish.hk2.external:jakarta.inject@2.6.1", + "deps": [] + }, + { + "nodeId": "//feature_flag:details@bazel", + "pkgId": "//feature_flag:details@bazel", + "deps": [ + { + "nodeId": "//database:enums@bazel" + }, + { + "nodeId": "//logger:acmecorp_logger@bazel" + }, + { + "nodeId": "//warehouses/common:warehouse_type@bazel" + } + ] + }, + { + "nodeId": "//globals:main@bazel", + "pkgId": "//globals:main@bazel", + "deps": [] + }, + { + "nodeId": "//lambda:main@bazel", + "pkgId": "//lambda:main@bazel", + "deps": [] + }, + { + "nodeId": "//warehouses/common:warehouse_type@bazel", + "pkgId": "//warehouses/common:warehouse_type@bazel", + "deps": [] + }, + { + "nodeId": "//secred/client:main@bazel", + "pkgId": "//secred/client:main@bazel", + "deps": [ + { + "nodeId": "//crypto:pojos@bazel" + }, + { + "nodeId": "//database:enums@bazel" + }, + { + "nodeId": "//logger:acmecorp_logger@bazel" + }, + { + "nodeId": "//secred/common:main@bazel" + }, + { + "nodeId": "commons-configuration:commons-configuration@1.10" + }, + { + "nodeId": "org.glassfish.jersey.connectors:jersey-apache-connector@2.31" + } + ] + }, + { + "nodeId": "//secred/common:main@bazel", + "pkgId": "//secred/common:main@bazel", + "deps": [ + { + "nodeId": "//crypto:pojos@bazel" + } + ] + }, + { + "nodeId": "//secrets/common:main@bazel", + "pkgId": "//secrets/common:main@bazel", + "deps": [ + { + "nodeId": "//logger:acmecorp_logger@bazel" + } + ] + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-core@1.12.84", + "pkgId": "com.amazonaws:aws-java-sdk-core@1.12.84", + "deps": [ + { + "nodeId": "commons-logging:commons-logging@1.2" + }, + { + "nodeId": "com.fasterxml.jackson.dataformat:jackson-dataformat-cbor@2.9.8" + }, + { + "nodeId": "software.amazon.ion:ion-java@1.0.2" + }, + { + "nodeId": "joda-time:joda-time@2.9.2" + } + ] + }, + { + "nodeId": "com.fasterxml.jackson.dataformat:jackson-dataformat-cbor@2.9.8", + "pkgId": "com.fasterxml.jackson.dataformat:jackson-dataformat-cbor@2.9.8", + "deps": [] + }, + { + "nodeId": "software.amazon.ion:ion-java@1.0.2", + "pkgId": "software.amazon.ion:ion-java@1.0.2", + "deps": [] + }, + { + "nodeId": "//util:main@bazel", + "pkgId": "//util:main@bazel", + "deps": [ + { + "nodeId": "//logger:acmecorp_logger@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.dataformat:jackson-dataformat-yaml@2.9.8" + }, + { + "nodeId": "io.netty:netty-buffer@4.1.50.Final" + }, + { + "nodeId": "javax.xml.bind:jaxb-api@2.2.2" + }, + { + "nodeId": "javax.xml.soap:javax.xml.soap-api@1.4.0" + }, + { + "nodeId": "org.bouncycastle:bcpkix-jdk15on@1.70" + }, + { + "nodeId": "org.bouncycastle:bcprov-jdk15to18@1.70" + }, + { + "nodeId": "org.jooq:jool-java-8@0.9.14" + } + ] + }, + { + "nodeId": "com.fasterxml.jackson.dataformat:jackson-dataformat-yaml@2.9.8", + "pkgId": "com.fasterxml.jackson.dataformat:jackson-dataformat-yaml@2.9.8", + "deps": [ + { + "nodeId": "org.yaml:snakeyaml@1.23" + } + ] + }, + { + "nodeId": "org.yaml:snakeyaml@1.23", + "pkgId": "org.yaml:snakeyaml@1.23", + "deps": [] + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8", + "pkgId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8", + "deps": [ + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-base@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.module:jackson-module-jaxb-annotations@2.9.8" + } + ] + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-base@2.9.8", + "pkgId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-base@2.9.8", + "deps": [] + }, + { + "nodeId": "com.fasterxml.jackson.module:jackson-module-jaxb-annotations@2.9.8", + "pkgId": "com.fasterxml.jackson.module:jackson-module-jaxb-annotations@2.9.8", + "deps": [] + }, + { + "nodeId": "com.intellij:annotations@12.0", + "pkgId": "com.intellij:annotations@12.0", + "deps": [] + }, + { + "nodeId": "io.netty:netty-buffer@4.1.50.Final", + "pkgId": "io.netty:netty-buffer@4.1.50.Final", + "deps": [ + { + "nodeId": "io.netty:netty-common@4.1.45.Final" + } + ] + }, + { + "nodeId": "io.netty:netty-common@4.1.45.Final", + "pkgId": "io.netty:netty-common@4.1.45.Final", + "deps": [] + }, + { + "nodeId": "javax.xml.soap:javax.xml.soap-api@1.4.0", + "pkgId": "javax.xml.soap:javax.xml.soap-api@1.4.0", + "deps": [] + }, + { + "nodeId": "org.bouncycastle:bcpkix-jdk15on@1.70", + "pkgId": "org.bouncycastle:bcpkix-jdk15on@1.70", + "deps": [ + { + "nodeId": "org.bouncycastle:bcprov-jdk15on@1.70" + }, + { + "nodeId": "org.bouncycastle:bcutil-jdk15on:jar@1.70" + } + ] + }, + { + "nodeId": "org.bouncycastle:bcprov-jdk15on@1.70", + "pkgId": "org.bouncycastle:bcprov-jdk15on@1.70", + "deps": [] + }, + { + "nodeId": "org.bouncycastle:bcutil-jdk15on:jar@1.70", + "pkgId": "org.bouncycastle:bcutil-jdk15on:jar@1.70", + "deps": [ + { + "nodeId": "org.bouncycastle:bcprov-jdk15on@1.70" + } + ] + }, + { + "nodeId": "org.bouncycastle:bcprov-jdk15to18@1.70", + "pkgId": "org.bouncycastle:bcprov-jdk15to18@1.70", + "deps": [] + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31", + "pkgId": "org.glassfish.jersey.core:jersey-client@2.31", + "deps": [] + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-common@2.31", + "pkgId": "org.glassfish.jersey.core:jersey-common@2.31", + "deps": [ + { + "nodeId": "org.glassfish.hk2:osgi-resource-locator@1.0.3" + }, + { + "nodeId": "jakarta.annotation:jakarta.annotation-api@1.3.5" + }, + { + "nodeId": "com.sun.activation:jakarta.activation@2.0.1" + } + ] + }, + { + "nodeId": "org.glassfish.hk2:osgi-resource-locator@1.0.3", + "pkgId": "org.glassfish.hk2:osgi-resource-locator@1.0.3", + "deps": [] + }, + { + "nodeId": "jakarta.annotation:jakarta.annotation-api@1.3.5", + "pkgId": "jakarta.annotation:jakarta.annotation-api@1.3.5", + "deps": [] + }, + { + "nodeId": "com.sun.activation:jakarta.activation@2.0.1", + "pkgId": "com.sun.activation:jakarta.activation@2.0.1", + "deps": [] + }, + { + "nodeId": "org.jooq:jool-java-8@0.9.14", + "pkgId": "org.jooq:jool-java-8@0.9.14", + "deps": [] + }, + { + "nodeId": "commons-configuration:commons-configuration@1.10", + "pkgId": "commons-configuration:commons-configuration@1.10", + "deps": [ + { + "nodeId": "commons-logging:commons-logging@1.2" + } + ] + }, + { + "nodeId": "commons-lang:commons-lang@2.6", + "pkgId": "commons-lang:commons-lang@2.6", + "deps": [] + }, + { + "nodeId": "org.glassfish.jersey.connectors:jersey-apache-connector@2.31", + "pkgId": "org.glassfish.jersey.connectors:jersey-apache-connector@2.31", + "deps": [] + }, + { + "nodeId": "//secred/util:main@bazel", + "pkgId": "//secred/util:main@bazel", + "deps": [ + { + "nodeId": "//crypto:pojos@bazel" + }, + { + "nodeId": "//database:credential_models@bazel" + }, + { + "nodeId": "//logger:acmecorp_logger@bazel" + }, + { + "nodeId": "//secred/client:main@bazel" + }, + { + "nodeId": "//secred/common:main@bazel" + } + ] + }, + { + "nodeId": "//database:credential_models@bazel", + "pkgId": "//database:credential_models@bazel", + "deps": [] + }, + { + "nodeId": "//secrets/services:main@bazel", + "pkgId": "//secrets/services:main@bazel", + "deps": [ + { + "nodeId": "//crypto:pojos@bazel" + }, + { + "nodeId": "//logger:acmecorp_logger@bazel" + }, + { + "nodeId": "//secred/client:main@bazel" + }, + { + "nodeId": "//secred/common:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.dataformat:jackson-dataformat-yaml@2.9.8" + } + ] + }, + { + "nodeId": "org.json:json@20171018", + "pkgId": "org.json:json@20171018", + "deps": [] + }, + { + "nodeId": "//feature_flag:main@bazel", + "pkgId": "//feature_flag:main@bazel", + "deps": [ + { + "nodeId": "//feature_flag:details@bazel" + }, + { + "nodeId": "//database:enums@bazel" + }, + { + "nodeId": "//database:flags@bazel" + }, + { + "nodeId": "//database/exceptions:main@bazel" + }, + { + "nodeId": "//logger:acmecorp_logger@bazel" + }, + { + "nodeId": "//newrelic_utils:donkey_logs_url_builder@bazel" + }, + { + "nodeId": "//slack:main@bazel" + }, + { + "nodeId": "//warehouses/common:warehouse_type@bazel" + } + ] + }, + { + "nodeId": "//database:flags@bazel", + "pkgId": "//database:flags@bazel", + "deps": [ + { + "nodeId": "//database:postgresql_jdbc_fix@bazel" + }, + { + "nodeId": "//api/db:api_production_datasource@bazel" + }, + { + "nodeId": "//database:credential_models@bazel" + }, + { + "nodeId": "//database:data_sources@bazel" + }, + { + "nodeId": "//database:enums@bazel" + }, + { + "nodeId": "//database/exceptions:main@bazel" + }, + { + "nodeId": "//dockerized/postgres:main@bazel" + }, + { + "nodeId": "org.postgresql:postgresql@42.3.3" + } + ] + }, + { + "nodeId": "//database:postgresql_jdbc_fix@bazel", + "pkgId": "//database:postgresql_jdbc_fix@bazel", + "deps": [ + { + "nodeId": "org.postgresql:postgresql@42.3.3" + } + ] + }, + { + "nodeId": "org.postgresql:postgresql@42.3.3", + "pkgId": "org.postgresql:postgresql@42.3.3", + "deps": [ + { + "nodeId": "org.checkerframework:checker-qual@3.22.0" + } + ] + }, + { + "nodeId": "//api/db:api_production_datasource@bazel", + "pkgId": "//api/db:api_production_datasource@bazel", + "deps": [ + { + "nodeId": "com.zaxxer:HikariCP@3.4.1" + } + ] + }, + { + "nodeId": "com.zaxxer:HikariCP@3.4.1", + "pkgId": "com.zaxxer:HikariCP@3.4.1", + "deps": [] + }, + { + "nodeId": "org.slf4j:slf4j-api@1.7.13", + "pkgId": "org.slf4j:slf4j-api@1.7.13", + "deps": [] + }, + { + "nodeId": "commons-io:commons-io@2.4", + "pkgId": "commons-io:commons-io@2.4", + "deps": [] + }, + { + "nodeId": "//database:data_sources@bazel", + "pkgId": "//database:data_sources@bazel", + "deps": [ + { + "nodeId": "com.mchange:c3p0@0.9.5.1" + }, + { + "nodeId": "com.zaxxer:HikariCP@3.4.1" + } + ] + }, + { + "nodeId": "com.mchange:c3p0@0.9.5.1", + "pkgId": "com.mchange:c3p0@0.9.5.1", + "deps": [ + { + "nodeId": "com.mchange:mchange-commons-java@0.2.10" + } + ] + }, + { + "nodeId": "com.mchange:mchange-commons-java@0.2.10", + "pkgId": "com.mchange:mchange-commons-java@0.2.10", + "deps": [] + }, + { + "nodeId": "//database/exceptions:main@bazel", + "pkgId": "//database/exceptions:main@bazel", + "deps": [ + { + "nodeId": "com.mchange:c3p0@0.9.5.1" + }, + { + "nodeId": "org.postgresql:postgresql@42.3.3" + } + ] + }, + { + "nodeId": "//utils/nullability:main@bazel", + "pkgId": "//utils/nullability:main@bazel", + "deps": [] + }, + { + "nodeId": "//dockerized/postgres:main@bazel", + "pkgId": "//dockerized/postgres:main@bazel", + "deps": [ + { + "nodeId": "//database:credential_models@bazel" + }, + { + "nodeId": "//database:postgresql_jdbc_fix@bazel" + }, + { + "nodeId": "//dockerized/common:main@bazel" + }, + { + "nodeId": "org.postgresql:postgresql@42.3.3" + } + ] + }, + { + "nodeId": "//dockerized/common:main@bazel", + "pkgId": "//dockerized/common:main@bazel", + "deps": [ + { + "nodeId": "//metal:main@bazel" + } + ] + }, + { + "nodeId": "//metal:main@bazel", + "pkgId": "//metal:main@bazel", + "deps": [ + { + "nodeId": "com.amazonaws:aws-java-sdk-logs@1.12.84" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-resourcegroupstaggingapi@1.12.84" + }, + { + "nodeId": "com.google.code.gson:gson@2.9.0" + } + ] + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-logs@1.12.84", + "pkgId": "com.amazonaws:aws-java-sdk-logs@1.12.84", + "deps": [ + { + "nodeId": "com.amazonaws:jmespath-java@1.11.91" + } + ] + }, + { + "nodeId": "com.amazonaws:jmespath-java@1.11.91", + "pkgId": "com.amazonaws:jmespath-java@1.11.91", + "deps": [] + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-resourcegroupstaggingapi@1.12.84", + "pkgId": "com.amazonaws:aws-java-sdk-resourcegroupstaggingapi@1.12.84", + "deps": [ + { + "nodeId": "com.amazonaws:jmespath-java@1.11.91" + } + ] + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-s3@1.12.84", + "pkgId": "com.amazonaws:aws-java-sdk-s3@1.12.84", + "deps": [ + { + "nodeId": "com.amazonaws:aws-java-sdk-kms@1.12.84" + }, + { + "nodeId": "com.amazonaws:jmespath-java@1.11.91" + } + ] + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-kms@1.12.84", + "pkgId": "com.amazonaws:aws-java-sdk-kms@1.12.84", + "deps": [ + { + "nodeId": "com.amazonaws:jmespath-java@1.11.91" + } + ] + }, + { + "nodeId": "//newrelic_utils:donkey_logs_url_builder@bazel", + "pkgId": "//newrelic_utils:donkey_logs_url_builder@bazel", + "deps": [] + }, + { + "nodeId": "//slack:main@bazel", + "pkgId": "//slack:main@bazel", + "deps": [ + { + "nodeId": "//logger:acmecorp_logger@bazel" + } + ] + }, + { + "nodeId": "//http:main@bazel", + "pkgId": "//http:main@bazel", + "deps": [ + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-base@2.9.8" + }, + { + "nodeId": "jakarta.annotation:jakarta.annotation-api@1.3.5" + }, + { + "nodeId": "javax.servlet:javax.servlet-api@3.1.0" + }, + { + "nodeId": "org.eclipse.jetty:jetty-server@9.4.40.v20210413" + }, + { + "nodeId": "org.eclipse.jetty:jetty-util@9.4.40.v20210413" + }, + { + "nodeId": "org.glassfish.hk2:hk2-api@2.6.1" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-server@2.31" + }, + { + "nodeId": "org.glassfish.jersey.inject:jersey-hk2@2.31" + } + ] + }, + { + "nodeId": "javax.servlet:javax.servlet-api@3.1.0", + "pkgId": "javax.servlet:javax.servlet-api@3.1.0", + "deps": [] + }, + { + "nodeId": "org.eclipse.jetty:jetty-server@9.4.40.v20210413", + "pkgId": "org.eclipse.jetty:jetty-server@9.4.40.v20210413", + "deps": [ + { + "nodeId": "javax.servlet:javax.servlet-api@3.1.0" + }, + { + "nodeId": "org.eclipse.jetty:jetty-http@9.4.40.v20210413" + }, + { + "nodeId": "org.eclipse.jetty:jetty-io@9.4.40.v20210413" + } + ] + }, + { + "nodeId": "org.eclipse.jetty:jetty-http@9.4.40.v20210413", + "pkgId": "org.eclipse.jetty:jetty-http@9.4.40.v20210413", + "deps": [ + { + "nodeId": "org.eclipse.jetty:jetty-io@9.4.40.v20210413" + }, + { + "nodeId": "org.eclipse.jetty:jetty-util@9.4.40.v20210413" + } + ] + }, + { + "nodeId": "org.eclipse.jetty:jetty-io@9.4.40.v20210413", + "pkgId": "org.eclipse.jetty:jetty-io@9.4.40.v20210413", + "deps": [ + { + "nodeId": "org.eclipse.jetty:jetty-util@9.4.40.v20210413" + } + ] + }, + { + "nodeId": "org.eclipse.jetty:jetty-util@9.4.40.v20210413", + "pkgId": "org.eclipse.jetty:jetty-util@9.4.40.v20210413", + "deps": [] + }, + { + "nodeId": "org.glassfish.hk2:hk2-api@2.6.1", + "pkgId": "org.glassfish.hk2:hk2-api@2.6.1", + "deps": [ + { + "nodeId": "org.glassfish.hk2:hk2-utils@2.6.1" + }, + { + "nodeId": "org.glassfish.hk2.external:aopalliance-repackaged@2.6.1" + } + ] + }, + { + "nodeId": "org.glassfish.hk2:hk2-utils@2.6.1", + "pkgId": "org.glassfish.hk2:hk2-utils@2.6.1", + "deps": [ + { + "nodeId": "jakarta.annotation:jakarta.annotation-api@1.3.5" + } + ] + }, + { + "nodeId": "org.glassfish.hk2.external:aopalliance-repackaged@2.6.1", + "pkgId": "org.glassfish.hk2.external:aopalliance-repackaged@2.6.1", + "deps": [] + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-server@2.31", + "pkgId": "org.glassfish.jersey.core:jersey-server@2.31", + "deps": [ + { + "nodeId": "org.glassfish.jersey.media:jersey-media-jaxb@2.31" + }, + { + "nodeId": "jakarta.annotation:jakarta.annotation-api@1.3.5" + }, + { + "nodeId": "jakarta.validation:jakarta.validation-api@2.0.2" + }, + { + "nodeId": "jakarta.xml.bind:jakarta.xml.bind-api@3.0.1" + } + ] + }, + { + "nodeId": "org.glassfish.jersey.media:jersey-media-jaxb@2.31", + "pkgId": "org.glassfish.jersey.media:jersey-media-jaxb@2.31", + "deps": [ + { + "nodeId": "org.glassfish.hk2:osgi-resource-locator@1.0.3" + } + ] + }, + { + "nodeId": "jakarta.validation:jakarta.validation-api@2.0.2", + "pkgId": "jakarta.validation:jakarta.validation-api@2.0.2", + "deps": [] + }, + { + "nodeId": "jakarta.xml.bind:jakarta.xml.bind-api@3.0.1", + "pkgId": "jakarta.xml.bind:jakarta.xml.bind-api@3.0.1", + "deps": [ + { + "nodeId": "com.sun.activation:jakarta.activation@2.0.1" + } + ] + }, + { + "nodeId": "org.glassfish.jersey.inject:jersey-hk2@2.31", + "pkgId": "org.glassfish.jersey.inject:jersey-hk2@2.31", + "deps": [ + { + "nodeId": "org.glassfish.hk2:hk2-locator@2.6.1" + }, + { + "nodeId": "org.javassist:javassist@3.21.0-GA" + } + ] + }, + { + "nodeId": "org.glassfish.hk2:hk2-locator@2.6.1", + "pkgId": "org.glassfish.hk2:hk2-locator@2.6.1", + "deps": [ + { + "nodeId": "org.glassfish.hk2.external:aopalliance-repackaged@2.6.1" + }, + { + "nodeId": "org.glassfish.hk2:hk2-utils@2.6.1" + }, + { + "nodeId": "jakarta.annotation:jakarta.annotation-api@1.3.5" + }, + { + "nodeId": "org.javassist:javassist@3.21.0-GA" + }, + { + "nodeId": "org.glassfish.hk2:hk2-api@2.6.1" + } + ] + }, + { + "nodeId": "org.javassist:javassist@3.21.0-GA", + "pkgId": "org.javassist:javassist@3.21.0-GA", + "deps": [] + }, + { + "nodeId": "//forms:main@bazel", + "pkgId": "//forms:main@bazel", + "deps": [ + { + "nodeId": "//app:docs_deps@bazel" + } + ] + }, + { + "nodeId": "//app:docs_deps@bazel", + "pkgId": "//app:docs_deps@bazel", + "deps": [] + }, + { + "nodeId": "//heartbeat:main@bazel", + "pkgId": "//heartbeat:main@bazel", + "deps": [] + }, + { + "nodeId": "//markdown:main@bazel", + "pkgId": "//markdown:main@bazel", + "deps": [ + { + "nodeId": "org.apache.velocity:velocity@1.7" + }, + { + "nodeId": "org.pegdown:pegdown@1.5.0" + } + ] + }, + { + "nodeId": "org.apache.velocity:velocity@1.7", + "pkgId": "org.apache.velocity:velocity@1.7", + "deps": [ + { + "nodeId": "commons-collections:commons-collections@3.2.2" + } + ] + }, + { + "nodeId": "commons-collections:commons-collections@3.2.2", + "pkgId": "commons-collections:commons-collections@3.2.2", + "deps": [] + }, + { + "nodeId": "org.pegdown:pegdown@1.5.0", + "pkgId": "org.pegdown:pegdown@1.5.0", + "deps": [ + { + "nodeId": "org.parboiled:parboiled-java@1.2.0" + } + ] + }, + { + "nodeId": "org.parboiled:parboiled-java@1.2.0", + "pkgId": "org.parboiled:parboiled-java@1.2.0", + "deps": [ + { + "nodeId": "org.ow2.asm:asm-tree@8.0.1" + }, + { + "nodeId": "org.ow2.asm:asm@8.0.1" + }, + { + "nodeId": "org.ow2.asm:asm-analysis@8.0.1" + }, + { + "nodeId": "org.ow2.asm:asm-util@8.0.1" + }, + { + "nodeId": "org.parboiled:parboiled-core@1.2.0" + } + ] + }, + { + "nodeId": "org.ow2.asm:asm-tree@8.0.1", + "pkgId": "org.ow2.asm:asm-tree@8.0.1", + "deps": [ + { + "nodeId": "org.ow2.asm:asm@8.0.1" + } + ] + }, + { + "nodeId": "org.ow2.asm:asm@8.0.1", + "pkgId": "org.ow2.asm:asm@8.0.1", + "deps": [] + }, + { + "nodeId": "org.ow2.asm:asm-analysis@8.0.1", + "pkgId": "org.ow2.asm:asm-analysis@8.0.1", + "deps": [ + { + "nodeId": "org.ow2.asm:asm-tree@8.0.1" + } + ] + }, + { + "nodeId": "org.ow2.asm:asm-util@8.0.1", + "pkgId": "org.ow2.asm:asm-util@8.0.1", + "deps": [ + { + "nodeId": "org.ow2.asm:asm@8.0.1" + }, + { + "nodeId": "org.ow2.asm:asm-analysis@8.0.1" + }, + { + "nodeId": "org.ow2.asm:asm-tree@8.0.1" + } + ] + }, + { + "nodeId": "org.parboiled:parboiled-core@1.2.0", + "pkgId": "org.parboiled:parboiled-core@1.2.0", + "deps": [] + }, + { + "nodeId": "//schema_migration:schema_migration_info@bazel", + "pkgId": "//schema_migration:schema_migration_info@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:names_dep_to_avoid_cyclic_core_dep@bazel" + } + ] + }, + { + "nodeId": "//core_interfaces:names_dep_to_avoid_cyclic_core_dep@bazel", + "pkgId": "//core_interfaces:names_dep_to_avoid_cyclic_core_dep@bazel", + "deps": [ + { + "nodeId": "com.ibm.icu:icu4j@62.1" + } + ] + }, + { + "nodeId": "com.ibm.icu:icu4j@62.1", + "pkgId": "com.ibm.icu:icu4j@62.1", + "deps": [] + }, + { + "nodeId": "//sources/types:main@bazel", + "pkgId": "//sources/types:main@bazel", + "deps": [] + }, + { + "nodeId": "//utils/validations:main@bazel", + "pkgId": "//utils/validations:main@bazel", + "deps": [] + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-joda@2.9.8", + "pkgId": "com.fasterxml.jackson.datatype:jackson-datatype-joda@2.9.8", + "deps": [ + { + "nodeId": "joda-time:joda-time@2.9.2" + } + ] + }, + { + "nodeId": "org.glassfish.jersey.security:oauth1-client@2.31", + "pkgId": "org.glassfish.jersey.security:oauth1-client@2.31", + "deps": [ + { + "nodeId": "org.glassfish.jersey.security:oauth1-signature@2.31" + } + ] + }, + { + "nodeId": "org.glassfish.jersey.security:oauth1-signature@2.31", + "pkgId": "org.glassfish.jersey.security:oauth1-signature@2.31", + "deps": [] + }, + { + "nodeId": "//database:hikari@bazel", + "pkgId": "//database:hikari@bazel", + "deps": [ + { + "nodeId": "com.zaxxer:HikariCP@3.4.1" + } + ] + }, + { + "nodeId": "//database:main@bazel", + "pkgId": "//database:main@bazel", + "deps": [ + { + "nodeId": "//database:postgresql_jdbc_fix@bazel" + }, + { + "nodeId": "//api/db:api_production_datasource@bazel" + }, + { + "nodeId": "//database:credential_models@bazel" + }, + { + "nodeId": "//database/exceptions:main@bazel" + }, + { + "nodeId": "//dbt/manifest:main@bazel" + }, + { + "nodeId": "//dockerized/postgres:main@bazel" + }, + { + "nodeId": "//dynamo:main@bazel" + }, + { + "nodeId": "//jwt:main@bazel" + }, + { + "nodeId": "//partners:main@bazel" + }, + { + "nodeId": "//schema_migration:enum_types@bazel" + }, + { + "nodeId": "//warehouses/common:warehouse_type@bazel" + }, + { + "nodeId": "//webhook:main@bazel" + }, + { + "nodeId": "//words:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.dataformat:jackson-dataformat-smile@2.9.8" + }, + { + "nodeId": "com.google.auth:google-auth-library-credentials@0.9.1" + }, + { + "nodeId": "com.mchange:c3p0@0.9.5.1" + }, + { + "nodeId": "com.zaxxer:HikariCP@3.4.1" + }, + { + "nodeId": "io.netty:netty-buffer@4.1.50.Final" + }, + { + "nodeId": "javax.validation:validation-api@1.1.0.Final" + }, + { + "nodeId": "org.postgresql:postgresql@42.3.3" + } + ] + }, + { + "nodeId": "//dbt/manifest:main@bazel", + "pkgId": "//dbt/manifest:main@bazel", + "deps": [] + }, + { + "nodeId": "//dynamo:main@bazel", + "pkgId": "//dynamo:main@bazel", + "deps": [ + { + "nodeId": "//jackson_module_json_schema:main@bazel" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-dynamodb@1.12.84" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-kms@1.12.84" + } + ] + }, + { + "nodeId": "//aws:main@bazel", + "pkgId": "//aws:main@bazel", + "deps": [ + { + "nodeId": "//cloud_storage:main@bazel" + }, + { + "nodeId": "//emails:core@bazel" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-cloudtrail@1.12.84" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-config@1.12.84" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-dynamodb@1.12.84" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-ec2@1.12.84" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-elasticloadbalancingv2@1.12.84" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-glue@1.12.84" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-iam@1.12.84" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-kms@1.12.84" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-route53@1.12.84" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-ses@1.12.84" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-sts@1.12.84" + }, + { + "nodeId": "org.glassfish.jersey.inject:jersey-hk2@2.31" + } + ] + }, + { + "nodeId": "//cloud_storage:main@bazel", + "pkgId": "//cloud_storage:main@bazel", + "deps": [] + }, + { + "nodeId": "//emails:core@bazel", + "pkgId": "//emails:core@bazel", + "deps": [ + { + "nodeId": "//logger:acmecorp_logger@bazel" + } + ] + }, + { + "nodeId": "//secrets/system:main@bazel", + "pkgId": "//secrets/system:main@bazel", + "deps": [ + { + "nodeId": "com.fasterxml.jackson.dataformat:jackson-dataformat-yaml@2.9.8" + } + ] + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-cloudtrail@1.12.84", + "pkgId": "com.amazonaws:aws-java-sdk-cloudtrail@1.12.84", + "deps": [ + { + "nodeId": "com.amazonaws:jmespath-java@1.11.91" + } + ] + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-config@1.12.84", + "pkgId": "com.amazonaws:aws-java-sdk-config@1.12.84", + "deps": [ + { + "nodeId": "com.amazonaws:jmespath-java@1.11.91" + } + ] + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-dynamodb@1.12.84", + "pkgId": "com.amazonaws:aws-java-sdk-dynamodb@1.12.84", + "deps": [ + { + "nodeId": "com.amazonaws:jmespath-java@1.11.91" + } + ] + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-ec2@1.12.84", + "pkgId": "com.amazonaws:aws-java-sdk-ec2@1.12.84", + "deps": [ + { + "nodeId": "com.amazonaws:jmespath-java@1.11.91" + } + ] + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-elasticloadbalancingv2@1.12.84", + "pkgId": "com.amazonaws:aws-java-sdk-elasticloadbalancingv2@1.12.84", + "deps": [ + { + "nodeId": "com.amazonaws:jmespath-java@1.11.91" + } + ] + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-glue@1.12.84", + "pkgId": "com.amazonaws:aws-java-sdk-glue@1.12.84", + "deps": [ + { + "nodeId": "com.amazonaws:jmespath-java@1.11.91" + } + ] + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-iam@1.12.84", + "pkgId": "com.amazonaws:aws-java-sdk-iam@1.12.84", + "deps": [ + { + "nodeId": "com.amazonaws:jmespath-java@1.11.91" + } + ] + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-route53@1.12.84", + "pkgId": "com.amazonaws:aws-java-sdk-route53@1.12.84", + "deps": [ + { + "nodeId": "com.amazonaws:jmespath-java@1.11.91" + } + ] + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-ses@1.12.84", + "pkgId": "com.amazonaws:aws-java-sdk-ses@1.12.84", + "deps": [ + { + "nodeId": "com.amazonaws:jmespath-java@1.11.91" + } + ] + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-sts@1.12.84", + "pkgId": "com.amazonaws:aws-java-sdk-sts@1.12.84", + "deps": [ + { + "nodeId": "com.amazonaws:jmespath-java@1.11.91" + } + ] + }, + { + "nodeId": "//jackson_module_json_schema:main@bazel", + "pkgId": "//jackson_module_json_schema:main@bazel", + "deps": [ + { + "nodeId": "javax.validation:validation-api@1.1.0.Final" + } + ] + }, + { + "nodeId": "javax.validation:validation-api@1.1.0.Final", + "pkgId": "javax.validation:validation-api@1.1.0.Final", + "deps": [] + }, + { + "nodeId": "//partners:main@bazel", + "pkgId": "//partners:main@bazel", + "deps": [] + }, + { + "nodeId": "//webhook:main@bazel", + "pkgId": "//webhook:main@bazel", + "deps": [] + }, + { + "nodeId": "//words:main@bazel", + "pkgId": "//words:main@bazel", + "deps": [] + }, + { + "nodeId": "com.fasterxml.jackson.dataformat:jackson-dataformat-smile@2.9.8", + "pkgId": "com.fasterxml.jackson.dataformat:jackson-dataformat-smile@2.9.8", + "deps": [] + }, + { + "nodeId": "com.google.api-client:google-api-client@1.31.1", + "pkgId": "com.google.api-client:google-api-client@1.31.1", + "deps": [ + { + "nodeId": "com.google.http-client:google-http-client-apache-v2@1.39.2" + }, + { + "nodeId": "com.google.http-client:google-http-client-jackson2@1.35.0" + } + ] + }, + { + "nodeId": "com.google.http-client:google-http-client-apache-v2@1.39.2", + "pkgId": "com.google.http-client:google-http-client-apache-v2@1.39.2", + "deps": [] + }, + { + "nodeId": "com.google.oauth-client:google-oauth-client@1.23.0", + "pkgId": "com.google.oauth-client:google-oauth-client@1.23.0", + "deps": [] + }, + { + "nodeId": "io.micrometer:micrometer-core@1.5.3", + "pkgId": "io.micrometer:micrometer-core@1.5.3", + "deps": [ + { + "nodeId": "org.hdrhistogram:HdrHistogram@2.1.12" + }, + { + "nodeId": "org.latencyutils:LatencyUtils@2.0.3" + } + ] + }, + { + "nodeId": "org.hdrhistogram:HdrHistogram@2.1.12", + "pkgId": "org.hdrhistogram:HdrHistogram@2.1.12", + "deps": [] + }, + { + "nodeId": "org.latencyutils:LatencyUtils@2.0.3", + "pkgId": "org.latencyutils:LatencyUtils@2.0.3", + "deps": [] + }, + { + "nodeId": "//common:main@bazel", + "pkgId": "//common:main@bazel", + "deps": [ + { + "nodeId": "//dynamo:main@bazel" + }, + { + "nodeId": "//utils/threading:main@bazel" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-ec2@1.12.84" + }, + { + "nodeId": "com.ibm.icu:icu4j@62.1" + }, + { + "nodeId": "org.apache.velocity:velocity@1.7" + } + ] + }, + { + "nodeId": "//utils/threading:main@bazel", + "pkgId": "//utils/threading:main@bazel", + "deps": [] + }, + { + "nodeId": "//core_interfaces/cursor:main@bazel", + "pkgId": "//core_interfaces/cursor:main@bazel", + "deps": [ + { + "nodeId": "//database/resilience:main@bazel" + } + ] + }, + { + "nodeId": "//database/resilience:main@bazel", + "pkgId": "//database/resilience:main@bazel", + "deps": [ + { + "nodeId": "//database/exceptions:main@bazel" + } + ] + }, + { + "nodeId": "//database:ssh_verify@bazel", + "pkgId": "//database:ssh_verify@bazel", + "deps": [] + }, + { + "nodeId": "//database:tls_verify@bazel", + "pkgId": "//database:tls_verify@bazel", + "deps": [] + }, + { + "nodeId": "//dbt/api/client:main@bazel", + "pkgId": "//dbt/api/client:main@bazel", + "deps": [ + { + "nodeId": "//http:basic_auth_credentials@bazel" + }, + { + "nodeId": "//http:curl_request@bazel" + }, + { + "nodeId": "//utils/uri:main@bazel" + } + ] + }, + { + "nodeId": "//http:basic_auth_credentials@bazel", + "pkgId": "//http:basic_auth_credentials@bazel", + "deps": [] + }, + { + "nodeId": "//http:curl_request@bazel", + "pkgId": "//http:curl_request@bazel", + "deps": [ + { + "nodeId": "jakarta.annotation:jakarta.annotation-api@1.3.5" + } + ] + }, + { + "nodeId": "//utils/uri:main@bazel", + "pkgId": "//utils/uri:main@bazel", + "deps": [ + { + "nodeId": "//database:enums@bazel" + } + ] + }, + { + "nodeId": "//dbt/services:main@bazel", + "pkgId": "//dbt/services:main@bazel", + "deps": [ + { + "nodeId": "//database:hikari@bazel" + }, + { + "nodeId": "//database/exceptions:main@bazel" + }, + { + "nodeId": "//dbt/git:main@bazel" + }, + { + "nodeId": "//emails:core@bazel" + }, + { + "nodeId": "//emails:main@bazel" + }, + { + "nodeId": "//feature_flag/service:main@bazel" + }, + { + "nodeId": "//services:main@bazel" + }, + { + "nodeId": "//utils/bootstrap:main@bazel" + }, + { + "nodeId": "//utils/validations:main@bazel" + }, + { + "nodeId": "com.cronutils:cron-utils@9.0.2" + }, + { + "nodeId": "com.fasterxml.jackson.dataformat:jackson-dataformat-yaml@2.9.8" + }, + { + "nodeId": "com.google.cloud:google-cloud-storage@1.108.0" + }, + { + "nodeId": "javax.validation:validation-api@1.1.0.Final" + }, + { + "nodeId": "org.glassfish.hk2:hk2-api@2.6.1" + }, + { + "nodeId": "org.hibernate:hibernate-validator@5.4.3.Final" + } + ] + }, + { + "nodeId": "//dbt/git:main@bazel", + "pkgId": "//dbt/git:main@bazel", + "deps": [ + { + "nodeId": "org.bouncycastle:bcpkix-jdk15on@1.70" + }, + { + "nodeId": "org.bouncycastle:bcprov-jdk15on@1.70" + }, + { + "nodeId": "org.eclipse.jgit:org.eclipse.jgit@6.2.0.202206071550-r" + }, + { + "nodeId": "org.eclipse.jgit:org.eclipse.jgit.ssh.apache@6.2.0.202206071550-r" + } + ] + }, + { + "nodeId": "org.eclipse.jgit:org.eclipse.jgit@6.2.0.202206071550-r", + "pkgId": "org.eclipse.jgit:org.eclipse.jgit@6.2.0.202206071550-r", + "deps": [ + { + "nodeId": "com.googlecode.javaewah:JavaEWAH@1.1.13" + } + ] + }, + { + "nodeId": "com.googlecode.javaewah:JavaEWAH@1.1.13", + "pkgId": "com.googlecode.javaewah:JavaEWAH@1.1.13", + "deps": [] + }, + { + "nodeId": "org.eclipse.jgit:org.eclipse.jgit.ssh.apache@6.2.0.202206071550-r", + "pkgId": "org.eclipse.jgit:org.eclipse.jgit.ssh.apache@6.2.0.202206071550-r", + "deps": [ + { + "nodeId": "net.i2p.crypto:eddsa@0.3.0" + }, + { + "nodeId": "org.eclipse.jgit:org.eclipse.jgit@6.2.0.202206071550-r" + }, + { + "nodeId": "org.apache.sshd:sshd-sftp@2.8.0" + }, + { + "nodeId": "org.apache.sshd:sshd-osgi@2.8.0" + } + ] + }, + { + "nodeId": "net.i2p.crypto:eddsa@0.3.0", + "pkgId": "net.i2p.crypto:eddsa@0.3.0", + "deps": [] + }, + { + "nodeId": "org.apache.sshd:sshd-sftp@2.8.0", + "pkgId": "org.apache.sshd:sshd-sftp@2.8.0", + "deps": [ + { + "nodeId": "org.apache.sshd:sshd-core@2.8.0" + }, + { + "nodeId": "org.slf4j:jcl-over-slf4j@1.7.32" + } + ] + }, + { + "nodeId": "org.apache.sshd:sshd-core@2.8.0", + "pkgId": "org.apache.sshd:sshd-core@2.8.0", + "deps": [ + { + "nodeId": "org.apache.sshd:sshd-common@2.8.0" + }, + { + "nodeId": "org.slf4j:jcl-over-slf4j@1.7.32" + } + ] + }, + { + "nodeId": "org.apache.sshd:sshd-common@2.8.0", + "pkgId": "org.apache.sshd:sshd-common@2.8.0", + "deps": [ + { + "nodeId": "org.slf4j:jcl-over-slf4j@1.7.32" + } + ] + }, + { + "nodeId": "org.slf4j:jcl-over-slf4j@1.7.32", + "pkgId": "org.slf4j:jcl-over-slf4j@1.7.32", + "deps": [] + }, + { + "nodeId": "org.apache.sshd:sshd-osgi@2.8.0", + "pkgId": "org.apache.sshd:sshd-osgi@2.8.0", + "deps": [ + { + "nodeId": "org.slf4j:jcl-over-slf4j@1.7.32" + } + ] + }, + { + "nodeId": "//emails:main@bazel", + "pkgId": "//emails:main@bazel", + "deps": [ + { + "nodeId": "//emails:core@bazel" + }, + { + "nodeId": "//feature_flag:flags@bazel" + }, + { + "nodeId": "//feature_flag/service:main@bazel" + }, + { + "nodeId": "com.hubspot.jinjava:jinjava@2.5.6" + } + ] + }, + { + "nodeId": "//feature_flag:flags@bazel", + "pkgId": "//feature_flag:flags@bazel", + "deps": [ + { + "nodeId": "//feature_flag:details@bazel" + }, + { + "nodeId": "//database:enums@bazel" + }, + { + "nodeId": "//database:flags@bazel" + }, + { + "nodeId": "//database/exceptions:main@bazel" + }, + { + "nodeId": "//logger:acmecorp_logger@bazel" + }, + { + "nodeId": "//newrelic_utils:donkey_logs_url_builder@bazel" + }, + { + "nodeId": "//slack:main@bazel" + }, + { + "nodeId": "//warehouses/common:warehouse_type@bazel" + } + ] + }, + { + "nodeId": "//feature_flag/service:main@bazel", + "pkgId": "//feature_flag/service:main@bazel", + "deps": [ + { + "nodeId": "//warehouses/common:warehouse_type@bazel" + } + ] + }, + { + "nodeId": "com.hubspot.jinjava:jinjava@2.5.6", + "pkgId": "com.hubspot.jinjava:jinjava@2.5.6", + "deps": [ + { + "nodeId": "org.jsoup:jsoup@1.8.2" + }, + { + "nodeId": "ch.obermuhlner:big-math@2.0.0" + }, + { + "nodeId": "com.google.code.findbugs:annotations@3.0.1" + }, + { + "nodeId": "org.javassist:javassist@3.21.0-GA" + }, + { + "nodeId": "com.google.re2j:re2j@1.5" + }, + { + "nodeId": "com.googlecode.java-ipv6:java-ipv6@0.17" + }, + { + "nodeId": "commons-net:commons-net@3.3" + } + ] + }, + { + "nodeId": "org.jsoup:jsoup@1.8.2", + "pkgId": "org.jsoup:jsoup@1.8.2", + "deps": [] + }, + { + "nodeId": "ch.obermuhlner:big-math@2.0.0", + "pkgId": "ch.obermuhlner:big-math@2.0.0", + "deps": [] + }, + { + "nodeId": "com.google.code.findbugs:annotations@3.0.1", + "pkgId": "com.google.code.findbugs:annotations@3.0.1", + "deps": [] + }, + { + "nodeId": "com.google.re2j:re2j@1.5", + "pkgId": "com.google.re2j:re2j@1.5", + "deps": [] + }, + { + "nodeId": "com.googlecode.java-ipv6:java-ipv6@0.17", + "pkgId": "com.googlecode.java-ipv6:java-ipv6@0.17", + "deps": [] + }, + { + "nodeId": "commons-net:commons-net@3.3", + "pkgId": "commons-net:commons-net@3.3", + "deps": [] + }, + { + "nodeId": "//services:main@bazel", + "pkgId": "//services:main@bazel", + "deps": [ + { + "nodeId": "//common:main@bazel" + }, + { + "nodeId": "//core_implementation:main@bazel" + }, + { + "nodeId": "//core_interfaces/cursor:main@bazel" + }, + { + "nodeId": "//database:ssh_verify@bazel" + }, + { + "nodeId": "//database:tls_verify@bazel" + }, + { + "nodeId": "//database/exceptions:main@bazel" + }, + { + "nodeId": "//emails:core@bazel" + }, + { + "nodeId": "//emails:main@bazel" + }, + { + "nodeId": "//feature_flag:flags@bazel" + }, + { + "nodeId": "//feature_flag/service:main@bazel" + }, + { + "nodeId": "//heartbeat:main@bazel" + }, + { + "nodeId": "//partners:main@bazel" + }, + { + "nodeId": "//refine:main@bazel" + }, + { + "nodeId": "//schema_service:main@bazel" + }, + { + "nodeId": "//services/cmk_encryption:main@bazel" + }, + { + "nodeId": "//services/logging:main@bazel" + }, + { + "nodeId": "//utils/validations:main@bazel" + }, + { + "nodeId": "//warehouses/big_query:main@bazel" + }, + { + "nodeId": "//warehouses/common:warehouse_type@bazel" + }, + { + "nodeId": "//words:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.dataformat:jackson-dataformat-xml@2.9.8" + }, + { + "nodeId": "com.google.apis:google-api-services-cloudresourcemanager@v1-rev495-1.23.0" + }, + { + "nodeId": "com.google.apis:google-api-services-iam@v1-rev193-1.22.0" + }, + { + "nodeId": "com.stripe:stripe-java@19.20.0" + }, + { + "nodeId": "io.swagger.core.v3:swagger-annotations@2.1.11" + }, + { + "nodeId": "net.agkn:hll@1.6.0" + }, + { + "nodeId": "org.glassfish.hk2:hk2-api@2.6.1" + } + ] + }, + { + "nodeId": "//core_implementation:main@bazel", + "pkgId": "//core_implementation:main@bazel", + "deps": [ + { + "nodeId": "//core_implementation:operation_java_proto@bazel" + }, + { + "nodeId": "//cloudwatch_metrics:main@bazel" + }, + { + "nodeId": "//common:main@bazel" + }, + { + "nodeId": "//core_implementation/column_blocking:main@bazel" + }, + { + "nodeId": "//core_implementation/proto:main@bazel" + }, + { + "nodeId": "//core_implementation/proto:row_java_proto@bazel" + }, + { + "nodeId": "//core_implementation/transform:main@bazel" + }, + { + "nodeId": "//core_interfaces:warning@bazel" + }, + { + "nodeId": "//core_interfaces/cursor:main@bazel" + }, + { + "nodeId": "//heartbeat:main@bazel" + }, + { + "nodeId": "//pipeline_queue:main@bazel" + }, + { + "nodeId": "//schema_migration:main@bazel" + }, + { + "nodeId": "//schema_migration:service@bazel" + }, + { + "nodeId": "//utils/network_monitor:main@bazel" + }, + { + "nodeId": "//utils/os:main@bazel" + }, + { + "nodeId": "//utils/serializers:main@bazel" + }, + { + "nodeId": "//utils/sync_statistics:main@bazel" + }, + { + "nodeId": "//utils/threading:main@bazel" + }, + { + "nodeId": "//warehouses/common:observability@bazel" + }, + { + "nodeId": "//warehouses/common:warehouse_type@bazel" + }, + { + "nodeId": "com.github.alexandrnikitin:bloom-filter_2.11@0.11.0" + }, + { + "nodeId": "io.netty:netty-buffer@4.1.50.Final" + }, + { + "nodeId": "net.agkn:hll@1.6.0" + }, + { + "nodeId": "org.jetbrains.kotlin:kotlin-stdlib@1.3.50" + }, + { + "nodeId": "org.jooq:jool-java-8@0.9.14" + }, + { + "nodeId": "org.openjdk.jmh:jmh-core@1.19" + }, + { + "nodeId": "org.rocksdb:rocksdbjni@6.8.1" + }, + { + "nodeId": "org.xerial.snappy:snappy-java@1.1.8.4" + } + ] + }, + { + "nodeId": "//core_implementation:operation_java_proto@bazel", + "pkgId": "//core_implementation:operation_java_proto@bazel", + "deps": [ + { + "nodeId": "//core_implementation:operation_proto@bazel" + } + ] + }, + { + "nodeId": "//core_implementation:operation_proto@bazel", + "pkgId": "//core_implementation:operation_proto@bazel", + "deps": [ + { + "nodeId": "//core_implementation/proto:row_proto@bazel" + } + ] + }, + { + "nodeId": "//core_implementation/proto:row_proto@bazel", + "pkgId": "//core_implementation/proto:row_proto@bazel", + "deps": [] + }, + { + "nodeId": "//cloudwatch_metrics:main@bazel", + "pkgId": "//cloudwatch_metrics:main@bazel", + "deps": [ + { + "nodeId": "com.amazonaws:aws-java-sdk-cloudwatch@1.12.84" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-logs@1.12.84" + } + ] + }, + { + "nodeId": "//google_cloud:main@bazel", + "pkgId": "//google_cloud:main@bazel", + "deps": [ + { + "nodeId": "//cloud_storage:main@bazel" + }, + { + "nodeId": "@com_google_cloud_google_cloud_bigquerydatatransfer//:main@bazel" + }, + { + "nodeId": "com.google.api:gax-grpc@2.3.0" + }, + { + "nodeId": "com.google.api.grpc:proto-google-cloud-monitoring-v3@1.75.0" + }, + { + "nodeId": "com.google.api.grpc:proto-google-cloud-pubsub-v1@1.101.1" + }, + { + "nodeId": "com.google.api.grpc:proto-google-common-protos@1.15.0" + }, + { + "nodeId": "com.google.apis:google-api-services-bigquery@v2-rev459-1.25.0" + }, + { + "nodeId": "com.google.apis:google-api-services-cloudresourcemanager@v1-rev495-1.23.0" + }, + { + "nodeId": "com.google.apis:google-api-services-iam@v1-rev193-1.22.0" + }, + { + "nodeId": "com.google.apis:google-api-services-storage@v1-rev20200326-1.30.9" + }, + { + "nodeId": "com.google.auth:google-auth-library-credentials@0.9.1" + }, + { + "nodeId": "com.google.cloud:google-cloud-datastore@1.70.0" + }, + { + "nodeId": "com.google.cloud:google-cloud-monitoring@1.93.0" + }, + { + "nodeId": "com.google.cloud:google-cloud-pubsub@1.119.1" + }, + { + "nodeId": "com.google.cloud:google-cloud-storage@1.108.0" + }, + { + "nodeId": "com.google.http-client:google-http-client-jackson2@1.35.0" + }, + { + "nodeId": "com.google.protobuf:protobuf-java-util@3.18.2" + }, + { + "nodeId": "io.grpc:grpc-api@1.32.2" + }, + { + "nodeId": "io.jsonwebtoken:jjwt@0.9.0" + }, + { + "nodeId": "org.threeten:threetenbp@1.3.3" + } + ] + }, + { + "nodeId": "@com_google_cloud_google_cloud_bigquerydatatransfer//:main@bazel", + "pkgId": "@com_google_cloud_google_cloud_bigquerydatatransfer//:main@bazel", + "deps": [ + { + "nodeId": "com.google.api:gax-grpc@2.3.0" + }, + { + "nodeId": "com.google.api.grpc:proto-google-common-protos@1.15.0" + }, + { + "nodeId": "io.grpc:grpc-api@1.32.2" + }, + { + "nodeId": "io.grpc:grpc-protobuf@1.32.2" + }, + { + "nodeId": "io.grpc:grpc-stub@1.32.2" + }, + { + "nodeId": "org.threeten:threetenbp@1.3.3" + } + ] + }, + { + "nodeId": "com.google.api.grpc:proto-google-cloud-monitoring-v3@1.75.0", + "pkgId": "com.google.api.grpc:proto-google-cloud-monitoring-v3@1.75.0", + "deps": [ + { + "nodeId": "com.google.api.grpc:proto-google-common-protos@1.15.0" + } + ] + }, + { + "nodeId": "com.google.api.grpc:proto-google-cloud-pubsub-v1@1.101.1", + "pkgId": "com.google.api.grpc:proto-google-cloud-pubsub-v1@1.101.1", + "deps": [ + { + "nodeId": "com.google.guava:listenablefuture@9999.0-empty-to-avoid-conflict-with-guava" + }, + { + "nodeId": "com.google.errorprone:error_prone_annotations@2.13.1" + }, + { + "nodeId": "com.google.j2objc:j2objc-annotations@1.3" + }, + { + "nodeId": "com.google.api.grpc:proto-google-common-protos@1.15.0" + }, + { + "nodeId": "com.google.auto.value:auto-value-annotations@1.9" + }, + { + "nodeId": "org.checkerframework:checker-qual@3.22.0" + }, + { + "nodeId": "com.google.guava:failureaccess@1.0.1" + } + ] + }, + { + "nodeId": "com.google.guava:listenablefuture@9999.0-empty-to-avoid-conflict-with-guava", + "pkgId": "com.google.guava:listenablefuture@9999.0-empty-to-avoid-conflict-with-guava", + "deps": [] + }, + { + "nodeId": "com.google.guava:failureaccess@1.0.1", + "pkgId": "com.google.guava:failureaccess@1.0.1", + "deps": [] + }, + { + "nodeId": "com.google.apis:google-api-services-bigquery@v2-rev459-1.25.0", + "pkgId": "com.google.apis:google-api-services-bigquery@v2-rev459-1.25.0", + "deps": [] + }, + { + "nodeId": "com.google.apis:google-api-services-cloudresourcemanager@v1-rev495-1.23.0", + "pkgId": "com.google.apis:google-api-services-cloudresourcemanager@v1-rev495-1.23.0", + "deps": [] + }, + { + "nodeId": "com.google.apis:google-api-services-iam@v1-rev193-1.22.0", + "pkgId": "com.google.apis:google-api-services-iam@v1-rev193-1.22.0", + "deps": [] + }, + { + "nodeId": "com.google.apis:google-api-services-storage@v1-rev20200326-1.30.9", + "pkgId": "com.google.apis:google-api-services-storage@v1-rev20200326-1.30.9", + "deps": [] + }, + { + "nodeId": "com.google.cloud:google-cloud-datastore@1.70.0", + "pkgId": "com.google.cloud:google-cloud-datastore@1.70.0", + "deps": [ + { + "nodeId": "com.google.cloud.datastore:datastore-v1-proto-client@1.6.0" + }, + { + "nodeId": "com.google.cloud:google-cloud-core-http@1.48.0" + }, + { + "nodeId": "com.google.api.grpc:proto-google-cloud-datastore-v1@0.54.0" + }, + { + "nodeId": "io.grpc:grpc-core@1.32.2" + } + ] + }, + { + "nodeId": "com.google.cloud.datastore:datastore-v1-proto-client@1.6.0", + "pkgId": "com.google.cloud.datastore:datastore-v1-proto-client@1.6.0", + "deps": [ + { + "nodeId": "com.google.api.grpc:proto-google-cloud-datastore-v1@0.54.0" + }, + { + "nodeId": "com.google.http-client:google-http-client-protobuf@1.29.1" + }, + { + "nodeId": "com.google.http-client:google-http-client-jackson@1.23.0" + } + ] + }, + { + "nodeId": "com.google.api.grpc:proto-google-cloud-datastore-v1@0.54.0", + "pkgId": "com.google.api.grpc:proto-google-cloud-datastore-v1@0.54.0", + "deps": [ + { + "nodeId": "com.google.api.grpc:proto-google-common-protos@1.15.0" + } + ] + }, + { + "nodeId": "com.google.http-client:google-http-client-protobuf@1.29.1", + "pkgId": "com.google.http-client:google-http-client-protobuf@1.29.1", + "deps": [] + }, + { + "nodeId": "com.google.http-client:google-http-client-jackson@1.23.0", + "pkgId": "com.google.http-client:google-http-client-jackson@1.23.0", + "deps": [ + { + "nodeId": "org.codehaus.jackson:jackson-core-asl@1.9.13" + } + ] + }, + { + "nodeId": "org.codehaus.jackson:jackson-core-asl@1.9.13", + "pkgId": "org.codehaus.jackson:jackson-core-asl@1.9.13", + "deps": [] + }, + { + "nodeId": "com.google.cloud:google-cloud-core-http@1.48.0", + "pkgId": "com.google.cloud:google-cloud-core-http@1.48.0", + "deps": [ + { + "nodeId": "com.google.http-client:google-http-client-appengine@1.23.0" + }, + { + "nodeId": "com.google.api:gax-httpjson@0.42.0" + }, + { + "nodeId": "io.opencensus:opencensus-contrib-http-util@0.11.1" + }, + { + "nodeId": "com.google.http-client:google-http-client-jackson2@1.35.0" + }, + { + "nodeId": "io.opencensus:opencensus-api@0.12.3" + }, + { + "nodeId": "com.google.auth:google-auth-library-credentials@0.9.1" + } + ] + }, + { + "nodeId": "com.google.http-client:google-http-client-appengine@1.23.0", + "pkgId": "com.google.http-client:google-http-client-appengine@1.23.0", + "deps": [] + }, + { + "nodeId": "com.google.api:gax-httpjson@0.42.0", + "pkgId": "com.google.api:gax-httpjson@0.42.0", + "deps": [ + { + "nodeId": "com.google.code.gson:gson@2.9.0" + }, + { + "nodeId": "org.threeten:threetenbp@1.3.3" + }, + { + "nodeId": "com.google.auth:google-auth-library-credentials@0.9.1" + } + ] + }, + { + "nodeId": "com.google.cloud:google-cloud-monitoring@1.93.0", + "pkgId": "com.google.cloud:google-cloud-monitoring@1.93.0", + "deps": [ + { + "nodeId": "com.google.api.grpc:proto-google-cloud-monitoring-v3@1.75.0" + }, + { + "nodeId": "com.google.cloud:google-cloud-core-grpc@1.19.0" + } + ] + }, + { + "nodeId": "com.google.cloud:google-cloud-pubsub@1.119.1", + "pkgId": "com.google.cloud:google-cloud-pubsub@1.119.1", + "deps": [ + { + "nodeId": "com.google.guava:listenablefuture@9999.0-empty-to-avoid-conflict-with-guava" + }, + { + "nodeId": "org.conscrypt:conscrypt-openjdk-uber@2.5.1" + }, + { + "nodeId": "io.opencensus:opencensus-proto@0.2.0" + }, + { + "nodeId": "com.google.errorprone:error_prone_annotations@2.13.1" + }, + { + "nodeId": "com.google.j2objc:j2objc-annotations@1.3" + }, + { + "nodeId": "commons-logging:commons-logging@1.2" + }, + { + "nodeId": "io.grpc:grpc-stub@1.32.2" + }, + { + "nodeId": "com.google.api.grpc:proto-google-cloud-pubsub-v1@1.101.1" + }, + { + "nodeId": "io.grpc:grpc-auth@1.32.2" + }, + { + "nodeId": "com.google.android:annotations@4.1.1.4" + }, + { + "nodeId": "com.google.code.gson:gson@2.9.0" + }, + { + "nodeId": "io.grpc:grpc-xds@1.46.0" + }, + { + "nodeId": "io.grpc:grpc-services@1.46.0" + }, + { + "nodeId": "com.google.api.grpc:proto-google-common-protos@1.15.0" + }, + { + "nodeId": "io.grpc:grpc-alts@1.46.0" + }, + { + "nodeId": "io.grpc:grpc-api@1.32.2" + }, + { + "nodeId": "io.grpc:grpc-netty-shaded@1.32.2" + }, + { + "nodeId": "com.google.protobuf:protobuf-java-util@3.18.2" + }, + { + "nodeId": "io.grpc:grpc-googleapis@1.46.0" + }, + { + "nodeId": "com.google.api.grpc:proto-google-iam-v1@0.13.0" + }, + { + "nodeId": "io.grpc:grpc-grpclb@1.46.0" + }, + { + "nodeId": "com.google.auto.value:auto-value-annotations@1.9" + }, + { + "nodeId": "org.threeten:threetenbp@1.3.3" + }, + { + "nodeId": "com.google.api:gax-grpc@2.3.0" + }, + { + "nodeId": "org.bouncycastle:bcpkix-jdk15on@1.70" + }, + { + "nodeId": "org.checkerframework:checker-qual@3.22.0" + }, + { + "nodeId": "org.codehaus.mojo:animal-sniffer-annotations@1.21" + }, + { + "nodeId": "com.google.http-client:google-http-client-gson@1.41.8" + }, + { + "nodeId": "com.google.guava:failureaccess@1.0.1" + }, + { + "nodeId": "com.google.re2j:re2j@1.5" + }, + { + "nodeId": "io.grpc:grpc-protobuf-lite@1.32.2" + }, + { + "nodeId": "io.opencensus:opencensus-contrib-http-util@0.11.1" + }, + { + "nodeId": "io.grpc:grpc-context@1.32.2" + }, + { + "nodeId": "org.bouncycastle:bcprov-jdk15on@1.70" + }, + { + "nodeId": "io.grpc:grpc-core@1.32.2" + }, + { + "nodeId": "io.opencensus:opencensus-api@0.12.3" + }, + { + "nodeId": "io.perfmark:perfmark-api@0.25.0" + }, + { + "nodeId": "com.google.auth:google-auth-library-credentials@0.9.1" + }, + { + "nodeId": "io.grpc:grpc-protobuf@1.32.2" + } + ] + }, + { + "nodeId": "io.opencensus:opencensus-proto@0.2.0", + "pkgId": "io.opencensus:opencensus-proto@0.2.0", + "deps": [] + }, + { + "nodeId": "io.grpc:grpc-xds@1.46.0", + "pkgId": "io.grpc:grpc-xds@1.46.0", + "deps": [] + }, + { + "nodeId": "io.grpc:grpc-services@1.46.0", + "pkgId": "io.grpc:grpc-services@1.46.0", + "deps": [] + }, + { + "nodeId": "io.grpc:grpc-googleapis@1.46.0", + "pkgId": "io.grpc:grpc-googleapis@1.46.0", + "deps": [] + }, + { + "nodeId": "com.google.http-client:google-http-client-gson@1.41.8", + "pkgId": "com.google.http-client:google-http-client-gson@1.41.8", + "deps": [] + }, + { + "nodeId": "com.google.cloud:google-cloud-storage@1.108.0", + "pkgId": "com.google.cloud:google-cloud-storage@1.108.0", + "deps": [ + { + "nodeId": "com.google.cloud:google-cloud-core-http@1.48.0" + }, + { + "nodeId": "com.google.code.gson:gson@2.9.0" + }, + { + "nodeId": "com.google.protobuf:protobuf-java-util@3.18.2" + }, + { + "nodeId": "com.google.api.grpc:proto-google-iam-v1@0.13.0" + }, + { + "nodeId": "org.threeten:threetenbp@1.3.3" + }, + { + "nodeId": "com.google.apis:google-api-services-storage@v1-rev20200326-1.30.9" + }, + { + "nodeId": "com.google.http-client:google-http-client-jackson2@1.35.0" + }, + { + "nodeId": "io.opencensus:opencensus-api@0.12.3" + }, + { + "nodeId": "com.google.auth:google-auth-library-credentials@0.9.1" + } + ] + }, + { + "nodeId": "io.jsonwebtoken:jjwt@0.9.0", + "pkgId": "io.jsonwebtoken:jjwt@0.9.0", + "deps": [] + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-cloudwatch@1.12.84", + "pkgId": "com.amazonaws:aws-java-sdk-cloudwatch@1.12.84", + "deps": [ + { + "nodeId": "com.amazonaws:jmespath-java@1.11.91" + } + ] + }, + { + "nodeId": "//core_implementation/column_blocking:main@bazel", + "pkgId": "//core_implementation/column_blocking:main@bazel", + "deps": [] + }, + { + "nodeId": "//core_implementation/proto:main@bazel", + "pkgId": "//core_implementation/proto:main@bazel", + "deps": [ + { + "nodeId": "//core_implementation/proto:row_java_proto@bazel" + }, + { + "nodeId": "//core_implementation/column_blocking:main@bazel" + }, + { + "nodeId": "//utils/jdk:main@bazel" + }, + { + "nodeId": "//utils/serializers:main@bazel" + }, + { + "nodeId": "io.netty:netty-buffer@4.1.50.Final" + } + ] + }, + { + "nodeId": "//core_implementation/proto:row_java_proto@bazel", + "pkgId": "//core_implementation/proto:row_java_proto@bazel", + "deps": [ + { + "nodeId": "//core_implementation/proto:row_proto@bazel" + } + ] + }, + { + "nodeId": "//utils/jdk:main@bazel", + "pkgId": "//utils/jdk:main@bazel", + "deps": [] + }, + { + "nodeId": "//utils/serializers:main@bazel", + "pkgId": "//utils/serializers:main@bazel", + "deps": [ + { + "nodeId": "com.fasterxml.jackson.dataformat:jackson-dataformat-smile@2.9.8" + }, + { + "nodeId": "io.netty:netty-buffer@4.1.50.Final" + }, + { + "nodeId": "org.apache.commons:commons-pool2@2.8.0" + } + ] + }, + { + "nodeId": "org.apache.commons:commons-pool2@2.8.0", + "pkgId": "org.apache.commons:commons-pool2@2.8.0", + "deps": [] + }, + { + "nodeId": "//core_implementation/transform:main@bazel", + "pkgId": "//core_implementation/transform:main@bazel", + "deps": [ + { + "nodeId": "//core_implementation/proto:main@bazel" + }, + { + "nodeId": "//core_implementation/proto:row_java_proto@bazel" + }, + { + "nodeId": "//utils/serialization:main@bazel" + } + ] + }, + { + "nodeId": "//utils/serialization:main@bazel", + "pkgId": "//utils/serialization:main@bazel", + "deps": [] + }, + { + "nodeId": "//core_interfaces:warning@bazel", + "pkgId": "//core_interfaces:warning@bazel", + "deps": [] + }, + { + "nodeId": "//logging:main@bazel", + "pkgId": "//logging:main@bazel", + "deps": [ + { + "nodeId": "//log_appender/cloudwatch:main@bazel" + }, + { + "nodeId": "//log_appender/gcs_appender:main@bazel" + }, + { + "nodeId": "//log_appender/stackdriver:main@bazel" + } + ] + }, + { + "nodeId": "//log_appender/cloudwatch:main@bazel", + "pkgId": "//log_appender/cloudwatch:main@bazel", + "deps": [ + { + "nodeId": "com.amazonaws:aws-java-sdk-logs@1.12.84" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-sts@1.12.84" + } + ] + }, + { + "nodeId": "//log_appender/gcs_appender:main@bazel", + "pkgId": "//log_appender/gcs_appender:main@bazel", + "deps": [ + { + "nodeId": "//utils/hook:main@bazel" + }, + { + "nodeId": "com.google.cloud:google-cloud-storage@1.108.0" + } + ] + }, + { + "nodeId": "//utils/hook:main@bazel", + "pkgId": "//utils/hook:main@bazel", + "deps": [] + }, + { + "nodeId": "//log_appender/stackdriver:main@bazel", + "pkgId": "//log_appender/stackdriver:main@bazel", + "deps": [ + { + "nodeId": "com.google.auth:google-auth-library-credentials@0.9.1" + }, + { + "nodeId": "com.google.cloud:google-cloud-logging@1.19.0" + } + ] + }, + { + "nodeId": "com.google.cloud:google-cloud-logging@1.19.0", + "pkgId": "com.google.cloud:google-cloud-logging@1.19.0", + "deps": [ + { + "nodeId": "io.grpc:grpc-stub@1.32.2" + }, + { + "nodeId": "io.grpc:grpc-auth@1.32.2" + }, + { + "nodeId": "com.google.cloud:google-cloud-core-grpc@1.19.0" + }, + { + "nodeId": "io.grpc:grpc-netty-shaded@1.32.2" + }, + { + "nodeId": "com.google.api:gax-grpc@2.3.0" + }, + { + "nodeId": "com.google.api.grpc:proto-google-cloud-logging-v2@0.2.1" + } + ] + }, + { + "nodeId": "com.google.api.grpc:proto-google-cloud-logging-v2@0.2.1", + "pkgId": "com.google.api.grpc:proto-google-cloud-logging-v2@0.2.1", + "deps": [ + { + "nodeId": "com.google.api.grpc:proto-google-common-protos@1.15.0" + } + ] + }, + { + "nodeId": "//micrometer:main@bazel", + "pkgId": "//micrometer:main@bazel", + "deps": [ + { + "nodeId": "com.google.cloud:google-cloud-monitoring@1.93.0" + }, + { + "nodeId": "com.newrelic.telemetry:micrometer-registry-new-relic@0.6.0" + }, + { + "nodeId": "com.newrelic.telemetry:telemetry@0.7.0" + }, + { + "nodeId": "com.newrelic.telemetry:telemetry-core@0.7.0" + }, + { + "nodeId": "io.grpc:grpc-netty-shaded@1.32.2" + }, + { + "nodeId": "io.micrometer:micrometer-registry-stackdriver@1.5.3" + }, + { + "nodeId": "org.hdrhistogram:HdrHistogram@2.1.12" + } + ] + }, + { + "nodeId": "com.newrelic.telemetry:micrometer-registry-new-relic@0.6.0", + "pkgId": "com.newrelic.telemetry:micrometer-registry-new-relic@0.6.0", + "deps": [ + { + "nodeId": "com.newrelic.telemetry:telemetry@0.7.0" + } + ] + }, + { + "nodeId": "com.newrelic.telemetry:telemetry@0.7.0", + "pkgId": "com.newrelic.telemetry:telemetry@0.7.0", + "deps": [ + { + "nodeId": "com.newrelic.telemetry:telemetry-core@0.7.0" + } + ] + }, + { + "nodeId": "com.newrelic.telemetry:telemetry-core@0.7.0", + "pkgId": "com.newrelic.telemetry:telemetry-core@0.7.0", + "deps": [] + }, + { + "nodeId": "io.micrometer:micrometer-registry-stackdriver@1.5.3", + "pkgId": "io.micrometer:micrometer-registry-stackdriver@1.5.3", + "deps": [ + { + "nodeId": "com.google.cloud:google-cloud-monitoring@1.93.0" + } + ] + }, + { + "nodeId": "//pipeline_queue:main@bazel", + "pkgId": "//pipeline_queue:main@bazel", + "deps": [ + { + "nodeId": "//database/exceptions:main@bazel" + }, + { + "nodeId": "//database/resilience:main@bazel" + }, + { + "nodeId": "//secred/common:main@bazel" + }, + { + "nodeId": "//shaded_dependencies/azure:azure_identity_shaded@bazel" + }, + { + "nodeId": "//shaded_dependencies/azure:azure_storage_blob_shaded@bazel" + }, + { + "nodeId": "//cloud_storage:main@bazel" + }, + { + "nodeId": "//utils/network_monitor:main@bazel" + }, + { + "nodeId": "//utils/os:main@bazel" + }, + { + "nodeId": "//utils/serialization:main@bazel" + }, + { + "nodeId": "//utils/threading:main@bazel" + }, + { + "nodeId": "com.google.cloud:google-cloud-storage@1.108.0" + } + ] + }, + { + "nodeId": "//shaded_dependencies/azure:azure_identity_shaded@bazel", + "pkgId": "//shaded_dependencies/azure:azure_identity_shaded@bazel", + "deps": [] + }, + { + "nodeId": "//shaded_dependencies/azure:azure_storage_blob_shaded@bazel", + "pkgId": "//shaded_dependencies/azure:azure_storage_blob_shaded@bazel", + "deps": [] + }, + { + "nodeId": "//utils/network_monitor:main@bazel", + "pkgId": "//utils/network_monitor:main@bazel", + "deps": [ + { + "nodeId": "//utils/os:main@bazel" + } + ] + }, + { + "nodeId": "//utils/os:main@bazel", + "pkgId": "//utils/os:main@bazel", + "deps": [] + }, + { + "nodeId": "//schema_migration:main@bazel", + "pkgId": "//schema_migration:main@bazel", + "deps": [] + }, + { + "nodeId": "//schema_migration:service@bazel", + "pkgId": "//schema_migration:service@bazel", + "deps": [ + { + "nodeId": "//schema_migration:main@bazel" + }, + { + "nodeId": "//database:schema_migration_model@bazel" + } + ] + }, + { + "nodeId": "//utils/sync_statistics:main@bazel", + "pkgId": "//utils/sync_statistics:main@bazel", + "deps": [ + { + "nodeId": "//benchmarking:stats@bazel" + } + ] + }, + { + "nodeId": "//benchmarking:stats@bazel", + "pkgId": "//benchmarking:stats@bazel", + "deps": [ + { + "nodeId": "com.fasterxml.jackson.dataformat:jackson-dataformat-xml@2.9.8" + }, + { + "nodeId": "io.apptik.json:json-core@1.0.4" + } + ] + }, + { + "nodeId": "com.fasterxml.jackson.dataformat:jackson-dataformat-xml@2.9.8", + "pkgId": "com.fasterxml.jackson.dataformat:jackson-dataformat-xml@2.9.8", + "deps": [ + { + "nodeId": "org.codehaus.woodstox:stax2-api@3.1.4" + }, + { + "nodeId": "com.fasterxml.woodstox:woodstox-core@5.0.3" + }, + { + "nodeId": "com.fasterxml.jackson.module:jackson-module-jaxb-annotations@2.9.8" + } + ] + }, + { + "nodeId": "org.codehaus.woodstox:stax2-api@3.1.4", + "pkgId": "org.codehaus.woodstox:stax2-api@3.1.4", + "deps": [] + }, + { + "nodeId": "com.fasterxml.woodstox:woodstox-core@5.0.3", + "pkgId": "com.fasterxml.woodstox:woodstox-core@5.0.3", + "deps": [ + { + "nodeId": "org.codehaus.woodstox:stax2-api@3.1.4" + } + ] + }, + { + "nodeId": "io.apptik.json:json-core@1.0.4", + "pkgId": "io.apptik.json:json-core@1.0.4", + "deps": [] + }, + { + "nodeId": "//warehouses/common:observability@bazel", + "pkgId": "//warehouses/common:observability@bazel", + "deps": [ + { + "nodeId": "//warehouses/common:events@bazel" + }, + { + "nodeId": "//warehouses/common:feature_flags@bazel" + }, + { + "nodeId": "//warehouses/common:warehouse_type@bazel" + }, + { + "nodeId": "//database:schema_migration_model@bazel" + }, + { + "nodeId": "//events:event_hub@bazel" + }, + { + "nodeId": "//heartbeat:lite@bazel" + }, + { + "nodeId": "//schema_migration:main@bazel" + } + ] + }, + { + "nodeId": "//warehouses/common:events@bazel", + "pkgId": "//warehouses/common:events@bazel", + "deps": [ + { + "nodeId": "//events:event_hub@bazel" + } + ] + }, + { + "nodeId": "//warehouses/common:feature_flags@bazel", + "pkgId": "//warehouses/common:feature_flags@bazel", + "deps": [] + }, + { + "nodeId": "//heartbeat:lite@bazel", + "pkgId": "//heartbeat:lite@bazel", + "deps": [] + }, + { + "nodeId": "com.github.alexandrnikitin:bloom-filter_2.11@0.11.0", + "pkgId": "com.github.alexandrnikitin:bloom-filter_2.11@0.11.0", + "deps": [ + { + "nodeId": "org.scala-lang:scala-library@2.11.1" + } + ] + }, + { + "nodeId": "org.scala-lang:scala-library@2.11.1", + "pkgId": "org.scala-lang:scala-library@2.11.1", + "deps": [] + }, + { + "nodeId": "io.projectreactor:reactor-core@3.4.11", + "pkgId": "io.projectreactor:reactor-core@3.4.11", + "deps": [ + { + "nodeId": "org.reactivestreams:reactive-streams@1.0.3" + } + ] + }, + { + "nodeId": "org.reactivestreams:reactive-streams@1.0.3", + "pkgId": "org.reactivestreams:reactive-streams@1.0.3", + "deps": [] + }, + { + "nodeId": "net.agkn:hll@1.6.0", + "pkgId": "net.agkn:hll@1.6.0", + "deps": [ + { + "nodeId": "it.unimi.dsi:fastutil@8.1.0" + } + ] + }, + { + "nodeId": "it.unimi.dsi:fastutil@8.1.0", + "pkgId": "it.unimi.dsi:fastutil@8.1.0", + "deps": [] + }, + { + "nodeId": "org.jetbrains.kotlin:kotlin-stdlib@1.3.50", + "pkgId": "org.jetbrains.kotlin:kotlin-stdlib@1.3.50", + "deps": [ + { + "nodeId": "org.jetbrains:annotations@17.0.0" + }, + { + "nodeId": "org.jetbrains.kotlin:kotlin-stdlib-common@1.3.71" + } + ] + }, + { + "nodeId": "org.jetbrains:annotations@17.0.0", + "pkgId": "org.jetbrains:annotations@17.0.0", + "deps": [] + }, + { + "nodeId": "org.jetbrains.kotlin:kotlin-stdlib-common@1.3.71", + "pkgId": "org.jetbrains.kotlin:kotlin-stdlib-common@1.3.71", + "deps": [] + }, + { + "nodeId": "org.openjdk.jmh:jmh-core@1.19", + "pkgId": "org.openjdk.jmh:jmh-core@1.19", + "deps": [ + { + "nodeId": "net.sf.jopt-simple:jopt-simple@5.0.4" + }, + { + "nodeId": "org.apache.commons:commons-math3@3.6.1" + } + ] + }, + { + "nodeId": "net.sf.jopt-simple:jopt-simple@5.0.4", + "pkgId": "net.sf.jopt-simple:jopt-simple@5.0.4", + "deps": [] + }, + { + "nodeId": "org.apache.commons:commons-math3@3.6.1", + "pkgId": "org.apache.commons:commons-math3@3.6.1", + "deps": [] + }, + { + "nodeId": "org.rocksdb:rocksdbjni@6.8.1", + "pkgId": "org.rocksdb:rocksdbjni@6.8.1", + "deps": [] + }, + { + "nodeId": "org.xerial.snappy:snappy-java@1.1.8.4", + "pkgId": "org.xerial.snappy:snappy-java@1.1.8.4", + "deps": [] + }, + { + "nodeId": "//refine:main@bazel", + "pkgId": "//refine:main@bazel", + "deps": [ + { + "nodeId": "//common:main@bazel" + } + ] + }, + { + "nodeId": "//schema_service:main@bazel", + "pkgId": "//schema_service:main@bazel", + "deps": [ + { + "nodeId": "//core_implementation:main@bazel" + }, + { + "nodeId": "//core_implementation/column_blocking:main@bazel" + }, + { + "nodeId": "//core_implementation/proto:main@bazel" + }, + { + "nodeId": "//core_implementation/proto:row_java_proto@bazel" + }, + { + "nodeId": "//core_implementation/transform:main@bazel" + }, + { + "nodeId": "//emails:core@bazel" + }, + { + "nodeId": "//emails:main@bazel" + } + ] + }, + { + "nodeId": "//services/cmk_encryption:main@bazel", + "pkgId": "//services/cmk_encryption:main@bazel", + "deps": [ + { + "nodeId": "//secred/client:main@bazel" + }, + { + "nodeId": "//secred/common:main@bazel" + }, + { + "nodeId": "javax.ws.rs:javax.ws.rs-api@2.1.1" + } + ] + }, + { + "nodeId": "javax.ws.rs:javax.ws.rs-api@2.1.1", + "pkgId": "javax.ws.rs:javax.ws.rs-api@2.1.1", + "deps": [] + }, + { + "nodeId": "//services/logging:main@bazel", + "pkgId": "//services/logging:main@bazel", + "deps": [ + { + "nodeId": "//database:enums@bazel" + } + ] + }, + { + "nodeId": "//ssh:main@bazel", + "pkgId": "//ssh:main@bazel", + "deps": [ + { + "nodeId": "//database:ssh_verify@bazel" + }, + { + "nodeId": "//secred/client:main@bazel" + }, + { + "nodeId": "//secred/common:main@bazel" + }, + { + "nodeId": "//secrets/db:main@bazel" + }, + { + "nodeId": "//utils/hook:main@bazel" + }, + { + "nodeId": "@jsch_patched//:main@bazel" + } + ] + }, + { + "nodeId": "//secrets/db:main@bazel", + "pkgId": "//secrets/db:main@bazel", + "deps": [ + { + "nodeId": "//kms:main@bazel" + } + ] + }, + { + "nodeId": "//kms:main@bazel", + "pkgId": "//kms:main@bazel", + "deps": [ + { + "nodeId": "//secred/common:main@bazel" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-kms@1.12.84" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-sts@1.12.84" + } + ] + }, + { + "nodeId": "@jsch_patched//:main@bazel", + "pkgId": "@jsch_patched//:main@bazel", + "deps": [ + { + "nodeId": "com.jcraft:jzlib@1.1.3" + } + ] + }, + { + "nodeId": "com.jcraft:jzlib@1.1.3", + "pkgId": "com.jcraft:jzlib@1.1.3", + "deps": [] + }, + { + "nodeId": "//warehouses/big_query:main@bazel", + "pkgId": "//warehouses/big_query:main@bazel", + "deps": [ + { + "nodeId": "//dynamo:main@bazel" + }, + { + "nodeId": "//emails:main@bazel" + }, + { + "nodeId": "//heartbeat:lite@bazel" + }, + { + "nodeId": "//json:default_object_mapper@bazel" + }, + { + "nodeId": "//schema_migration:main@bazel" + }, + { + "nodeId": "//slack:main@bazel" + }, + { + "nodeId": "//utils/hook:main@bazel" + }, + { + "nodeId": "//warehouses/common:events@bazel" + }, + { + "nodeId": "//warehouses/common:feature_flags@bazel" + }, + { + "nodeId": "//warehouses/common:main@bazel" + }, + { + "nodeId": "//warehouses/common:observability@bazel" + }, + { + "nodeId": "//warehouses/common:staging_gcs@bazel" + }, + { + "nodeId": "//warehouses/common:warehouse_type@bazel" + }, + { + "nodeId": "//warehouses/common-local:writer_avro@bazel" + }, + { + "nodeId": "//warehouses/common-local:writer_avro_base@bazel" + }, + { + "nodeId": "//warehouses/common-local:writer_base@bazel" + }, + { + "nodeId": "//warehouses/common-local:writer_json@bazel" + }, + { + "nodeId": "@com_google_cloud_google_cloud_bigquerydatatransfer//:main@bazel" + }, + { + "nodeId": "com.google.api.grpc:proto-google-cloud-billingbudgets-v1@1.1.0" + }, + { + "nodeId": "com.google.api.grpc:proto-google-common-protos@1.15.0" + }, + { + "nodeId": "com.google.apis:google-api-services-bigquery@v2-rev459-1.25.0" + }, + { + "nodeId": "com.google.apis:google-api-services-cloudbilling@v1-rev9-1.22.0" + }, + { + "nodeId": "com.google.apis:google-api-services-cloudresourcemanager@v1-rev495-1.23.0" + }, + { + "nodeId": "com.google.apis:google-api-services-servicemanagement@v1-rev435-1.23.0" + }, + { + "nodeId": "com.google.apis:google-api-services-serviceusage@v1beta1-rev20210427-1.31.0" + }, + { + "nodeId": "com.google.apis:google-api-services-storage@v1-rev20200326-1.30.9" + }, + { + "nodeId": "com.google.auth:google-auth-library-credentials@0.9.1" + }, + { + "nodeId": "com.google.cloud:google-cloud-billingbudgets@1.1.0" + }, + { + "nodeId": "com.google.http-client:google-http-client-jackson2@1.35.0" + }, + { + "nodeId": "org.apache.avro:avro@1.11.0" + } + ] + }, + { + "nodeId": "//json:default_object_mapper@bazel", + "pkgId": "//json:default_object_mapper@bazel", + "deps": [] + }, + { + "nodeId": "//warehouses/common:main@bazel", + "pkgId": "//warehouses/common:main@bazel", + "deps": [ + { + "nodeId": "//warehouses/common:observability@bazel" + }, + { + "nodeId": "//dynamo:main@bazel" + }, + { + "nodeId": "//events:event_hub@bazel" + }, + { + "nodeId": "//heartbeat:lite@bazel" + }, + { + "nodeId": "//json:default_object_mapper@bazel" + }, + { + "nodeId": "//port_forwarder:tunnel_data_source@bazel" + }, + { + "nodeId": "//schema_migration:main@bazel" + }, + { + "nodeId": "//warehouses/common:feature_flags@bazel" + }, + { + "nodeId": "//warehouses/common:staging_s3@bazel" + }, + { + "nodeId": "//warehouses/common-local:writer_base@bazel" + }, + { + "nodeId": "//warehouses/common-local:writer_csv@bazel" + } + ] + }, + { + "nodeId": "//port_forwarder:tunnel_data_source@bazel", + "pkgId": "//port_forwarder:tunnel_data_source@bazel", + "deps": [ + { + "nodeId": "//aws:instance_id@bazel" + }, + { + "nodeId": "//dynamo:main@bazel" + }, + { + "nodeId": "//database:postgresql_jdbc_fix@bazel" + }, + { + "nodeId": "@jsch_patched//:main@bazel" + }, + { + "nodeId": "org.eclipse.jetty:jetty-server@9.4.40.v20210413" + }, + { + "nodeId": "org.eclipse.jetty:jetty-servlet@9.4.40.v20210413" + }, + { + "nodeId": "org.glassfish.jersey.containers:jersey-container-servlet-core@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-server@2.31" + }, + { + "nodeId": "org.bouncycastle:bcpkix-jdk15on@1.70" + } + ] + }, + { + "nodeId": "//aws:instance_id@bazel", + "pkgId": "//aws:instance_id@bazel", + "deps": [] + }, + { + "nodeId": "org.eclipse.jetty:jetty-servlet@9.4.40.v20210413", + "pkgId": "org.eclipse.jetty:jetty-servlet@9.4.40.v20210413", + "deps": [ + { + "nodeId": "org.eclipse.jetty:jetty-security@9.4.40.v20210413" + }, + { + "nodeId": "org.eclipse.jetty:jetty-util-ajax@9.4.40.v20210413" + } + ] + }, + { + "nodeId": "org.eclipse.jetty:jetty-security@9.4.40.v20210413", + "pkgId": "org.eclipse.jetty:jetty-security@9.4.40.v20210413", + "deps": [ + { + "nodeId": "org.eclipse.jetty:jetty-server@9.4.40.v20210413" + } + ] + }, + { + "nodeId": "org.eclipse.jetty:jetty-util-ajax@9.4.40.v20210413", + "pkgId": "org.eclipse.jetty:jetty-util-ajax@9.4.40.v20210413", + "deps": [ + { + "nodeId": "org.eclipse.jetty:jetty-util@9.4.40.v20210413" + } + ] + }, + { + "nodeId": "org.glassfish.jersey.containers:jersey-container-servlet-core@2.31", + "pkgId": "org.glassfish.jersey.containers:jersey-container-servlet-core@2.31", + "deps": [ + { + "nodeId": "org.glassfish.jersey.core:jersey-server@2.31" + } + ] + }, + { + "nodeId": "//warehouses/common:staging_s3@bazel", + "pkgId": "//warehouses/common:staging_s3@bazel", + "deps": [ + { + "nodeId": "//warehouses/common-local:writer_file@bazel" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-sts@1.12.84" + } + ] + }, + { + "nodeId": "//warehouses/common-local:writer_file@bazel", + "pkgId": "//warehouses/common-local:writer_file@bazel", + "deps": [ + { + "nodeId": "com.github.luben:zstd-jni@1.4.9-1" + } + ] + }, + { + "nodeId": "com.github.luben:zstd-jni@1.4.9-1", + "pkgId": "com.github.luben:zstd-jni@1.4.9-1", + "deps": [] + }, + { + "nodeId": "//warehouses/common-local:writer_base@bazel", + "pkgId": "//warehouses/common-local:writer_base@bazel", + "deps": [ + { + "nodeId": "//json:default_object_mapper@bazel" + }, + { + "nodeId": "//utils/serialization:main@bazel" + }, + { + "nodeId": "//warehouses/common:staging_azure@bazel" + }, + { + "nodeId": "//warehouses/common:staging_gcs@bazel" + }, + { + "nodeId": "//warehouses/common:staging_s3@bazel" + }, + { + "nodeId": "com.github.luben:zstd-jni@1.4.9-1" + } + ] + }, + { + "nodeId": "//warehouses/common:staging_azure@bazel", + "pkgId": "//warehouses/common:staging_azure@bazel", + "deps": [ + { + "nodeId": "//warehouses/common-local:writer_file@bazel" + }, + { + "nodeId": "com.microsoft.azure:azure-keyvault-cryptography@1.2.4" + }, + { + "nodeId": "com.microsoft.azure:azure-storage@8.6.3" + } + ] + }, + { + "nodeId": "com.microsoft.azure:azure-keyvault-cryptography@1.2.4", + "pkgId": "com.microsoft.azure:azure-keyvault-cryptography@1.2.4", + "deps": [ + { + "nodeId": "com.microsoft.azure:azure-keyvault-webkey@1.2.4" + }, + { + "nodeId": "com.microsoft.azure:azure-keyvault-core@1.2.4" + } + ] + }, + { + "nodeId": "com.microsoft.azure:azure-keyvault-webkey@1.2.4", + "pkgId": "com.microsoft.azure:azure-keyvault-webkey@1.2.4", + "deps": [] + }, + { + "nodeId": "com.microsoft.azure:azure-keyvault-core@1.2.4", + "pkgId": "com.microsoft.azure:azure-keyvault-core@1.2.4", + "deps": [] + }, + { + "nodeId": "com.microsoft.azure:azure-storage@8.6.3", + "pkgId": "com.microsoft.azure:azure-storage@8.6.3", + "deps": [ + { + "nodeId": "com.microsoft.azure:azure-keyvault-core@1.2.4" + } + ] + }, + { + "nodeId": "//warehouses/common:staging_gcs@bazel", + "pkgId": "//warehouses/common:staging_gcs@bazel", + "deps": [ + { + "nodeId": "//warehouses/common-local:writer_file@bazel" + }, + { + "nodeId": "com.google.apis:google-api-services-storage@v1-rev20200326-1.30.9" + } + ] + }, + { + "nodeId": "//warehouses/common-local:writer_csv@bazel", + "pkgId": "//warehouses/common-local:writer_csv@bazel", + "deps": [ + { + "nodeId": "//warehouses/common-local:writer_base@bazel" + } + ] + }, + { + "nodeId": "//warehouses/common-local:writer_avro@bazel", + "pkgId": "//warehouses/common-local:writer_avro@bazel", + "deps": [ + { + "nodeId": "//warehouses/common-local:writer_avro_base@bazel" + }, + { + "nodeId": "//warehouses/common-local:writer_base@bazel" + }, + { + "nodeId": "org.apache.avro:avro@1.11.0" + } + ] + }, + { + "nodeId": "//warehouses/common-local:writer_avro_base@bazel", + "pkgId": "//warehouses/common-local:writer_avro_base@bazel", + "deps": [ + { + "nodeId": "org.apache.avro:avro@1.11.0" + } + ] + }, + { + "nodeId": "org.apache.avro:avro@1.11.0", + "pkgId": "org.apache.avro:avro@1.11.0", + "deps": [ + { + "nodeId": "org.apache.commons:commons-compress@1.16" + } + ] + }, + { + "nodeId": "org.apache.commons:commons-compress@1.16", + "pkgId": "org.apache.commons:commons-compress@1.16", + "deps": [ + { + "nodeId": "org.objenesis:objenesis@2.6" + } + ] + }, + { + "nodeId": "org.objenesis:objenesis@2.6", + "pkgId": "org.objenesis:objenesis@2.6", + "deps": [] + }, + { + "nodeId": "//warehouses/common-local:writer_json@bazel", + "pkgId": "//warehouses/common-local:writer_json@bazel", + "deps": [ + { + "nodeId": "//warehouses/common-local:writer_base@bazel" + }, + { + "nodeId": "//json:default_object_mapper@bazel" + } + ] + }, + { + "nodeId": "com.google.api.grpc:proto-google-cloud-billingbudgets-v1@1.1.0", + "pkgId": "com.google.api.grpc:proto-google-cloud-billingbudgets-v1@1.1.0", + "deps": [ + { + "nodeId": "com.google.guava:listenablefuture@9999.0-empty-to-avoid-conflict-with-guava" + }, + { + "nodeId": "com.google.errorprone:error_prone_annotations@2.13.1" + }, + { + "nodeId": "com.google.j2objc:j2objc-annotations@1.3" + }, + { + "nodeId": "com.google.api.grpc:proto-google-common-protos@1.15.0" + }, + { + "nodeId": "com.google.auto.value:auto-value-annotations@1.9" + }, + { + "nodeId": "com.google.guava:failureaccess@1.0.1" + }, + { + "nodeId": "org.checkerframework:checker-compat-qual@2.5.5" + } + ] + }, + { + "nodeId": "org.checkerframework:checker-compat-qual@2.5.5", + "pkgId": "org.checkerframework:checker-compat-qual@2.5.5", + "deps": [] + }, + { + "nodeId": "com.google.apis:google-api-services-cloudbilling@v1-rev9-1.22.0", + "pkgId": "com.google.apis:google-api-services-cloudbilling@v1-rev9-1.22.0", + "deps": [] + }, + { + "nodeId": "com.google.apis:google-api-services-servicemanagement@v1-rev435-1.23.0", + "pkgId": "com.google.apis:google-api-services-servicemanagement@v1-rev435-1.23.0", + "deps": [] + }, + { + "nodeId": "com.google.apis:google-api-services-serviceusage@v1beta1-rev20210427-1.31.0", + "pkgId": "com.google.apis:google-api-services-serviceusage@v1beta1-rev20210427-1.31.0", + "deps": [] + }, + { + "nodeId": "com.google.cloud:google-cloud-billingbudgets@1.1.0", + "pkgId": "com.google.cloud:google-cloud-billingbudgets@1.1.0", + "deps": [ + { + "nodeId": "com.google.guava:listenablefuture@9999.0-empty-to-avoid-conflict-with-guava" + }, + { + "nodeId": "org.conscrypt:conscrypt-openjdk-uber@2.5.1" + }, + { + "nodeId": "com.google.errorprone:error_prone_annotations@2.13.1" + }, + { + "nodeId": "com.google.j2objc:j2objc-annotations@1.3" + }, + { + "nodeId": "commons-logging:commons-logging@1.2" + }, + { + "nodeId": "io.grpc:grpc-stub@1.32.2" + }, + { + "nodeId": "io.grpc:grpc-auth@1.32.2" + }, + { + "nodeId": "com.google.android:annotations@4.1.1.4" + }, + { + "nodeId": "com.google.code.gson:gson@2.9.0" + }, + { + "nodeId": "com.google.api.grpc:proto-google-common-protos@1.15.0" + }, + { + "nodeId": "io.grpc:grpc-alts@1.46.0" + }, + { + "nodeId": "com.google.api.grpc:proto-google-cloud-billingbudgets-v1@1.1.0" + }, + { + "nodeId": "io.grpc:grpc-api@1.32.2" + }, + { + "nodeId": "io.grpc:grpc-netty-shaded@1.32.2" + }, + { + "nodeId": "com.google.protobuf:protobuf-java-util@3.18.2" + }, + { + "nodeId": "io.grpc:grpc-grpclb@1.46.0" + }, + { + "nodeId": "com.google.auto.value:auto-value-annotations@1.9" + }, + { + "nodeId": "org.threeten:threetenbp@1.3.3" + }, + { + "nodeId": "com.google.api:gax-grpc@2.3.0" + }, + { + "nodeId": "org.codehaus.mojo:animal-sniffer-annotations@1.21" + }, + { + "nodeId": "com.google.http-client:google-http-client-gson@1.41.8" + }, + { + "nodeId": "com.google.api.grpc:proto-google-cloud-billingbudgets-v1beta1@0.7.0" + }, + { + "nodeId": "com.google.guava:failureaccess@1.0.1" + }, + { + "nodeId": "io.grpc:grpc-protobuf-lite@1.32.2" + }, + { + "nodeId": "io.opencensus:opencensus-contrib-http-util@0.11.1" + }, + { + "nodeId": "io.grpc:grpc-context@1.32.2" + }, + { + "nodeId": "io.grpc:grpc-core@1.32.2" + }, + { + "nodeId": "io.opencensus:opencensus-api@0.12.3" + }, + { + "nodeId": "io.perfmark:perfmark-api@0.25.0" + }, + { + "nodeId": "com.google.auth:google-auth-library-credentials@0.9.1" + }, + { + "nodeId": "io.grpc:grpc-protobuf@1.32.2" + }, + { + "nodeId": "org.checkerframework:checker-compat-qual@2.5.5" + } + ] + }, + { + "nodeId": "com.google.api.grpc:proto-google-cloud-billingbudgets-v1beta1@0.7.0", + "pkgId": "com.google.api.grpc:proto-google-cloud-billingbudgets-v1beta1@0.7.0", + "deps": [ + { + "nodeId": "com.google.guava:listenablefuture@9999.0-empty-to-avoid-conflict-with-guava" + }, + { + "nodeId": "com.google.errorprone:error_prone_annotations@2.13.1" + }, + { + "nodeId": "com.google.j2objc:j2objc-annotations@1.3" + }, + { + "nodeId": "com.google.auto.value:auto-value-annotations@1.9" + }, + { + "nodeId": "com.google.guava:failureaccess@1.0.1" + }, + { + "nodeId": "org.checkerframework:checker-compat-qual@2.5.5" + } + ] + }, + { + "nodeId": "com.stripe:stripe-java@19.20.0", + "pkgId": "com.stripe:stripe-java@19.20.0", + "deps": [ + { + "nodeId": "com.google.code.gson:gson@2.9.0" + } + ] + }, + { + "nodeId": "io.swagger.core.v3:swagger-annotations@2.1.11", + "pkgId": "io.swagger.core.v3:swagger-annotations@2.1.11", + "deps": [] + }, + { + "nodeId": "//utils/bootstrap:main@bazel", + "pkgId": "//utils/bootstrap:main@bazel", + "deps": [ + { + "nodeId": "//integrations/braze:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.dataformat:jackson-dataformat-yaml@2.9.8" + }, + { + "nodeId": "info.picocli:picocli@4.5.1" + } + ] + }, + { + "nodeId": "//integrations/braze:main@bazel", + "pkgId": "//integrations/braze:main@bazel", + "deps": [ + { + "nodeId": "//utils/fsort:main@bazel" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-sts@1.12.84" + }, + { + "nodeId": "com.fasterxml.jackson.dataformat:jackson-dataformat-smile@2.9.8" + }, + { + "nodeId": "com.google.apis:google-api-services-storage@v1-rev20200326-1.30.9" + }, + { + "nodeId": "com.microsoft.azure:azure-storage@8.6.3" + }, + { + "nodeId": "org.apache.avro:avro@1.11.0" + } + ] + }, + { + "nodeId": "//services/resync:main@bazel", + "pkgId": "//services/resync:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces/cursor:main@bazel" + }, + { + "nodeId": "//services:exceptions@bazel" + }, + { + "nodeId": "//services:integration_control@bazel" + }, + { + "nodeId": "//services/logging:main@bazel" + }, + { + "nodeId": "//utils/validations:main@bazel" + } + ] + }, + { + "nodeId": "//services:exceptions@bazel", + "pkgId": "//services:exceptions@bazel", + "deps": [] + }, + { + "nodeId": "//services:integration_control@bazel", + "pkgId": "//services:integration_control@bazel", + "deps": [ + { + "nodeId": "//services:exceptions@bazel" + } + ] + }, + { + "nodeId": "//utils/fsort:main@bazel", + "pkgId": "//utils/fsort:main@bazel", + "deps": [] + }, + { + "nodeId": "info.picocli:picocli@4.5.1", + "pkgId": "info.picocli:picocli@4.5.1", + "deps": [] + }, + { + "nodeId": "com.cronutils:cron-utils@9.0.2", + "pkgId": "com.cronutils:cron-utils@9.0.2", + "deps": [] + }, + { + "nodeId": "org.hibernate:hibernate-validator@5.4.3.Final", + "pkgId": "org.hibernate:hibernate-validator@5.4.3.Final", + "deps": [ + { + "nodeId": "com.fasterxml:classmate@1.3.4" + }, + { + "nodeId": "javax.validation:validation-api@1.1.0.Final" + }, + { + "nodeId": "org.jboss.logging:jboss-logging@3.3.2.Final" + } + ] + }, + { + "nodeId": "com.fasterxml:classmate@1.3.4", + "pkgId": "com.fasterxml:classmate@1.3.4", + "deps": [] + }, + { + "nodeId": "org.jboss.logging:jboss-logging@3.3.2.Final", + "pkgId": "org.jboss.logging:jboss-logging@3.3.2.Final", + "deps": [] + }, + { + "nodeId": "//donkey:main@bazel", + "pkgId": "//donkey:main@bazel", + "deps": [ + { + "nodeId": "//common:main@bazel" + }, + { + "nodeId": "//core_implementation:main@bazel" + }, + { + "nodeId": "//core_implementation/column_blocking:main@bazel" + }, + { + "nodeId": "//core_interfaces/cursor:main@bazel" + }, + { + "nodeId": "//database/exceptions:main@bazel" + }, + { + "nodeId": "//database/resilience:main@bazel" + }, + { + "nodeId": "//event_bus:main@bazel" + }, + { + "nodeId": "//feature_flag:flags@bazel" + }, + { + "nodeId": "//feature_flag/service:main@bazel" + }, + { + "nodeId": "//heartbeat:main@bazel" + }, + { + "nodeId": "//integrated_scheduler/scheduler:pubsub@bazel" + }, + { + "nodeId": "//integrations/netsuite:main@bazel" + }, + { + "nodeId": "//pipeline_queue:main@bazel" + }, + { + "nodeId": "//schema_migration:schema_migration_info@bazel" + }, + { + "nodeId": "//schema_migration:service@bazel" + }, + { + "nodeId": "//schema_service:main@bazel" + }, + { + "nodeId": "//secred/client:main@bazel" + }, + { + "nodeId": "//secred/common:main@bazel" + }, + { + "nodeId": "//secrets/group:main@bazel" + }, + { + "nodeId": "//services:main@bazel" + }, + { + "nodeId": "//services/setup_test_runner:main@bazel" + }, + { + "nodeId": "//slack:main@bazel" + }, + { + "nodeId": "//transformation_runner:client@bazel" + }, + { + "nodeId": "//utils/hook:main@bazel" + }, + { + "nodeId": "//utils/network_monitor:main@bazel" + }, + { + "nodeId": "//utils/sync_statistics:main@bazel" + }, + { + "nodeId": "//utils/threading:main@bazel" + }, + { + "nodeId": "//warehouses/common:main@bazel" + }, + { + "nodeId": "@com_google_cloud_google_cloud_bigquerydatatransfer//:main@bazel" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-cloudwatch@1.12.84" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-dynamodb@1.12.84" + }, + { + "nodeId": "com.github.f4b6a3:ulid-creator@4.0.0" + }, + { + "nodeId": "com.google.auth:google-auth-library-credentials@0.9.1" + }, + { + "nodeId": "com.google.cloud:google-cloud-pubsub@1.119.1" + }, + { + "nodeId": "com.google.cloud:google-cloud-storage@1.108.0" + }, + { + "nodeId": "com.google.protobuf:protobuf-java-util@3.18.2" + }, + { + "nodeId": "org.slf4j:slf4j-jdk14@1.7.13" + } + ] + }, + { + "nodeId": "//event_bus:main@bazel", + "pkgId": "//event_bus:main@bazel", + "deps": [ + { + "nodeId": "//logger:acmecorp_logger@bazel" + }, + { + "nodeId": "com.github.f4b6a3:ulid-creator@4.0.0" + }, + { + "nodeId": "com.google.api.grpc:proto-google-cloud-pubsub-v1@1.101.1" + }, + { + "nodeId": "com.google.cloud:google-cloud-pubsub@1.119.1" + } + ] + }, + { + "nodeId": "com.github.f4b6a3:ulid-creator@4.0.0", + "pkgId": "com.github.f4b6a3:ulid-creator@4.0.0", + "deps": [] + }, + { + "nodeId": "//integrated_scheduler/scheduler:pubsub@bazel", + "pkgId": "//integrated_scheduler/scheduler:pubsub@bazel", + "deps": [ + { + "nodeId": "//integrated_scheduler/scheduler:messages@bazel" + }, + { + "nodeId": "com.google.api.grpc:proto-google-cloud-pubsub-v1@1.101.1" + }, + { + "nodeId": "com.google.apis:google-api-services-pubsub@v1-rev452-1.25.0" + }, + { + "nodeId": "com.google.auth:google-auth-library-credentials@0.9.1" + }, + { + "nodeId": "com.google.cloud:google-cloud-pubsub@1.119.1" + } + ] + }, + { + "nodeId": "//integrated_scheduler/scheduler:messages@bazel", + "pkgId": "//integrated_scheduler/scheduler:messages@bazel", + "deps": [] + }, + { + "nodeId": "com.google.apis:google-api-services-pubsub@v1-rev452-1.25.0", + "pkgId": "com.google.apis:google-api-services-pubsub@v1-rev452-1.25.0", + "deps": [] + }, + { + "nodeId": "//integrations/netsuite:main@bazel", + "pkgId": "//integrations/netsuite:main@bazel", + "deps": [ + { + "nodeId": "//dblike:main@bazel" + }, + { + "nodeId": "//integrations/db_like_standardization:main@bazel" + }, + { + "nodeId": "//port_forwarder:main@bazel" + }, + { + "nodeId": "//slack:main@bazel" + }, + { + "nodeId": "//utils/validations:main@bazel" + }, + { + "nodeId": "com.google.cloud:google-cloud-storage@1.108.0" + } + ] + }, + { + "nodeId": "//core_utils:main@bazel", + "pkgId": "//core_utils:main@bazel", + "deps": [ + { + "nodeId": "//core_implementation/column_blocking:main@bazel" + }, + { + "nodeId": "//core_implementation/proto:main@bazel" + }, + { + "nodeId": "//core_implementation/proto:row_java_proto@bazel" + }, + { + "nodeId": "//core_implementation/transform:main@bazel" + } + ] + }, + { + "nodeId": "//dblike:main@bazel", + "pkgId": "//dblike:main@bazel", + "deps": [ + { + "nodeId": "org.javassist:javassist@3.21.0-GA" + } + ] + }, + { + "nodeId": "//integrations/db:main@bazel", + "pkgId": "//integrations/db:main@bazel", + "deps": [ + { + "nodeId": "//cloud_storage:main@bazel" + }, + { + "nodeId": "//integrations/hvr/hvr_tool:main@bazel" + }, + { + "nodeId": "//integrations/speed_test:main@bazel" + }, + { + "nodeId": "//integrations/speed_test:utils@bazel" + }, + { + "nodeId": "//ip_utils:main@bazel" + }, + { + "nodeId": "//kms:main@bazel" + }, + { + "nodeId": "//port_forwarder:main@bazel" + }, + { + "nodeId": "//schema_migration:schema_migration_info@bazel" + }, + { + "nodeId": "//testing:main@bazel" + }, + { + "nodeId": "//utils/beans:main@bazel" + }, + { + "nodeId": "//utils/os:main@bazel" + }, + { + "nodeId": "//utils/run_shell:main@bazel" + }, + { + "nodeId": "//utils/segmented_input_stream:main@bazel" + }, + { + "nodeId": "//utils/serializers:main@bazel" + }, + { + "nodeId": "//utils/threading:main@bazel" + }, + { + "nodeId": "//verification:main@bazel" + }, + { + "nodeId": "com.github.jsqlparser:jsqlparser@4.2" + }, + { + "nodeId": "com.walkmind.extensions:collections@1.20" + }, + { + "nodeId": "io.netty:netty-buffer@4.1.50.Final" + }, + { + "nodeId": "junit:junit@4.13" + }, + { + "nodeId": "org.hamcrest:hamcrest@2.2" + }, + { + "nodeId": "org.jooq:jool-java-8@0.9.14" + }, + { + "nodeId": "org.mockito:mockito-core@2.28.2" + } + ] + }, + { + "nodeId": "//integrations/hvr/hvr_tool:main@bazel", + "pkgId": "//integrations/hvr/hvr_tool:main@bazel", + "deps": [ + { + "nodeId": "//utils/cipher_adapter:main@bazel" + }, + { + "nodeId": "//utils/run_shell:main@bazel" + }, + { + "nodeId": "//utils/segmented_input_stream:main@bazel" + }, + { + "nodeId": "//utils/sleep_control:main@bazel" + }, + { + "nodeId": "//utils/socket_receiver:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.dataformat:jackson-dataformat-xml@2.9.8" + } + ] + }, + { + "nodeId": "//utils/cipher_adapter:main@bazel", + "pkgId": "//utils/cipher_adapter:main@bazel", + "deps": [] + }, + { + "nodeId": "//utils/run_shell:main@bazel", + "pkgId": "//utils/run_shell:main@bazel", + "deps": [ + { + "nodeId": "//utils/sleep_control:main@bazel" + }, + { + "nodeId": "@jsch_patched//:main@bazel" + } + ] + }, + { + "nodeId": "//utils/sleep_control:main@bazel", + "pkgId": "//utils/sleep_control:main@bazel", + "deps": [] + }, + { + "nodeId": "//utils/segmented_input_stream:main@bazel", + "pkgId": "//utils/segmented_input_stream:main@bazel", + "deps": [] + }, + { + "nodeId": "//utils/socket_receiver:main@bazel", + "pkgId": "//utils/socket_receiver:main@bazel", + "deps": [ + { + "nodeId": "//utils/sleep_control:main@bazel" + } + ] + }, + { + "nodeId": "//integrations/isolated_endpoint_sync:main@bazel", + "pkgId": "//integrations/isolated_endpoint_sync:main@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/speed_test:main@bazel", + "pkgId": "//integrations/speed_test:main@bazel", + "deps": [ + { + "nodeId": "//integrations/speed_test:utils@bazel" + }, + { + "nodeId": "//common:main@bazel" + } + ] + }, + { + "nodeId": "//integrations/speed_test:utils@bazel", + "pkgId": "//integrations/speed_test:utils@bazel", + "deps": [] + }, + { + "nodeId": "//ip_utils:main@bazel", + "pkgId": "//ip_utils:main@bazel", + "deps": [] + }, + { + "nodeId": "//port_forwarder:main@bazel", + "pkgId": "//port_forwarder:main@bazel", + "deps": [ + { + "nodeId": "//:databricks_jdbc@bazel" + }, + { + "nodeId": "//:netsuite_jdbc_connector@bazel" + }, + { + "nodeId": "//:sap_s4hana_jdbc_connector@bazel" + }, + { + "nodeId": "//database:postgresql_jdbc_fix@bazel" + }, + { + "nodeId": "//database:tls_verify@bazel" + }, + { + "nodeId": "//dynamo:main@bazel" + }, + { + "nodeId": "//utils/oracle:main@bazel" + }, + { + "nodeId": "//verification:main@bazel" + }, + { + "nodeId": "@jsch_patched//:main@bazel" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-redshift@1.12.84" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-sts@1.12.84" + }, + { + "nodeId": "com.ibm.db2:jcc@11.5.0.0" + }, + { + "nodeId": "com.microsoft.sqlserver:mssql-jdbc@9.4.0.jre11" + }, + { + "nodeId": "mysql:mysql-connector-java@8.0.13" + }, + { + "nodeId": "net.snowflake:snowflake-jdbc@3.13.18" + }, + { + "nodeId": "org.bouncycastle:bcpkix-jdk15on@1.70" + }, + { + "nodeId": "org.bouncycastle:bcprov-jdk15to18@1.70" + }, + { + "nodeId": "org.eclipse.jetty:jetty-server@9.4.40.v20210413" + }, + { + "nodeId": "org.eclipse.jetty:jetty-servlet@9.4.40.v20210413" + }, + { + "nodeId": "org.glassfish.jersey.containers:jersey-container-servlet-core@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-server@2.31" + }, + { + "nodeId": "org.mariadb.jdbc:mariadb-java-client@2.5.4" + }, + { + "nodeId": "org.postgresql:postgresql@42.3.3" + } + ] + }, + { + "nodeId": "//:databricks_jdbc@bazel", + "pkgId": "//:databricks_jdbc@bazel", + "deps": [] + }, + { + "nodeId": "//:netsuite_jdbc_connector@bazel", + "pkgId": "//:netsuite_jdbc_connector@bazel", + "deps": [] + }, + { + "nodeId": "//:sap_s4hana_jdbc_connector@bazel", + "pkgId": "//:sap_s4hana_jdbc_connector@bazel", + "deps": [] + }, + { + "nodeId": "//utils/oracle:main@bazel", + "pkgId": "//utils/oracle:main@bazel", + "deps": [ + { + "nodeId": "//verification:main@bazel" + } + ] + }, + { + "nodeId": "//verification:main@bazel", + "pkgId": "//verification:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:warning@bazel" + }, + { + "nodeId": "//database:tls_verify@bazel" + }, + { + "nodeId": "mysql:mysql-connector-java@8.0.13" + }, + { + "nodeId": "org.mariadb.jdbc:mariadb-java-client@2.5.4" + }, + { + "nodeId": "@mysql_binlog_connector//:main@bazel" + } + ] + }, + { + "nodeId": "mysql:mysql-connector-java@8.0.13", + "pkgId": "mysql:mysql-connector-java@8.0.13", + "deps": [] + }, + { + "nodeId": "org.mariadb.jdbc:mariadb-java-client@2.5.4", + "pkgId": "org.mariadb.jdbc:mariadb-java-client@2.5.4", + "deps": [] + }, + { + "nodeId": "@mysql_binlog_connector//:main@bazel", + "pkgId": "@mysql_binlog_connector//:main@bazel", + "deps": [ + { + "nodeId": "com.sun.xml.bind:jaxb-core@2.2.11" + }, + { + "nodeId": "com.sun.xml.bind:jaxb-impl@2.2.11" + }, + { + "nodeId": "javax.xml.bind:jaxb-api@2.2.2" + } + ] + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-redshift@1.12.84", + "pkgId": "com.amazonaws:aws-java-sdk-redshift@1.12.84", + "deps": [ + { + "nodeId": "com.amazonaws:jmespath-java@1.11.91" + } + ] + }, + { + "nodeId": "com.ibm.db2:jcc@11.5.0.0", + "pkgId": "com.ibm.db2:jcc@11.5.0.0", + "deps": [] + }, + { + "nodeId": "com.microsoft.sqlserver:mssql-jdbc@9.4.0.jre11", + "pkgId": "com.microsoft.sqlserver:mssql-jdbc@9.4.0.jre11", + "deps": [] + }, + { + "nodeId": "net.snowflake:snowflake-jdbc@3.13.18", + "pkgId": "net.snowflake:snowflake-jdbc@3.13.18", + "deps": [] + }, + { + "nodeId": "//testing:main@bazel", + "pkgId": "//testing:main@bazel", + "deps": [ + { + "nodeId": "//core_implementation/transform:main@bazel" + }, + { + "nodeId": "//core_mocks:main@bazel" + }, + { + "nodeId": "com.github.tomakehurst:wiremock-jre8-standalone@2.27.2" + }, + { + "nodeId": "javax.websocket:javax.websocket-api@1.1" + }, + { + "nodeId": "junit:junit@4.13" + }, + { + "nodeId": "org.glassfish.hk2:hk2-api@2.6.1" + }, + { + "nodeId": "org.hamcrest:hamcrest@2.2" + }, + { + "nodeId": "org.mockito:mockito-core@2.28.2" + } + ] + }, + { + "nodeId": "//core_mocks:main@bazel", + "pkgId": "//core_mocks:main@bazel", + "deps": [ + { + "nodeId": "//core_implementation:main@bazel" + }, + { + "nodeId": "//core_implementation/column_blocking:main@bazel" + }, + { + "nodeId": "//core_implementation/proto:main@bazel" + }, + { + "nodeId": "//core_implementation/proto:row_java_proto@bazel" + }, + { + "nodeId": "//core_implementation/transform:main@bazel" + }, + { + "nodeId": "com.jayway.jsonpath:json-path@2.4.0" + } + ] + }, + { + "nodeId": "com.jayway.jsonpath:json-path@2.4.0", + "pkgId": "com.jayway.jsonpath:json-path@2.4.0", + "deps": [ + { + "nodeId": "net.minidev:json-smart@2.3" + } + ] + }, + { + "nodeId": "net.minidev:json-smart@2.3", + "pkgId": "net.minidev:json-smart@2.3", + "deps": [ + { + "nodeId": "net.minidev:accessors-smart@1.2" + } + ] + }, + { + "nodeId": "net.minidev:accessors-smart@1.2", + "pkgId": "net.minidev:accessors-smart@1.2", + "deps": [ + { + "nodeId": "org.ow2.asm:asm@8.0.1" + } + ] + }, + { + "nodeId": "com.github.tomakehurst:wiremock-jre8-standalone@2.27.2", + "pkgId": "com.github.tomakehurst:wiremock-jre8-standalone@2.27.2", + "deps": [] + }, + { + "nodeId": "javax.websocket:javax.websocket-api@1.1", + "pkgId": "javax.websocket:javax.websocket-api@1.1", + "deps": [] + }, + { + "nodeId": "junit:junit@4.13", + "pkgId": "junit:junit@4.13", + "deps": [ + { + "nodeId": "org.hamcrest:hamcrest-core@2.2" + } + ] + }, + { + "nodeId": "org.hamcrest:hamcrest-core@2.2", + "pkgId": "org.hamcrest:hamcrest-core@2.2", + "deps": [ + { + "nodeId": "org.hamcrest:hamcrest@2.2" + } + ] + }, + { + "nodeId": "org.hamcrest:hamcrest@2.2", + "pkgId": "org.hamcrest:hamcrest@2.2", + "deps": [] + }, + { + "nodeId": "org.mockito:mockito-core@2.28.2", + "pkgId": "org.mockito:mockito-core@2.28.2", + "deps": [ + { + "nodeId": "net.bytebuddy:byte-buddy@1.10.14" + }, + { + "nodeId": "net.bytebuddy:byte-buddy-agent@1.10.14" + }, + { + "nodeId": "org.objenesis:objenesis@2.6" + } + ] + }, + { + "nodeId": "net.bytebuddy:byte-buddy@1.10.14", + "pkgId": "net.bytebuddy:byte-buddy@1.10.14", + "deps": [] + }, + { + "nodeId": "net.bytebuddy:byte-buddy-agent@1.10.14", + "pkgId": "net.bytebuddy:byte-buddy-agent@1.10.14", + "deps": [] + }, + { + "nodeId": "//utils/beans:main@bazel", + "pkgId": "//utils/beans:main@bazel", + "deps": [] + }, + { + "nodeId": "com.github.jsqlparser:jsqlparser@4.2", + "pkgId": "com.github.jsqlparser:jsqlparser@4.2", + "deps": [] + }, + { + "nodeId": "com.walkmind.extensions:collections@1.20", + "pkgId": "com.walkmind.extensions:collections@1.20", + "deps": [] + }, + { + "nodeId": "//integrations/db_like_standardization:main@bazel", + "pkgId": "//integrations/db_like_standardization:main@bazel", + "deps": [] + }, + { + "nodeId": "//secrets/group:main@bazel", + "pkgId": "//secrets/group:main@bazel", + "deps": [ + { + "nodeId": "//secred/client:main@bazel" + } + ] + }, + { + "nodeId": "//services/setup_test_runner:main@bazel", + "pkgId": "//services/setup_test_runner:main@bazel", + "deps": [ + { + "nodeId": "//partners:main@bazel" + }, + { + "nodeId": "//services:main@bazel" + }, + { + "nodeId": "//services/logging:main@bazel" + }, + { + "nodeId": "//setup_test_runner:client@bazel" + }, + { + "nodeId": "//utils/validations:main@bazel" + }, + { + "nodeId": "//warehouses/big_query:main@bazel" + }, + { + "nodeId": "org.glassfish.hk2:hk2-api@2.6.1" + }, + { + "nodeId": "org.jooq:jool-java-8@0.9.14" + } + ] + }, + { + "nodeId": "//setup_test_runner:client@bazel", + "pkgId": "//setup_test_runner:client@bazel", + "deps": [ + { + "nodeId": "//http:basic_auth_credentials@bazel" + }, + { + "nodeId": "//http:curl_request@bazel" + }, + { + "nodeId": "//http:exception_mappers@bazel" + }, + { + "nodeId": "//http:json@bazel" + }, + { + "nodeId": "//utils/uri:main@bazel" + }, + { + "nodeId": "javax.websocket:javax.websocket-api@1.1" + }, + { + "nodeId": "org.eclipse.jetty:jetty-util@9.4.40.v20210413" + } + ] + }, + { + "nodeId": "//http:exception_mappers@bazel", + "pkgId": "//http:exception_mappers@bazel", + "deps": [ + { + "nodeId": "javax.servlet:javax.servlet-api@3.1.0" + }, + { + "nodeId": "org.glassfish.hk2:hk2-api@2.6.1" + } + ] + }, + { + "nodeId": "//http:json@bazel", + "pkgId": "//http:json@bazel", + "deps": [] + }, + { + "nodeId": "//transformation_runner:client@bazel", + "pkgId": "//transformation_runner:client@bazel", + "deps": [ + { + "nodeId": "//http:basic_auth_credentials@bazel" + }, + { + "nodeId": "//http:curl_request@bazel" + }, + { + "nodeId": "//utils/uri:main@bazel" + } + ] + }, + { + "nodeId": "org.slf4j:slf4j-jdk14@1.7.13", + "pkgId": "org.slf4j:slf4j-jdk14@1.7.13", + "deps": [] + }, + { + "nodeId": "//events:main@bazel", + "pkgId": "//events:main@bazel", + "deps": [] + }, + { + "nodeId": "//feature_flag/sandbox:main@bazel", + "pkgId": "//feature_flag/sandbox:main@bazel", + "deps": [ + { + "nodeId": "//feature_flag:flags@bazel" + }, + { + "nodeId": "//feature_flag/json:main@bazel" + }, + { + "nodeId": "//feature_flag/service:main@bazel" + } + ] + }, + { + "nodeId": "//feature_flag/json:main@bazel", + "pkgId": "//feature_flag/json:main@bazel", + "deps": [ + { + "nodeId": "//database:enums@bazel" + } + ] + }, + { + "nodeId": "//integrated_scheduler/dag:main@bazel", + "pkgId": "//integrated_scheduler/dag:main@bazel", + "deps": [ + { + "nodeId": "//dbt/manifest:main@bazel" + } + ] + }, + { + "nodeId": "//integrated_scheduler/pipeline:main@bazel", + "pkgId": "//integrated_scheduler/pipeline:main@bazel", + "deps": [ + { + "nodeId": "//dbt/manifest:main@bazel" + }, + { + "nodeId": "//dbt/runner:main@bazel" + }, + { + "nodeId": "//integrated_scheduler/dag:main@bazel" + } + ] + }, + { + "nodeId": "//dbt/runner:main@bazel", + "pkgId": "//dbt/runner:main@bazel", + "deps": [ + { + "nodeId": "//database:hikari@bazel" + }, + { + "nodeId": "//dbt/agent:common@bazel" + }, + { + "nodeId": "//dbt/git:main@bazel" + }, + { + "nodeId": "//dbt/manifest:main@bazel" + }, + { + "nodeId": "//dbt/services:main@bazel" + }, + { + "nodeId": "//emails:core@bazel" + }, + { + "nodeId": "//emails:main@bazel" + }, + { + "nodeId": "//event_bus:main@bazel" + }, + { + "nodeId": "//feature_flag/service:main@bazel" + }, + { + "nodeId": "//http:curl_request@bazel" + }, + { + "nodeId": "//http:json@bazel" + }, + { + "nodeId": "//integrated_scheduler/scheduler:messages@bazel" + }, + { + "nodeId": "//integrated_scheduler/scheduler:pubsub@bazel" + }, + { + "nodeId": "//log_appender/cloudwatch:main@bazel" + }, + { + "nodeId": "//log_appender/datadog:main@bazel" + }, + { + "nodeId": "//log_appender/log_analytics:main@bazel" + }, + { + "nodeId": "//log_appender/splunk:main@bazel" + }, + { + "nodeId": "//log_appender/stackdriver:main@bazel" + }, + { + "nodeId": "//logging:ufl@bazel" + }, + { + "nodeId": "//port_forwarder:main@bazel" + }, + { + "nodeId": "//secred/client:main@bazel" + }, + { + "nodeId": "//services:main@bazel" + }, + { + "nodeId": "//utils/bootstrap:main@bazel" + }, + { + "nodeId": "//utils/threading:main@bazel" + }, + { + "nodeId": "//warehouses/big_query:locations@bazel" + }, + { + "nodeId": "//warehouses/common:warehouse_type@bazel" + }, + { + "nodeId": "//warehouses/redshift:redshift_cluster_service@bazel" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-redshift@1.12.84" + }, + { + "nodeId": "com.fasterxml.jackson.dataformat:jackson-dataformat-yaml@2.9.8" + }, + { + "nodeId": "com.github.f4b6a3:ulid-creator@4.0.0" + }, + { + "nodeId": "com.google.cloud:google-cloud-pubsub@1.119.1" + }, + { + "nodeId": "info.picocli:picocli@4.5.1" + }, + { + "nodeId": "org.glassfish.hk2:hk2-api@2.6.1" + } + ] + }, + { + "nodeId": "//dbt/agent:common@bazel", + "pkgId": "//dbt/agent:common@bazel", + "deps": [] + }, + { + "nodeId": "//log_appender/datadog:main@bazel", + "pkgId": "//log_appender/datadog:main@bazel", + "deps": [] + }, + { + "nodeId": "//log_appender/log_analytics:main@bazel", + "pkgId": "//log_appender/log_analytics:main@bazel", + "deps": [] + }, + { + "nodeId": "//log_appender/splunk:main@bazel", + "pkgId": "//log_appender/splunk:main@bazel", + "deps": [ + { + "nodeId": "//utils/hook:main@bazel" + }, + { + "nodeId": "com.google.cloud:google-cloud-storage@1.108.0" + } + ] + }, + { + "nodeId": "//logging:ufl@bazel", + "pkgId": "//logging:ufl@bazel", + "deps": [] + }, + { + "nodeId": "//warehouses/big_query:locations@bazel", + "pkgId": "//warehouses/big_query:locations@bazel", + "deps": [] + }, + { + "nodeId": "//warehouses/redshift:redshift_cluster_service@bazel", + "pkgId": "//warehouses/redshift:redshift_cluster_service@bazel", + "deps": [ + { + "nodeId": "com.amazonaws:aws-java-sdk-redshift@1.12.84" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-sts@1.12.84" + } + ] + }, + { + "nodeId": "//log_tailer:main@bazel", + "pkgId": "//log_tailer:main@bazel", + "deps": [ + { + "nodeId": "//common:main@bazel" + }, + { + "nodeId": "//dynamo:main@bazel" + }, + { + "nodeId": "//heartbeat:main@bazel" + }, + { + "nodeId": "//integrations/zuora:main@bazel" + }, + { + "nodeId": "//log_appender/cloudwatch:main@bazel" + }, + { + "nodeId": "//logging:fluent_bit@bazel" + }, + { + "nodeId": "//secrets/db:main@bazel" + }, + { + "nodeId": "//service_registry:main@bazel" + }, + { + "nodeId": "//utils/bootstrap:main@bazel" + }, + { + "nodeId": "com.google.api.grpc:proto-google-cloud-pubsub-v1@1.101.1" + }, + { + "nodeId": "com.google.auth:google-auth-library-credentials@0.9.1" + }, + { + "nodeId": "com.google.cloud:google-cloud-bigquery@1.48.0" + }, + { + "nodeId": "com.google.cloud:google-cloud-datastore@1.70.0" + }, + { + "nodeId": "com.google.cloud:google-cloud-pubsub@1.119.1" + }, + { + "nodeId": "com.google.cloud:google-cloud-storage@1.108.0" + }, + { + "nodeId": "info.picocli:picocli@4.5.1" + }, + { + "nodeId": "org.apache.axis:axis@1.4" + }, + { + "nodeId": "org.json:json@20171018" + }, + { + "nodeId": "org.threeten:threetenbp@1.3.3" + } + ] + }, + { + "nodeId": "//integrations/zuora:main@bazel", + "pkgId": "//integrations/zuora:main@bazel", + "deps": [ + { + "nodeId": "//dblike:main@bazel" + }, + { + "nodeId": "//integrations/db_like_standardization:main@bazel" + }, + { + "nodeId": "//slack:main@bazel" + }, + { + "nodeId": "com.sun.xml.bind:jaxb-core@2.2.11" + }, + { + "nodeId": "com.sun.xml.bind:jaxb-impl@2.2.11" + }, + { + "nodeId": "javax.xml.bind:jaxb-api@2.2.2" + } + ] + }, + { + "nodeId": "//secrets/integration:main@bazel", + "pkgId": "//secrets/integration:main@bazel", + "deps": [ + { + "nodeId": "//secred/client:main@bazel" + }, + { + "nodeId": "//secred/common:main@bazel" + } + ] + }, + { + "nodeId": "//logging:fluent_bit@bazel", + "pkgId": "//logging:fluent_bit@bazel", + "deps": [ + { + "nodeId": "//logging:ufl@bazel" + } + ] + }, + { + "nodeId": "//service_registry:main@bazel", + "pkgId": "//service_registry:main@bazel", + "deps": [ + { + "nodeId": "//coil:main@bazel" + }, + { + "nodeId": "//integrations/chartio:main@bazel" + }, + { + "nodeId": "//integrations/google_data_studio:main@bazel" + }, + { + "nodeId": "//integrations/periscope:main@bazel" + }, + { + "nodeId": "//integrations/sigma_computing:main@bazel" + }, + { + "nodeId": "//integrations/sisense:main@bazel" + }, + { + "nodeId": "//integrations/tableau:main@bazel" + }, + { + "nodeId": "//integrations/looker:main@bazel" + }, + { + "nodeId": "//integrations/postgres2020:main@bazel" + }, + { + "nodeId": "//log_appender/cloudwatch:main@bazel" + }, + { + "nodeId": "//log_appender/datadog:main@bazel" + }, + { + "nodeId": "//log_appender/log_analytics:main@bazel" + }, + { + "nodeId": "//log_appender/splunk:main@bazel" + }, + { + "nodeId": "//log_appender/stackdriver:main@bazel" + }, + { + "nodeId": "//secrets/db:main@bazel" + }, + { + "nodeId": "//sources/bridge:main@bazel" + }, + { + "nodeId": "//warehouses/azure:main@bazel" + }, + { + "nodeId": "//warehouses/big_query:main@bazel" + }, + { + "nodeId": "//warehouses/databricks:main@bazel" + }, + { + "nodeId": "//warehouses/mysql:main@bazel" + }, + { + "nodeId": "//warehouses/panoply:main@bazel" + }, + { + "nodeId": "//warehouses/periscope:main@bazel" + }, + { + "nodeId": "//warehouses/postgres:main@bazel" + }, + { + "nodeId": "//warehouses/redshift:main@bazel" + }, + { + "nodeId": "//warehouses/s3_data_lake:main@bazel" + }, + { + "nodeId": "//warehouses/snowflake:main@bazel" + }, + { + "nodeId": "//warehouses/sql_server:main@bazel" + }, + { + "nodeId": "//integrations/adjust:main@bazel" + }, + { + "nodeId": "//integrations/adobe_analytics:main@bazel" + }, + { + "nodeId": "//integrations/adobe_analytics_data_feed:main@bazel" + }, + { + "nodeId": "//integrations/adp_workforce_now:main@bazel" + }, + { + "nodeId": "//integrations/adroll:main@bazel" + }, + { + "nodeId": "//integrations/adwords:main@bazel" + }, + { + "nodeId": "//integrations/google_ads:main@bazel" + }, + { + "nodeId": "//integrations/airtable:main@bazel" + }, + { + "nodeId": "//integrations/amazon_ads:main@bazel" + }, + { + "nodeId": "//integrations/amplitude:main@bazel" + }, + { + "nodeId": "//integrations/anaplan:main@bazel" + }, + { + "nodeId": "//integrations/apple_search_ads:main@bazel" + }, + { + "nodeId": "//integrations/appsflyer:main@bazel" + }, + { + "nodeId": "//integrations/asana:main@bazel" + }, + { + "nodeId": "//integrations/aws_cloudtrail:main@bazel" + }, + { + "nodeId": "//integrations/aws_inventory:main@bazel" + }, + { + "nodeId": "//integrations/azure_blob_storage:main@bazel" + }, + { + "nodeId": "//integrations/azure_consumer_file:main@bazel" + }, + { + "nodeId": "//integrations/azure_service_bus:main@bazel" + }, + { + "nodeId": "//integrations/big_commerce:main@bazel" + }, + { + "nodeId": "//integrations/bingads:main@bazel" + }, + { + "nodeId": "//integrations/box:main@bazel" + }, + { + "nodeId": "//integrations/braintree:main@bazel" + }, + { + "nodeId": "//integrations/branch:main@bazel" + }, + { + "nodeId": "//integrations/braze:main@bazel" + }, + { + "nodeId": "//integrations/business_central:main@bazel" + }, + { + "nodeId": "//integrations/cloudfront:main@bazel" + }, + { + "nodeId": "//integrations/coupa:main@bazel" + }, + { + "nodeId": "//integrations/criteo:main@bazel" + }, + { + "nodeId": "//integrations/db2:main@bazel" + }, + { + "nodeId": "//integrations/document:main@bazel" + }, + { + "nodeId": "//integrations/double_click_campaign_manager:main@bazel" + }, + { + "nodeId": "//integrations/dropbox:main@bazel" + }, + { + "nodeId": "//integrations/dummy_postgres:main@bazel" + }, + { + "nodeId": "//integrations/dynamics365:main@bazel" + }, + { + "nodeId": "//integrations/dynamodb:main@bazel" + }, + { + "nodeId": "//integrations/elasticsearch:main@bazel" + }, + { + "nodeId": "//integrations/eloqua:main@bazel" + }, + { + "nodeId": "//integrations/email:main@bazel" + }, + { + "nodeId": "//integrations/facebook:main@bazel" + }, + { + "nodeId": "//integrations/acmecorp_log:main@bazel" + }, + { + "nodeId": "//integrations/freshdesk:main@bazel" + }, + { + "nodeId": "//integrations/freshservice_classic:main@bazel" + }, + { + "nodeId": "//integrations/front:main@bazel" + }, + { + "nodeId": "//integrations/ftp:main@bazel" + }, + { + "nodeId": "//integrations/functions/aws_lambda:main@bazel" + }, + { + "nodeId": "//integrations/functions/azure_function:main@bazel" + }, + { + "nodeId": "//integrations/functions/google_cloud_function:main@bazel" + }, + { + "nodeId": "//integrations/gcs:main@bazel" + }, + { + "nodeId": "//integrations/gainsight_customer_success:main@bazel" + }, + { + "nodeId": "//integrations/gdrive:main@bazel" + }, + { + "nodeId": "//integrations/github:main@bazel" + }, + { + "nodeId": "//integrations/google_ad_manager:main@bazel" + }, + { + "nodeId": "//integrations/google_analytics:main@bazel" + }, + { + "nodeId": "//integrations/google_analytics_4:main@bazel" + }, + { + "nodeId": "//integrations/google_analytics_4_export:main@bazel" + }, + { + "nodeId": "//integrations/google_analytics_360:main@bazel" + }, + { + "nodeId": "//integrations/google_display_and_video_360:main@bazel" + }, + { + "nodeId": "//integrations/google_search_ads_360:main@bazel" + }, + { + "nodeId": "//integrations/google_play:main@bazel" + }, + { + "nodeId": "//integrations/google_search_console:main@bazel" + }, + { + "nodeId": "//integrations/greenhouse:main@bazel" + }, + { + "nodeId": "//integrations/gsheets:main@bazel" + }, + { + "nodeId": "//integrations/heap:main@bazel" + }, + { + "nodeId": "//integrations/height:main@bazel" + }, + { + "nodeId": "//integrations/helpscout:main@bazel" + }, + { + "nodeId": "//integrations/hubspot:main@bazel" + }, + { + "nodeId": "//integrations/instagram:main@bazel" + }, + { + "nodeId": "//integrations/intercom:main@bazel" + }, + { + "nodeId": "//integrations/iterable:main@bazel" + }, + { + "nodeId": "//integrations/itunes_connect:main@bazel" + }, + { + "nodeId": "//integrations/jira:main@bazel" + }, + { + "nodeId": "//integrations/kafka:main@bazel" + }, + { + "nodeId": "//integrations/kinesis:main@bazel" + }, + { + "nodeId": "//integrations/klaviyo:main@bazel" + }, + { + "nodeId": "//integrations/kustomer:main@bazel" + }, + { + "nodeId": "//integrations/lever:main@bazel" + }, + { + "nodeId": "//integrations/lightspeed_retail:main@bazel" + }, + { + "nodeId": "//integrations/linkedin:main@bazel" + }, + { + "nodeId": "//integrations/mailchimp:main@bazel" + }, + { + "nodeId": "//integrations/mandrill:main@bazel" + }, + { + "nodeId": "//integrations/marin:main@bazel" + }, + { + "nodeId": "//integrations/marketo:main@bazel" + }, + { + "nodeId": "//integrations/mavenlink:main@bazel" + }, + { + "nodeId": "//integrations/medallia:main@bazel" + }, + { + "nodeId": "//integrations/microsoft_lists:main@bazel" + }, + { + "nodeId": "//integrations/mixpanel:main@bazel" + }, + { + "nodeId": "//integrations/mongo:main@bazel" + }, + { + "nodeId": "//integrations/mysql:main@bazel" + }, + { + "nodeId": "//integrations/netsuite:main@bazel" + }, + { + "nodeId": "//integrations/optimizely:main@bazel" + }, + { + "nodeId": "//integrations/oracle_cloud_apps_cx:main@bazel" + }, + { + "nodeId": "//integrations/oracle_cloud_apps_erp_scm:main@bazel" + }, + { + "nodeId": "//integrations/oracle_fusion_cloud_apps:main@bazel" + }, + { + "nodeId": "//integrations/oracle:main@bazel" + }, + { + "nodeId": "//integrations/oracle_hva:main@bazel" + }, + { + "nodeId": "//integrations/oracle_hva2:main@bazel" + }, + { + "nodeId": "//integrations/outbrain:main@bazel" + }, + { + "nodeId": "//integrations/outreach:main@bazel" + }, + { + "nodeId": "//integrations/pardot:main@bazel" + }, + { + "nodeId": "//integrations/paypal:main@bazel" + }, + { + "nodeId": "//integrations/pendo:main@bazel" + }, + { + "nodeId": "//integrations/pinterest:main@bazel" + }, + { + "nodeId": "//integrations/pipedrive:main@bazel" + }, + { + "nodeId": "//integrations/postgres:main@bazel" + }, + { + "nodeId": "//integrations/qualtrics:main@bazel" + }, + { + "nodeId": "//integrations/quickbooks:main@bazel" + }, + { + "nodeId": "//integrations/recharge:main@bazel" + }, + { + "nodeId": "//integrations/recurly:main@bazel" + }, + { + "nodeId": "//integrations/reddit:main@bazel" + }, + { + "nodeId": "//integrations/s3:main@bazel" + }, + { + "nodeId": "//integrations/sage_intacct:main@bazel" + }, + { + "nodeId": "//integrations/sailthru:main@bazel" + }, + { + "nodeId": "//integrations/salesforce:main@bazel" + }, + { + "nodeId": "//integrations/salesforce_commerce_cloud:main@bazel" + }, + { + "nodeId": "//integrations/salesforce_marketing_cloud:main@bazel" + }, + { + "nodeId": "//integrations/sap_business_bydesign:main@bazel" + }, + { + "nodeId": "//integrations/sap_concur:main@bazel" + }, + { + "nodeId": "//integrations/sap_s4hana:main@bazel" + }, + { + "nodeId": "//integrations/segment:main@bazel" + }, + { + "nodeId": "//integrations/sendgrid:main@bazel" + }, + { + "nodeId": "//integrations/service_now:main@bazel" + }, + { + "nodeId": "//integrations/sftp:main@bazel" + }, + { + "nodeId": "//integrations/shopify:main@bazel" + }, + { + "nodeId": "//integrations/snapchat_ads:main@bazel" + }, + { + "nodeId": "//integrations/snowplow:main@bazel" + }, + { + "nodeId": "//integrations/snowflake:main@bazel" + }, + { + "nodeId": "//integrations/splunk:main@bazel" + }, + { + "nodeId": "//integrations/sql_server:main@bazel" + }, + { + "nodeId": "//integrations/square:main@bazel" + }, + { + "nodeId": "//integrations/stripe:main@bazel" + }, + { + "nodeId": "//integrations/survey_monkey:main@bazel" + }, + { + "nodeId": "//integrations/spotify_ads:main@bazel" + }, + { + "nodeId": "//integrations/taboola:main@bazel" + }, + { + "nodeId": "//integrations/the_trade_desk:main@bazel" + }, + { + "nodeId": "//integrations/tiktok_ads:main@bazel" + }, + { + "nodeId": "//integrations/twilio:main@bazel" + }, + { + "nodeId": "//integrations/twitter:main@bazel" + }, + { + "nodeId": "//integrations/typeform:main@bazel" + }, + { + "nodeId": "//integrations/uservoice:main@bazel" + }, + { + "nodeId": "//integrations/webhooks:main@bazel" + }, + { + "nodeId": "//integrations/wordpress:main@bazel" + }, + { + "nodeId": "//integrations/workday:main@bazel" + }, + { + "nodeId": "//integrations/workday_hcm:main@bazel" + }, + { + "nodeId": "//integrations/xero:main@bazel" + }, + { + "nodeId": "//integrations/yahoo_gemini:main@bazel" + }, + { + "nodeId": "//integrations/youtube_analytics:main@bazel" + }, + { + "nodeId": "//integrations/zendesk:main@bazel" + }, + { + "nodeId": "//integrations/zendesk_chat:main@bazel" + }, + { + "nodeId": "//integrations/zendesk_sell:main@bazel" + }, + { + "nodeId": "//integrations/zendesk_sunshine:main@bazel" + }, + { + "nodeId": "//integrations/zoho_crm:main@bazel" + }, + { + "nodeId": "//integrations/zuora:main@bazel" + }, + { + "nodeId": "//integrations/coil_connectors:main@bazel" + }, + { + "nodeId": "//integrations/delighted:main@bazel" + }, + { + "nodeId": "//sources/delighted:main@bazel" + } + ] + }, + { + "nodeId": "//coil:main@bazel", + "pkgId": "//coil:main@bazel", + "deps": [ + { + "nodeId": "//coil:coil_framework_java@bazel" + }, + { + "nodeId": "//common:main@bazel" + }, + { + "nodeId": "//core_implementation:main@bazel" + }, + { + "nodeId": "//core_mocks:main@bazel" + }, + { + "nodeId": "//integrations/coil_connectors:main@bazel" + }, + { + "nodeId": "//sources/types:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.dataformat:jackson-dataformat-yaml@2.9.8" + }, + { + "nodeId": "com.jayway.jsonpath:json-path@2.4.0" + }, + { + "nodeId": "lambdaisland:deep-diff2@2.0.108" + }, + { + "nodeId": "org.apache.commons:commons-collections4@4.1" + }, + { + "nodeId": "org.clojure:clojure@1.10.1" + }, + { + "nodeId": "org.eclipse.jetty:jetty-util@9.4.40.v20210413" + }, + { + "nodeId": "org.jooq:jool-java-8@0.9.14" + } + ] + }, + { + "nodeId": "//coil:coil_framework_java@bazel", + "pkgId": "//coil:coil_framework_java@bazel", + "deps": [ + { + "nodeId": "//coil:coil_framework_clojure@bazel" + }, + { + "nodeId": "//integrations/coil_connectors:main@bazel" + } + ] + }, + { + "nodeId": "//coil:coil_framework_clojure@bazel", + "pkgId": "//coil:coil_framework_clojure@bazel", + "deps": [ + { + "nodeId": "//integrations/coil_connectors:main@bazel" + }, + { + "nodeId": "org.clojure:clojure@1.10.1" + }, + { + "nodeId": "org.clojure:core.specs.alpha@0.2.56" + }, + { + "nodeId": "org.clojure:data.json@1.1.0" + } + ] + }, + { + "nodeId": "//integrations/coil_connectors:main@bazel", + "pkgId": "//integrations/coil_connectors:main@bazel", + "deps": [] + }, + { + "nodeId": "org.clojure:clojure@1.10.1", + "pkgId": "org.clojure:clojure@1.10.1", + "deps": [] + }, + { + "nodeId": "org.clojure:core.specs.alpha@0.2.56", + "pkgId": "org.clojure:core.specs.alpha@0.2.56", + "deps": [] + }, + { + "nodeId": "org.clojure:data.json@1.1.0", + "pkgId": "org.clojure:data.json@1.1.0", + "deps": [ + { + "nodeId": "org.clojure:clojure@1.10.1" + } + ] + }, + { + "nodeId": "//webhook/client:main@bazel", + "pkgId": "//webhook/client:main@bazel", + "deps": [ + { + "nodeId": "//cloud_storage:main@bazel" + }, + { + "nodeId": "//secred/client:main@bazel" + }, + { + "nodeId": "//secred/common:main@bazel" + }, + { + "nodeId": "//webhook/storage:main@bazel" + }, + { + "nodeId": "//webhook/utils:main@bazel" + }, + { + "nodeId": "com.google.api.grpc:proto-google-cloud-monitoring-v3@1.75.0" + }, + { + "nodeId": "com.google.cloud:google-cloud-storage@1.108.0" + } + ] + }, + { + "nodeId": "//webhook/storage:main@bazel", + "pkgId": "//webhook/storage:main@bazel", + "deps": [ + { + "nodeId": "//cloud_storage:main@bazel" + }, + { + "nodeId": "//database:enums@bazel" + }, + { + "nodeId": "//shaded_dependencies/azure:azure_identity_shaded@bazel" + }, + { + "nodeId": "//shaded_dependencies/azure:azure_storage_blob_shaded@bazel" + }, + { + "nodeId": "//utils/os:main@bazel" + }, + { + "nodeId": "com.google.cloud:google-cloud-storage@1.108.0" + } + ] + }, + { + "nodeId": "//webhook/utils:main@bazel", + "pkgId": "//webhook/utils:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:pojos@bazel" + }, + { + "nodeId": "//database:enums@bazel" + }, + { + "nodeId": "//database/exceptions:main@bazel" + }, + { + "nodeId": "//dockerized/postgres:main@bazel" + }, + { + "nodeId": "com.mchange:c3p0@0.9.5.1" + }, + { + "nodeId": "io.kubernetes:client-java@3.0.0-beta2" + }, + { + "nodeId": "io.kubernetes:client-java-api@3.0.0-beta2" + } + ] + }, + { + "nodeId": "//core_interfaces:pojos@bazel", + "pkgId": "//core_interfaces:pojos@bazel", + "deps": [ + { + "nodeId": "//database:credential_models@bazel" + }, + { + "nodeId": "//utils/validations:main@bazel" + } + ] + }, + { + "nodeId": "io.kubernetes:client-java@3.0.0-beta2", + "pkgId": "io.kubernetes:client-java@3.0.0-beta2", + "deps": [ + { + "nodeId": "io.kubernetes:client-java-api@3.0.0-beta2" + }, + { + "nodeId": "com.microsoft.azure:adal4j@1.6.3" + }, + { + "nodeId": "com.squareup.okhttp:okhttp-ws@2.7.5" + }, + { + "nodeId": "org.bouncycastle:bcprov-ext-jdk15on@1.70" + }, + { + "nodeId": "org.bouncycastle:bcpkix-jdk15on@1.70" + }, + { + "nodeId": "org.yaml:snakeyaml@1.23" + }, + { + "nodeId": "io.kubernetes:client-java-proto@3.0.0" + } + ] + }, + { + "nodeId": "io.kubernetes:client-java-api@3.0.0-beta2", + "pkgId": "io.kubernetes:client-java-api@3.0.0-beta2", + "deps": [ + { + "nodeId": "com.google.code.gson:gson@2.9.0" + }, + { + "nodeId": "com.squareup.okhttp:okhttp@2.7.5" + }, + { + "nodeId": "org.joda:joda-convert@1.2" + }, + { + "nodeId": "com.squareup.okhttp:logging-interceptor@2.7.5" + }, + { + "nodeId": "io.sundr:builder-annotations@0.8.0" + }, + { + "nodeId": "joda-time:joda-time@2.9.2" + }, + { + "nodeId": "io.swagger:swagger-annotations@1.6.0" + } + ] + }, + { + "nodeId": "com.squareup.okhttp:okhttp@2.7.5", + "pkgId": "com.squareup.okhttp:okhttp@2.7.5", + "deps": [ + { + "nodeId": "com.squareup.okio:okio@1.13.0" + } + ] + }, + { + "nodeId": "com.squareup.okio:okio@1.13.0", + "pkgId": "com.squareup.okio:okio@1.13.0", + "deps": [] + }, + { + "nodeId": "org.joda:joda-convert@1.2", + "pkgId": "org.joda:joda-convert@1.2", + "deps": [] + }, + { + "nodeId": "com.squareup.okhttp:logging-interceptor@2.7.5", + "pkgId": "com.squareup.okhttp:logging-interceptor@2.7.5", + "deps": [ + { + "nodeId": "com.squareup.okhttp:okhttp@2.7.5" + } + ] + }, + { + "nodeId": "io.sundr:builder-annotations@0.8.0", + "pkgId": "io.sundr:builder-annotations@0.8.0", + "deps": [ + { + "nodeId": "io.sundr:sundr-codegen@0.8.0" + }, + { + "nodeId": "io.sundr:sundr-core@0.8.0" + } + ] + }, + { + "nodeId": "io.sundr:sundr-codegen@0.8.0", + "pkgId": "io.sundr:sundr-codegen@0.8.0", + "deps": [] + }, + { + "nodeId": "io.sundr:sundr-core@0.8.0", + "pkgId": "io.sundr:sundr-core@0.8.0", + "deps": [] + }, + { + "nodeId": "io.swagger:swagger-annotations@1.6.0", + "pkgId": "io.swagger:swagger-annotations@1.6.0", + "deps": [] + }, + { + "nodeId": "com.microsoft.azure:adal4j@1.6.3", + "pkgId": "com.microsoft.azure:adal4j@1.6.3", + "deps": [ + { + "nodeId": "com.nimbusds:oauth2-oidc-sdk@5.64.4" + }, + { + "nodeId": "com.google.code.gson:gson@2.9.0" + } + ] + }, + { + "nodeId": "com.nimbusds:oauth2-oidc-sdk@5.64.4", + "pkgId": "com.nimbusds:oauth2-oidc-sdk@5.64.4", + "deps": [ + { + "nodeId": "com.github.stephenc.jcip:jcip-annotations@1.0-1" + }, + { + "nodeId": "com.sun.mail:javax.mail@1.5.4" + }, + { + "nodeId": "com.nimbusds:nimbus-jose-jwt@5.5" + }, + { + "nodeId": "com.nimbusds:lang-tag@1.4.3" + }, + { + "nodeId": "net.minidev:json-smart@2.3" + } + ] + }, + { + "nodeId": "com.github.stephenc.jcip:jcip-annotations@1.0-1", + "pkgId": "com.github.stephenc.jcip:jcip-annotations@1.0-1", + "deps": [] + }, + { + "nodeId": "com.sun.mail:javax.mail@1.5.4", + "pkgId": "com.sun.mail:javax.mail@1.5.4", + "deps": [ + { + "nodeId": "javax.activation:activation@1.1" + } + ] + }, + { + "nodeId": "com.nimbusds:nimbus-jose-jwt@5.5", + "pkgId": "com.nimbusds:nimbus-jose-jwt@5.5", + "deps": [ + { + "nodeId": "com.github.stephenc.jcip:jcip-annotations@1.0-1" + }, + { + "nodeId": "net.minidev:json-smart@2.3" + } + ] + }, + { + "nodeId": "com.nimbusds:lang-tag@1.4.3", + "pkgId": "com.nimbusds:lang-tag@1.4.3", + "deps": [ + { + "nodeId": "net.minidev:json-smart@2.3" + } + ] + }, + { + "nodeId": "com.squareup.okhttp:okhttp-ws@2.7.5", + "pkgId": "com.squareup.okhttp:okhttp-ws@2.7.5", + "deps": [ + { + "nodeId": "com.squareup.okhttp:okhttp@2.7.5" + } + ] + }, + { + "nodeId": "io.kubernetes:client-java-proto@3.0.0", + "pkgId": "io.kubernetes:client-java-proto@3.0.0", + "deps": [] + }, + { + "nodeId": "lambdaisland:deep-diff2@2.0.108", + "pkgId": "lambdaisland:deep-diff2@2.0.108", + "deps": [ + { + "nodeId": "fipp:fipp@0.6.23" + }, + { + "nodeId": "lambdaisland:clj-diff@1.1.58" + }, + { + "nodeId": "mvxcvi:arrangement@1.2.1" + }, + { + "nodeId": "org.clojure:core.rrb-vector@0.1.1" + } + ] + }, + { + "nodeId": "fipp:fipp@0.6.23", + "pkgId": "fipp:fipp@0.6.23", + "deps": [ + { + "nodeId": "org.clojure:clojure@1.10.1" + }, + { + "nodeId": "org.clojure:core.rrb-vector@0.1.1" + } + ] + }, + { + "nodeId": "org.clojure:core.rrb-vector@0.1.1", + "pkgId": "org.clojure:core.rrb-vector@0.1.1", + "deps": [ + { + "nodeId": "org.clojure:clojure@1.10.1" + } + ] + }, + { + "nodeId": "lambdaisland:clj-diff@1.1.58", + "pkgId": "lambdaisland:clj-diff@1.1.58", + "deps": [] + }, + { + "nodeId": "mvxcvi:arrangement@1.2.1", + "pkgId": "mvxcvi:arrangement@1.2.1", + "deps": [] + }, + { + "nodeId": "org.apache.commons:commons-collections4@4.1", + "pkgId": "org.apache.commons:commons-collections4@4.1", + "deps": [] + }, + { + "nodeId": "//integrations/chartio:main@bazel", + "pkgId": "//integrations/chartio:main@bazel", + "deps": [ + { + "nodeId": "//services:main@bazel" + }, + { + "nodeId": "com.google.apis:google-api-services-bigquery@v2-rev459-1.25.0" + }, + { + "nodeId": "com.google.apis:google-api-services-cloudresourcemanager@v1-rev495-1.23.0" + }, + { + "nodeId": "com.google.apis:google-api-services-iam@v1-rev193-1.22.0" + } + ] + }, + { + "nodeId": "//integrations/google_data_studio:main@bazel", + "pkgId": "//integrations/google_data_studio:main@bazel", + "deps": [ + { + "nodeId": "//services:main@bazel" + }, + { + "nodeId": "com.google.apis:google-api-services-bigquery@v2-rev459-1.25.0" + }, + { + "nodeId": "com.google.apis:google-api-services-cloudresourcemanager@v1-rev495-1.23.0" + }, + { + "nodeId": "com.google.apis:google-api-services-iam@v1-rev193-1.22.0" + } + ] + }, + { + "nodeId": "//integrations/periscope:main@bazel", + "pkgId": "//integrations/periscope:main@bazel", + "deps": [ + { + "nodeId": "//services:main@bazel" + }, + { + "nodeId": "//warehouses/common:tasks@bazel" + }, + { + "nodeId": "com.google.apis:google-api-services-bigquery@v2-rev459-1.25.0" + }, + { + "nodeId": "com.google.apis:google-api-services-iam@v1-rev193-1.22.0" + } + ] + }, + { + "nodeId": "//warehouses/common:tasks@bazel", + "pkgId": "//warehouses/common:tasks@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/sigma_computing:main@bazel", + "pkgId": "//integrations/sigma_computing:main@bazel", + "deps": [ + { + "nodeId": "//services:main@bazel" + }, + { + "nodeId": "com.google.apis:google-api-services-bigquery@v2-rev459-1.25.0" + }, + { + "nodeId": "com.google.apis:google-api-services-cloudresourcemanager@v1-rev495-1.23.0" + }, + { + "nodeId": "com.google.apis:google-api-services-iam@v1-rev193-1.22.0" + } + ] + }, + { + "nodeId": "//integrations/sisense:main@bazel", + "pkgId": "//integrations/sisense:main@bazel", + "deps": [ + { + "nodeId": "//services:main@bazel" + }, + { + "nodeId": "com.google.apis:google-api-services-bigquery@v2-rev459-1.25.0" + }, + { + "nodeId": "com.google.apis:google-api-services-iam@v1-rev193-1.22.0" + } + ] + }, + { + "nodeId": "//integrations/tableau:main@bazel", + "pkgId": "//integrations/tableau:main@bazel", + "deps": [ + { + "nodeId": "//services:main@bazel" + }, + { + "nodeId": "com.google.apis:google-api-services-bigquery@v2-rev459-1.25.0" + }, + { + "nodeId": "com.google.apis:google-api-services-cloudresourcemanager@v1-rev495-1.23.0" + }, + { + "nodeId": "com.google.apis:google-api-services-iam@v1-rev193-1.22.0" + } + ] + }, + { + "nodeId": "//integrations/looker:main@bazel", + "pkgId": "//integrations/looker:main@bazel", + "deps": [ + { + "nodeId": "//services:main@bazel" + }, + { + "nodeId": "com.google.apis:google-api-services-bigquery@v2-rev459-1.25.0" + }, + { + "nodeId": "com.google.apis:google-api-services-iam@v1-rev193-1.22.0" + } + ] + }, + { + "nodeId": "//integrations/postgres2020:main@bazel", + "pkgId": "//integrations/postgres2020:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:warning@bazel" + }, + { + "nodeId": "//feature_flag:flags@bazel" + }, + { + "nodeId": "//geo:main@bazel" + }, + { + "nodeId": "//integrations/configuration_tracker:main@bazel" + }, + { + "nodeId": "//integrations/speed_test:main@bazel" + }, + { + "nodeId": "//metal:main@bazel" + }, + { + "nodeId": "//port_forwarder:main@bazel" + }, + { + "nodeId": "//schema_migration:schema_migration_info@bazel" + }, + { + "nodeId": "//services:ab_tests@bazel" + }, + { + "nodeId": "//teleport:main@bazel" + }, + { + "nodeId": "//utils/binary:main@bazel" + }, + { + "nodeId": "//utils/operations:main@bazel" + }, + { + "nodeId": "//utils/serializers:main@bazel" + }, + { + "nodeId": "//utils/sync_statistics:main@bazel" + }, + { + "nodeId": "//utils/threading:main@bazel" + }, + { + "nodeId": "//verification:main@bazel" + }, + { + "nodeId": "com.google.cloud:google-cloud-logging@1.19.0" + }, + { + "nodeId": "com.google.code.gson:gson@2.9.0" + }, + { + "nodeId": "io.netty:netty-buffer@4.1.50.Final" + }, + { + "nodeId": "org.postgresql:postgresql@42.3.3" + } + ] + }, + { + "nodeId": "//geo:main@bazel", + "pkgId": "//geo:main@bazel", + "deps": [ + { + "nodeId": "//utils/binary:main@bazel" + } + ] + }, + { + "nodeId": "//utils/binary:main@bazel", + "pkgId": "//utils/binary:main@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/configuration_tracker:main@bazel", + "pkgId": "//integrations/configuration_tracker:main@bazel", + "deps": [ + { + "nodeId": "com.google.apis:google-api-services-bigquery@v2-rev459-1.25.0" + }, + { + "nodeId": "com.google.cloud:google-cloud-bigquery@1.48.0" + }, + { + "nodeId": "org.jeasy:easy-rules-core@4.1.0" + } + ] + }, + { + "nodeId": "com.google.cloud:google-cloud-bigquery@1.48.0", + "pkgId": "com.google.cloud:google-cloud-bigquery@1.48.0", + "deps": [ + { + "nodeId": "com.google.apis:google-api-services-bigquery@v2-rev459-1.25.0" + }, + { + "nodeId": "com.google.auto.value:auto-value@1.5.3" + }, + { + "nodeId": "com.google.cloud:google-cloud-core-http@1.48.0" + } + ] + }, + { + "nodeId": "com.google.auto.value:auto-value@1.5.3", + "pkgId": "com.google.auto.value:auto-value@1.5.3", + "deps": [] + }, + { + "nodeId": "org.jeasy:easy-rules-core@4.1.0", + "pkgId": "org.jeasy:easy-rules-core@4.1.0", + "deps": [] + }, + { + "nodeId": "//services:ab_tests@bazel", + "pkgId": "//services:ab_tests@bazel", + "deps": [] + }, + { + "nodeId": "//teleport:main@bazel", + "pkgId": "//teleport:main@bazel", + "deps": [ + { + "nodeId": "//cloud_storage:main@bazel" + }, + { + "nodeId": "//common:main@bazel" + }, + { + "nodeId": "//logger:acmecorp_logger@bazel" + }, + { + "nodeId": "//shaded_dependencies/azure:azure_identity_shaded@bazel" + }, + { + "nodeId": "//shaded_dependencies/azure:azure_storage_blob_shaded@bazel" + }, + { + "nodeId": "//utils/fsort:main@bazel" + }, + { + "nodeId": "//utils/os:main@bazel" + }, + { + "nodeId": "//utils/serializers:main@bazel" + }, + { + "nodeId": "com.google.cloud:google-cloud-storage@1.108.0" + }, + { + "nodeId": "io.netty:netty-buffer@4.1.50.Final" + }, + { + "nodeId": "org.apache.velocity:velocity@1.7" + } + ] + }, + { + "nodeId": "//utils/operations:main@bazel", + "pkgId": "//utils/operations:main@bazel", + "deps": [] + }, + { + "nodeId": "//sources/bridge:main@bazel", + "pkgId": "//sources/bridge:main@bazel", + "deps": [ + { + "nodeId": "//api:connector_config_formatter@bazel" + }, + { + "nodeId": "//sources/form:main@bazel" + }, + { + "nodeId": "//sources/types:main@bazel" + }, + { + "nodeId": "org.jooq:jool-java-8@0.9.14" + } + ] + }, + { + "nodeId": "//api:connector_config_formatter@bazel", + "pkgId": "//api:connector_config_formatter@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:pojos@bazel" + }, + { + "nodeId": "//sources/form:main@bazel" + }, + { + "nodeId": "//sources/types:main@bazel" + } + ] + }, + { + "nodeId": "//sources/form:main@bazel", + "pkgId": "//sources/form:main@bazel", + "deps": [] + }, + { + "nodeId": "//warehouses/azure:main@bazel", + "pkgId": "//warehouses/azure:main@bazel", + "deps": [ + { + "nodeId": "//dynamo:main@bazel" + }, + { + "nodeId": "//heartbeat:lite@bazel" + }, + { + "nodeId": "//port_forwarder:azure@bazel" + }, + { + "nodeId": "//warehouses/common:feature_flags@bazel" + }, + { + "nodeId": "//warehouses/common:main@bazel" + }, + { + "nodeId": "//warehouses/common:staging_azure@bazel" + }, + { + "nodeId": "//warehouses/common:tasks@bazel" + }, + { + "nodeId": "//warehouses/common-local:writer_avro_base@bazel" + }, + { + "nodeId": "//warehouses/common-local:writer_base@bazel" + }, + { + "nodeId": "//warehouses/common-local:writer_parquet@bazel" + }, + { + "nodeId": "org.apache.avro:avro@1.11.0" + }, + { + "nodeId": "org.apache.parquet:parquet-common@1.12.2" + } + ] + }, + { + "nodeId": "//port_forwarder:azure@bazel", + "pkgId": "//port_forwarder:azure@bazel", + "deps": [ + { + "nodeId": "com.microsoft.sqlserver:mssql-jdbc@9.4.0.jre11" + }, + { + "nodeId": "//aws:instance_id@bazel" + }, + { + "nodeId": "//dynamo:main@bazel" + }, + { + "nodeId": "//database:postgresql_jdbc_fix@bazel" + }, + { + "nodeId": "@jsch_patched//:main@bazel" + }, + { + "nodeId": "org.eclipse.jetty:jetty-server@9.4.40.v20210413" + }, + { + "nodeId": "org.eclipse.jetty:jetty-servlet@9.4.40.v20210413" + }, + { + "nodeId": "org.glassfish.jersey.containers:jersey-container-servlet-core@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-server@2.31" + }, + { + "nodeId": "org.bouncycastle:bcpkix-jdk15on@1.70" + } + ] + }, + { + "nodeId": "//warehouses/common-local:writer_parquet@bazel", + "pkgId": "//warehouses/common-local:writer_parquet@bazel", + "deps": [ + { + "nodeId": "//warehouses/common-local:writer_avro_base@bazel" + }, + { + "nodeId": "//warehouses/common-local:writer_base@bazel" + }, + { + "nodeId": "//warehouses/common:feature_flags@bazel" + }, + { + "nodeId": "org.apache.avro:avro@1.11.0" + }, + { + "nodeId": "org.apache.hadoop:hadoop-common@2.7.7" + }, + { + "nodeId": "org.apache.hadoop:hadoop-mapreduce-client-core@2.7.7" + }, + { + "nodeId": "org.apache.parquet:parquet-avro@1.12.2" + }, + { + "nodeId": "org.apache.parquet:parquet-column@1.12.2" + }, + { + "nodeId": "org.apache.parquet:parquet-common@1.12.2" + }, + { + "nodeId": "org.apache.parquet:parquet-hadoop@1.12.2" + } + ] + }, + { + "nodeId": "org.apache.hadoop:hadoop-common@2.7.7", + "pkgId": "org.apache.hadoop:hadoop-common@2.7.7", + "deps": [ + { + "nodeId": "org.apache.htrace:htrace-core@3.1.0-incubating" + }, + { + "nodeId": "xmlenc:xmlenc@0.52" + }, + { + "nodeId": "org.mortbay.jetty:jetty@6.1.26" + }, + { + "nodeId": "commons-collections:commons-collections@3.2.2" + }, + { + "nodeId": "commons-logging:commons-logging@1.2" + }, + { + "nodeId": "net.java.dev.jets3t:jets3t@0.9.0" + }, + { + "nodeId": "org.codehaus.jackson:jackson-mapper-asl@1.9.13" + }, + { + "nodeId": "org.apache.curator:curator-client@2.7.1" + }, + { + "nodeId": "com.jcraft:jsch@0.1.54" + }, + { + "nodeId": "com.sun.jersey:jersey-json@1.13" + }, + { + "nodeId": "com.google.code.gson:gson@2.9.0" + }, + { + "nodeId": "log4j:log4j@1.2.17" + }, + { + "nodeId": "org.mortbay.jetty:jetty-sslengine@6.1.26" + }, + { + "nodeId": "commons-configuration:commons-configuration@1.10" + }, + { + "nodeId": "org.apache.avro:avro@1.11.0" + }, + { + "nodeId": "org.mortbay.jetty:jetty-util@6.1.26" + }, + { + "nodeId": "org.apache.commons:commons-math3@3.6.1" + }, + { + "nodeId": "commons-cli:commons-cli@1.3.1" + }, + { + "nodeId": "org.codehaus.jackson:jackson-core-asl@1.9.13" + }, + { + "nodeId": "org.apache.zookeeper:zookeeper@3.4.6" + }, + { + "nodeId": "org.apache.hadoop:hadoop-auth@2.7.7" + }, + { + "nodeId": "com.sun.jersey:jersey-core@1.13" + }, + { + "nodeId": "org.apache.commons:commons-compress@1.16" + }, + { + "nodeId": "javax.servlet.jsp:jsp-api@2.1" + }, + { + "nodeId": "commons-net:commons-net@3.3" + }, + { + "nodeId": "org.apache.curator:curator-recipes@2.7.1" + }, + { + "nodeId": "commons-httpclient:commons-httpclient@3.1" + }, + { + "nodeId": "javax.servlet:servlet-api@2.5" + }, + { + "nodeId": "com.sun.jersey:jersey-server@1.9" + }, + { + "nodeId": "org.apache.hadoop:hadoop-annotations@2.7.7" + } + ] + }, + { + "nodeId": "org.apache.htrace:htrace-core@3.1.0-incubating", + "pkgId": "org.apache.htrace:htrace-core@3.1.0-incubating", + "deps": [] + }, + { + "nodeId": "xmlenc:xmlenc@0.52", + "pkgId": "xmlenc:xmlenc@0.52", + "deps": [] + }, + { + "nodeId": "org.mortbay.jetty:jetty@6.1.26", + "pkgId": "org.mortbay.jetty:jetty@6.1.26", + "deps": [ + { + "nodeId": "org.mortbay.jetty:jetty-util@6.1.26" + }, + { + "nodeId": "org.mortbay.jetty:servlet-api@2.5-20081211" + } + ] + }, + { + "nodeId": "org.mortbay.jetty:jetty-util@6.1.26", + "pkgId": "org.mortbay.jetty:jetty-util@6.1.26", + "deps": [] + }, + { + "nodeId": "org.mortbay.jetty:servlet-api@2.5-20081211", + "pkgId": "org.mortbay.jetty:servlet-api@2.5-20081211", + "deps": [] + }, + { + "nodeId": "net.java.dev.jets3t:jets3t@0.9.0", + "pkgId": "net.java.dev.jets3t:jets3t@0.9.0", + "deps": [ + { + "nodeId": "commons-logging:commons-logging@1.2" + }, + { + "nodeId": "com.jamesmurty.utils:java-xmlbuilder@0.4" + } + ] + }, + { + "nodeId": "com.jamesmurty.utils:java-xmlbuilder@0.4", + "pkgId": "com.jamesmurty.utils:java-xmlbuilder@0.4", + "deps": [] + }, + { + "nodeId": "org.codehaus.jackson:jackson-mapper-asl@1.9.13", + "pkgId": "org.codehaus.jackson:jackson-mapper-asl@1.9.13", + "deps": [ + { + "nodeId": "org.codehaus.jackson:jackson-core-asl@1.9.13" + } + ] + }, + { + "nodeId": "org.apache.curator:curator-client@2.7.1", + "pkgId": "org.apache.curator:curator-client@2.7.1", + "deps": [ + { + "nodeId": "org.apache.zookeeper:zookeeper@3.4.6" + } + ] + }, + { + "nodeId": "org.apache.zookeeper:zookeeper@3.4.6", + "pkgId": "org.apache.zookeeper:zookeeper@3.4.6", + "deps": [ + { + "nodeId": "io.netty:netty@3.7.0.Final" + }, + { + "nodeId": "log4j:log4j@1.2.17" + } + ] + }, + { + "nodeId": "io.netty:netty@3.7.0.Final", + "pkgId": "io.netty:netty@3.7.0.Final", + "deps": [] + }, + { + "nodeId": "log4j:log4j@1.2.17", + "pkgId": "log4j:log4j@1.2.17", + "deps": [] + }, + { + "nodeId": "com.jcraft:jsch@0.1.54", + "pkgId": "com.jcraft:jsch@0.1.54", + "deps": [] + }, + { + "nodeId": "com.sun.jersey:jersey-json@1.13", + "pkgId": "com.sun.jersey:jersey-json@1.13", + "deps": [ + { + "nodeId": "com.sun.xml.bind:jaxb-impl@2.2.11" + }, + { + "nodeId": "org.codehaus.jackson:jackson-mapper-asl@1.9.13" + }, + { + "nodeId": "org.codehaus.jackson:jackson-xc@1.9.13" + }, + { + "nodeId": "org.codehaus.jettison:jettison@1.1" + }, + { + "nodeId": "org.codehaus.jackson:jackson-core-asl@1.9.13" + }, + { + "nodeId": "org.codehaus.jackson:jackson-jaxrs@1.9.13" + }, + { + "nodeId": "com.sun.jersey:jersey-core@1.13" + } + ] + }, + { + "nodeId": "org.codehaus.jackson:jackson-xc@1.9.13", + "pkgId": "org.codehaus.jackson:jackson-xc@1.9.13", + "deps": [ + { + "nodeId": "org.codehaus.jackson:jackson-core-asl@1.9.13" + }, + { + "nodeId": "org.codehaus.jackson:jackson-mapper-asl@1.9.13" + } + ] + }, + { + "nodeId": "org.codehaus.jettison:jettison@1.1", + "pkgId": "org.codehaus.jettison:jettison@1.1", + "deps": [ + { + "nodeId": "stax:stax-api@1.0.1" + } + ] + }, + { + "nodeId": "stax:stax-api@1.0.1", + "pkgId": "stax:stax-api@1.0.1", + "deps": [] + }, + { + "nodeId": "org.codehaus.jackson:jackson-jaxrs@1.9.13", + "pkgId": "org.codehaus.jackson:jackson-jaxrs@1.9.13", + "deps": [ + { + "nodeId": "org.codehaus.jackson:jackson-core-asl@1.9.13" + }, + { + "nodeId": "org.codehaus.jackson:jackson-mapper-asl@1.9.13" + } + ] + }, + { + "nodeId": "com.sun.jersey:jersey-core@1.13", + "pkgId": "com.sun.jersey:jersey-core@1.13", + "deps": [] + }, + { + "nodeId": "org.mortbay.jetty:jetty-sslengine@6.1.26", + "pkgId": "org.mortbay.jetty:jetty-sslengine@6.1.26", + "deps": [ + { + "nodeId": "org.mortbay.jetty:jetty@6.1.26" + } + ] + }, + { + "nodeId": "commons-cli:commons-cli@1.3.1", + "pkgId": "commons-cli:commons-cli@1.3.1", + "deps": [] + }, + { + "nodeId": "org.apache.hadoop:hadoop-auth@2.7.7", + "pkgId": "org.apache.hadoop:hadoop-auth@2.7.7", + "deps": [ + { + "nodeId": "org.apache.directory.server:apacheds-kerberos-codec@2.0.0-M15" + }, + { + "nodeId": "log4j:log4j@1.2.17" + }, + { + "nodeId": "org.apache.curator:curator-framework@2.7.1" + }, + { + "nodeId": "org.apache.zookeeper:zookeeper@3.4.6" + } + ] + }, + { + "nodeId": "org.apache.directory.server:apacheds-kerberos-codec@2.0.0-M15", + "pkgId": "org.apache.directory.server:apacheds-kerberos-codec@2.0.0-M15", + "deps": [ + { + "nodeId": "org.apache.directory.api:api-asn1-api@1.0.0-M20" + }, + { + "nodeId": "org.apache.directory.api:api-util@1.0.0-M20" + }, + { + "nodeId": "org.apache.directory.server:apacheds-i18n@2.0.0-M15" + } + ] + }, + { + "nodeId": "org.apache.directory.api:api-asn1-api@1.0.0-M20", + "pkgId": "org.apache.directory.api:api-asn1-api@1.0.0-M20", + "deps": [] + }, + { + "nodeId": "org.apache.directory.api:api-util@1.0.0-M20", + "pkgId": "org.apache.directory.api:api-util@1.0.0-M20", + "deps": [] + }, + { + "nodeId": "org.apache.directory.server:apacheds-i18n@2.0.0-M15", + "pkgId": "org.apache.directory.server:apacheds-i18n@2.0.0-M15", + "deps": [] + }, + { + "nodeId": "org.apache.curator:curator-framework@2.7.1", + "pkgId": "org.apache.curator:curator-framework@2.7.1", + "deps": [ + { + "nodeId": "org.apache.curator:curator-client@2.7.1" + }, + { + "nodeId": "org.apache.zookeeper:zookeeper@3.4.6" + } + ] + }, + { + "nodeId": "javax.servlet.jsp:jsp-api@2.1", + "pkgId": "javax.servlet.jsp:jsp-api@2.1", + "deps": [] + }, + { + "nodeId": "org.apache.curator:curator-recipes@2.7.1", + "pkgId": "org.apache.curator:curator-recipes@2.7.1", + "deps": [ + { + "nodeId": "org.apache.curator:curator-framework@2.7.1" + }, + { + "nodeId": "org.apache.zookeeper:zookeeper@3.4.6" + } + ] + }, + { + "nodeId": "commons-httpclient:commons-httpclient@3.1", + "pkgId": "commons-httpclient:commons-httpclient@3.1", + "deps": [ + { + "nodeId": "commons-logging:commons-logging@1.2" + } + ] + }, + { + "nodeId": "javax.servlet:servlet-api@2.5", + "pkgId": "javax.servlet:servlet-api@2.5", + "deps": [] + }, + { + "nodeId": "com.sun.jersey:jersey-server@1.9", + "pkgId": "com.sun.jersey:jersey-server@1.9", + "deps": [ + { + "nodeId": "asm:asm@3.1" + }, + { + "nodeId": "com.sun.jersey:jersey-core@1.13" + } + ] + }, + { + "nodeId": "asm:asm@3.1", + "pkgId": "asm:asm@3.1", + "deps": [] + }, + { + "nodeId": "org.apache.hadoop:hadoop-annotations@2.7.7", + "pkgId": "org.apache.hadoop:hadoop-annotations@2.7.7", + "deps": [] + }, + { + "nodeId": "org.apache.hadoop:hadoop-mapreduce-client-core@2.7.7", + "pkgId": "org.apache.hadoop:hadoop-mapreduce-client-core@2.7.7", + "deps": [ + { + "nodeId": "com.google.inject.extensions:guice-servlet@3.0" + }, + { + "nodeId": "org.apache.avro:avro@1.11.0" + }, + { + "nodeId": "org.apache.hadoop:hadoop-yarn-common@2.7.7" + }, + { + "nodeId": "io.netty:netty@3.7.0.Final" + }, + { + "nodeId": "org.apache.hadoop:hadoop-annotations@2.7.7" + } + ] + }, + { + "nodeId": "com.google.inject.extensions:guice-servlet@3.0", + "pkgId": "com.google.inject.extensions:guice-servlet@3.0", + "deps": [ + { + "nodeId": "com.google.inject:guice@4.2.2" + } + ] + }, + { + "nodeId": "com.google.inject:guice@4.2.2", + "pkgId": "com.google.inject:guice@4.2.2", + "deps": [ + { + "nodeId": "aopalliance:aopalliance@1.0" + }, + { + "nodeId": "javax.inject:javax.inject@1" + } + ] + }, + { + "nodeId": "aopalliance:aopalliance@1.0", + "pkgId": "aopalliance:aopalliance@1.0", + "deps": [] + }, + { + "nodeId": "javax.inject:javax.inject@1", + "pkgId": "javax.inject:javax.inject@1", + "deps": [] + }, + { + "nodeId": "org.apache.hadoop:hadoop-yarn-common@2.7.7", + "pkgId": "org.apache.hadoop:hadoop-yarn-common@2.7.7", + "deps": [ + { + "nodeId": "commons-logging:commons-logging@1.2" + }, + { + "nodeId": "org.apache.hadoop:hadoop-yarn-api@2.7.7" + }, + { + "nodeId": "org.codehaus.jackson:jackson-mapper-asl@1.9.13" + }, + { + "nodeId": "com.google.inject.extensions:guice-servlet@3.0" + }, + { + "nodeId": "com.sun.jersey:jersey-json@1.13" + }, + { + "nodeId": "org.codehaus.jackson:jackson-xc@1.9.13" + }, + { + "nodeId": "log4j:log4j@1.2.17" + }, + { + "nodeId": "com.google.inject:guice@4.2.2" + }, + { + "nodeId": "org.mortbay.jetty:jetty-util@6.1.26" + }, + { + "nodeId": "commons-cli:commons-cli@1.3.1" + }, + { + "nodeId": "javax.xml.bind:jaxb-api@2.2.2" + }, + { + "nodeId": "org.codehaus.jackson:jackson-core-asl@1.9.13" + }, + { + "nodeId": "com.sun.jersey:jersey-client@1.13" + }, + { + "nodeId": "org.codehaus.jackson:jackson-jaxrs@1.9.13" + }, + { + "nodeId": "com.sun.jersey:jersey-core@1.13" + }, + { + "nodeId": "org.apache.commons:commons-compress@1.16" + }, + { + "nodeId": "com.sun.jersey.contribs:jersey-guice@1.9" + }, + { + "nodeId": "javax.servlet:servlet-api@2.5" + }, + { + "nodeId": "com.sun.jersey:jersey-server@1.9" + }, + { + "nodeId": "org.apache.hadoop:hadoop-annotations@2.7.7" + } + ] + }, + { + "nodeId": "org.apache.hadoop:hadoop-yarn-api@2.7.7", + "pkgId": "org.apache.hadoop:hadoop-yarn-api@2.7.7", + "deps": [ + { + "nodeId": "commons-logging:commons-logging@1.2" + }, + { + "nodeId": "org.apache.hadoop:hadoop-annotations@2.7.7" + } + ] + }, + { + "nodeId": "com.sun.jersey:jersey-client@1.13", + "pkgId": "com.sun.jersey:jersey-client@1.13", + "deps": [ + { + "nodeId": "com.sun.jersey:jersey-core@1.13" + } + ] + }, + { + "nodeId": "com.sun.jersey.contribs:jersey-guice@1.9", + "pkgId": "com.sun.jersey.contribs:jersey-guice@1.9", + "deps": [ + { + "nodeId": "com.google.inject:guice@4.2.2" + }, + { + "nodeId": "com.google.inject.extensions:guice-servlet@3.0" + }, + { + "nodeId": "com.sun.jersey:jersey-server@1.9" + }, + { + "nodeId": "javax.inject:javax.inject@1" + } + ] + }, + { + "nodeId": "org.apache.parquet:parquet-avro@1.12.2", + "pkgId": "org.apache.parquet:parquet-avro@1.12.2", + "deps": [ + { + "nodeId": "org.apache.avro:avro@1.11.0" + }, + { + "nodeId": "org.apache.parquet:parquet-column@1.12.2" + }, + { + "nodeId": "org.apache.parquet:parquet-format-structures@1.12.2" + }, + { + "nodeId": "org.apache.parquet:parquet-hadoop@1.12.2" + } + ] + }, + { + "nodeId": "org.apache.parquet:parquet-column@1.12.2", + "pkgId": "org.apache.parquet:parquet-column@1.12.2", + "deps": [ + { + "nodeId": "org.apache.parquet:parquet-common@1.12.2" + }, + { + "nodeId": "org.apache.parquet:parquet-encoding@1.12.2" + } + ] + }, + { + "nodeId": "org.apache.parquet:parquet-common@1.12.2", + "pkgId": "org.apache.parquet:parquet-common@1.12.2", + "deps": [ + { + "nodeId": "org.apache.parquet:parquet-format-structures@1.12.2" + }, + { + "nodeId": "org.apache.yetus:audience-annotations@0.12.0" + } + ] + }, + { + "nodeId": "org.apache.parquet:parquet-format-structures@1.12.2", + "pkgId": "org.apache.parquet:parquet-format-structures@1.12.2", + "deps": [] + }, + { + "nodeId": "org.apache.yetus:audience-annotations@0.12.0", + "pkgId": "org.apache.yetus:audience-annotations@0.12.0", + "deps": [] + }, + { + "nodeId": "org.apache.parquet:parquet-encoding@1.12.2", + "pkgId": "org.apache.parquet:parquet-encoding@1.12.2", + "deps": [ + { + "nodeId": "org.apache.parquet:parquet-common@1.12.2" + } + ] + }, + { + "nodeId": "org.apache.parquet:parquet-hadoop@1.12.2", + "pkgId": "org.apache.parquet:parquet-hadoop@1.12.2", + "deps": [ + { + "nodeId": "org.apache.parquet:parquet-jackson@1.12.2" + }, + { + "nodeId": "com.github.luben:zstd-jni@1.4.9-1" + }, + { + "nodeId": "org.apache.parquet:parquet-format-structures@1.12.2" + }, + { + "nodeId": "org.xerial.snappy:snappy-java@1.1.8.4" + }, + { + "nodeId": "org.apache.parquet:parquet-column@1.12.2" + }, + { + "nodeId": "commons-pool:commons-pool@1.6" + } + ] + }, + { + "nodeId": "org.apache.parquet:parquet-jackson@1.12.2", + "pkgId": "org.apache.parquet:parquet-jackson@1.12.2", + "deps": [] + }, + { + "nodeId": "commons-pool:commons-pool@1.6", + "pkgId": "commons-pool:commons-pool@1.6", + "deps": [] + }, + { + "nodeId": "//warehouses/databricks:main@bazel", + "pkgId": "//warehouses/databricks:main@bazel", + "deps": [ + { + "nodeId": "//heartbeat:lite@bazel" + }, + { + "nodeId": "//json:default_object_mapper@bazel" + }, + { + "nodeId": "//port_forwarder:databricks@bazel" + }, + { + "nodeId": "//slack:main@bazel" + }, + { + "nodeId": "//warehouses/common:feature_flags@bazel" + }, + { + "nodeId": "//warehouses/common:main@bazel" + }, + { + "nodeId": "//warehouses/common:observability@bazel" + }, + { + "nodeId": "//warehouses/common:staging_azure@bazel" + }, + { + "nodeId": "//warehouses/common:staging_s3@bazel" + }, + { + "nodeId": "//warehouses/common:tasks@bazel" + }, + { + "nodeId": "//warehouses/common-local:writer_avro_base@bazel" + }, + { + "nodeId": "//warehouses/common-local:writer_base@bazel" + }, + { + "nodeId": "//warehouses/common-local:writer_parquet@bazel" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-sts@1.12.84" + }, + { + "nodeId": "org.apache.avro:avro@1.11.0" + } + ] + }, + { + "nodeId": "//port_forwarder:databricks@bazel", + "pkgId": "//port_forwarder:databricks@bazel", + "deps": [ + { + "nodeId": "//:databricks_jdbc@bazel" + }, + { + "nodeId": "//aws:instance_id@bazel" + }, + { + "nodeId": "//dynamo:main@bazel" + }, + { + "nodeId": "//database:postgresql_jdbc_fix@bazel" + }, + { + "nodeId": "@jsch_patched//:main@bazel" + }, + { + "nodeId": "org.eclipse.jetty:jetty-server@9.4.40.v20210413" + }, + { + "nodeId": "org.eclipse.jetty:jetty-servlet@9.4.40.v20210413" + }, + { + "nodeId": "org.glassfish.jersey.containers:jersey-container-servlet-core@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-server@2.31" + }, + { + "nodeId": "org.bouncycastle:bcpkix-jdk15on@1.70" + } + ] + }, + { + "nodeId": "//warehouses/mysql:main@bazel", + "pkgId": "//warehouses/mysql:main@bazel", + "deps": [ + { + "nodeId": "//dynamo:main@bazel" + }, + { + "nodeId": "//heartbeat:lite@bazel" + }, + { + "nodeId": "//port_forwarder:mysql@bazel" + }, + { + "nodeId": "//warehouses/common:feature_flags@bazel" + }, + { + "nodeId": "//warehouses/common:main@bazel" + }, + { + "nodeId": "//warehouses/common:tasks@bazel" + }, + { + "nodeId": "//warehouses/common-local:writer_base@bazel" + }, + { + "nodeId": "//warehouses/common-local:writer_csv@bazel" + }, + { + "nodeId": "mysql:mysql-connector-java@8.0.13" + } + ] + }, + { + "nodeId": "//port_forwarder:mysql@bazel", + "pkgId": "//port_forwarder:mysql@bazel", + "deps": [ + { + "nodeId": "//database:tls_verify@bazel" + }, + { + "nodeId": "//verification:main@bazel" + }, + { + "nodeId": "mysql:mysql-connector-java@8.0.13" + }, + { + "nodeId": "//aws:instance_id@bazel" + }, + { + "nodeId": "//dynamo:main@bazel" + }, + { + "nodeId": "//database:postgresql_jdbc_fix@bazel" + }, + { + "nodeId": "@jsch_patched//:main@bazel" + }, + { + "nodeId": "org.eclipse.jetty:jetty-server@9.4.40.v20210413" + }, + { + "nodeId": "org.eclipse.jetty:jetty-servlet@9.4.40.v20210413" + }, + { + "nodeId": "org.glassfish.jersey.containers:jersey-container-servlet-core@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-server@2.31" + }, + { + "nodeId": "org.bouncycastle:bcpkix-jdk15on@1.70" + } + ] + }, + { + "nodeId": "//warehouses/panoply:main@bazel", + "pkgId": "//warehouses/panoply:main@bazel", + "deps": [ + { + "nodeId": "//heartbeat:lite@bazel" + }, + { + "nodeId": "//port_forwarder:tunnel_data_source@bazel" + }, + { + "nodeId": "//warehouses/common:main@bazel" + }, + { + "nodeId": "//warehouses/common:tasks@bazel" + }, + { + "nodeId": "//warehouses/redshift:main@bazel" + } + ] + }, + { + "nodeId": "//warehouses/redshift:main@bazel", + "pkgId": "//warehouses/redshift:main@bazel", + "deps": [ + { + "nodeId": "//heartbeat:lite@bazel" + }, + { + "nodeId": "//ip_utils:main@bazel" + }, + { + "nodeId": "//port_forwarder:tunnel_data_source@bazel" + }, + { + "nodeId": "//warehouses/common:feature_flags@bazel" + }, + { + "nodeId": "//warehouses/common:main@bazel" + }, + { + "nodeId": "//warehouses/common:observability@bazel" + }, + { + "nodeId": "//warehouses/common:staging_s3@bazel" + }, + { + "nodeId": "//warehouses/common:tasks@bazel" + }, + { + "nodeId": "//warehouses/common-local:writer_base@bazel" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-redshift@1.12.84" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-sts@1.12.84" + }, + { + "nodeId": "io.netty:netty-all@4.1.45.Final" + }, + { + "nodeId": "org.apache.commons:commons-collections4@4.1" + }, + { + "nodeId": "@redshift_jdbc42//jar:jar@bazel" + } + ] + }, + { + "nodeId": "io.netty:netty-all@4.1.45.Final", + "pkgId": "io.netty:netty-all@4.1.45.Final", + "deps": [] + }, + { + "nodeId": "@redshift_jdbc42//jar:jar@bazel", + "pkgId": "@redshift_jdbc42//jar:jar@bazel", + "deps": [] + }, + { + "nodeId": "//warehouses/periscope:main@bazel", + "pkgId": "//warehouses/periscope:main@bazel", + "deps": [ + { + "nodeId": "//heartbeat:lite@bazel" + }, + { + "nodeId": "//port_forwarder:tunnel_data_source@bazel" + }, + { + "nodeId": "//warehouses/common:main@bazel" + }, + { + "nodeId": "//warehouses/redshift:main@bazel" + } + ] + }, + { + "nodeId": "//warehouses/postgres:main@bazel", + "pkgId": "//warehouses/postgres:main@bazel", + "deps": [ + { + "nodeId": "//dynamo:main@bazel" + }, + { + "nodeId": "//heartbeat:lite@bazel" + }, + { + "nodeId": "//integrations/db:setup_form_utils@bazel" + }, + { + "nodeId": "//port_forwarder:postgres@bazel" + }, + { + "nodeId": "//warehouses/common:feature_flags@bazel" + }, + { + "nodeId": "//warehouses/common:main@bazel" + }, + { + "nodeId": "//warehouses/common:observability@bazel" + }, + { + "nodeId": "//warehouses/common:tasks@bazel" + }, + { + "nodeId": "//warehouses/common-local:writer_base@bazel" + }, + { + "nodeId": "//warehouses/common-local:writer_csv@bazel" + }, + { + "nodeId": "org.postgresql:postgresql@42.3.3" + } + ] + }, + { + "nodeId": "//integrations/db:setup_form_utils@bazel", + "pkgId": "//integrations/db:setup_form_utils@bazel", + "deps": [ + { + "nodeId": "//integrations/hvr/hvr_tool:main@bazel" + }, + { + "nodeId": "//integrations/speed_test:main@bazel" + }, + { + "nodeId": "//integrations/speed_test:utils@bazel" + }, + { + "nodeId": "//ip_utils:main@bazel" + }, + { + "nodeId": "//port_forwarder:tunnel_data_source@bazel" + }, + { + "nodeId": "//verification:main@bazel" + } + ] + }, + { + "nodeId": "//port_forwarder:postgres@bazel", + "pkgId": "//port_forwarder:postgres@bazel", + "deps": [ + { + "nodeId": "//verification:main@bazel" + }, + { + "nodeId": "//database:tls_verify@bazel" + }, + { + "nodeId": "org.postgresql:postgresql@42.3.3" + }, + { + "nodeId": "//aws:instance_id@bazel" + }, + { + "nodeId": "//dynamo:main@bazel" + }, + { + "nodeId": "//database:postgresql_jdbc_fix@bazel" + }, + { + "nodeId": "@jsch_patched//:main@bazel" + }, + { + "nodeId": "org.eclipse.jetty:jetty-server@9.4.40.v20210413" + }, + { + "nodeId": "org.eclipse.jetty:jetty-servlet@9.4.40.v20210413" + }, + { + "nodeId": "org.glassfish.jersey.containers:jersey-container-servlet-core@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-server@2.31" + }, + { + "nodeId": "org.bouncycastle:bcpkix-jdk15on@1.70" + } + ] + }, + { + "nodeId": "//warehouses/s3_data_lake:main@bazel", + "pkgId": "//warehouses/s3_data_lake:main@bazel", + "deps": [ + { + "nodeId": "//heartbeat:lite@bazel" + }, + { + "nodeId": "//port_forwarder:tunnel_data_source@bazel" + }, + { + "nodeId": "//warehouses/common:main@bazel" + }, + { + "nodeId": "//warehouses/common-local:writer_base@bazel" + }, + { + "nodeId": "//warehouses/common-local:writer_csv@bazel" + }, + { + "nodeId": "//warehouses/redshift:main@bazel" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-glue@1.12.84" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-sts@1.12.84" + }, + { + "nodeId": "io.netty:netty-all@4.1.45.Final" + }, + { + "nodeId": "org.apache.iceberg:iceberg-api@0.13.1" + }, + { + "nodeId": "org.apache.iceberg:iceberg-core@0.13.1" + }, + { + "nodeId": "org.apache.iceberg:iceberg-data@0.13.1" + }, + { + "nodeId": "org.apache.iceberg:iceberg-parquet@0.13.1" + } + ] + }, + { + "nodeId": "org.apache.iceberg:iceberg-api@0.13.1", + "pkgId": "org.apache.iceberg:iceberg-api@0.13.1", + "deps": [ + { + "nodeId": "com.github.stephenc.findbugs:findbugs-annotations@1.3.9-1" + }, + { + "nodeId": "org.apache.iceberg:iceberg-bundled-guava@0.13.1" + } + ] + }, + { + "nodeId": "com.github.stephenc.findbugs:findbugs-annotations@1.3.9-1", + "pkgId": "com.github.stephenc.findbugs:findbugs-annotations@1.3.9-1", + "deps": [] + }, + { + "nodeId": "org.apache.iceberg:iceberg-bundled-guava@0.13.1", + "pkgId": "org.apache.iceberg:iceberg-bundled-guava@0.13.1", + "deps": [] + }, + { + "nodeId": "org.apache.iceberg:iceberg-core@0.13.1", + "pkgId": "org.apache.iceberg:iceberg-core@0.13.1", + "deps": [ + { + "nodeId": "org.roaringbitmap:RoaringBitmap@0.9.22" + }, + { + "nodeId": "org.apache.iceberg:iceberg-api@0.13.1" + }, + { + "nodeId": "org.apache.avro:avro@1.11.0" + }, + { + "nodeId": "com.github.stephenc.findbugs:findbugs-annotations@1.3.9-1" + }, + { + "nodeId": "org.apache.iceberg:iceberg-bundled-guava@0.13.1" + }, + { + "nodeId": "com.github.ben-manes.caffeine:caffeine@2.8.4" + }, + { + "nodeId": "org.apache.iceberg:iceberg-common@0.13.1" + } + ] + }, + { + "nodeId": "org.roaringbitmap:RoaringBitmap@0.9.22", + "pkgId": "org.roaringbitmap:RoaringBitmap@0.9.22", + "deps": [ + { + "nodeId": "org.roaringbitmap:shims@0.9.22" + } + ] + }, + { + "nodeId": "org.roaringbitmap:shims@0.9.22", + "pkgId": "org.roaringbitmap:shims@0.9.22", + "deps": [] + }, + { + "nodeId": "com.github.ben-manes.caffeine:caffeine@2.8.4", + "pkgId": "com.github.ben-manes.caffeine:caffeine@2.8.4", + "deps": [ + { + "nodeId": "com.google.errorprone:error_prone_annotations@2.13.1" + }, + { + "nodeId": "org.checkerframework:checker-qual@3.22.0" + } + ] + }, + { + "nodeId": "org.apache.iceberg:iceberg-common@0.13.1", + "pkgId": "org.apache.iceberg:iceberg-common@0.13.1", + "deps": [ + { + "nodeId": "com.github.stephenc.findbugs:findbugs-annotations@1.3.9-1" + }, + { + "nodeId": "org.apache.iceberg:iceberg-bundled-guava@0.13.1" + } + ] + }, + { + "nodeId": "org.apache.iceberg:iceberg-data@0.13.1", + "pkgId": "org.apache.iceberg:iceberg-data@0.13.1", + "deps": [ + { + "nodeId": "org.apache.iceberg:iceberg-api@0.13.1" + }, + { + "nodeId": "org.apache.orc:orc-core:jar:nohive@1.7.2" + }, + { + "nodeId": "com.github.stephenc.findbugs:findbugs-annotations@1.3.9-1" + }, + { + "nodeId": "org.apache.iceberg:iceberg-bundled-guava@0.13.1" + }, + { + "nodeId": "org.apache.iceberg:iceberg-core@0.13.1" + }, + { + "nodeId": "org.apache.parquet:parquet-avro@1.12.2" + } + ] + }, + { + "nodeId": "org.apache.orc:orc-core:jar:nohive@1.7.2", + "pkgId": "org.apache.orc:orc-core:jar:nohive@1.7.2", + "deps": [ + { + "nodeId": "io.airlift:aircompressor@0.9" + }, + { + "nodeId": "org.apache.orc:orc-shims@1.7.2" + }, + { + "nodeId": "org.jetbrains:annotations@17.0.0" + }, + { + "nodeId": "org.threeten:threeten-extra@0.9" + } + ] + }, + { + "nodeId": "io.airlift:aircompressor@0.9", + "pkgId": "io.airlift:aircompressor@0.9", + "deps": [ + { + "nodeId": "io.airlift:slice@0.10" + } + ] + }, + { + "nodeId": "io.airlift:slice@0.10", + "pkgId": "io.airlift:slice@0.10", + "deps": [] + }, + { + "nodeId": "org.apache.orc:orc-shims@1.7.2", + "pkgId": "org.apache.orc:orc-shims@1.7.2", + "deps": [] + }, + { + "nodeId": "org.threeten:threeten-extra@0.9", + "pkgId": "org.threeten:threeten-extra@0.9", + "deps": [] + }, + { + "nodeId": "org.apache.iceberg:iceberg-parquet@0.13.1", + "pkgId": "org.apache.iceberg:iceberg-parquet@0.13.1", + "deps": [ + { + "nodeId": "org.apache.iceberg:iceberg-api@0.13.1" + }, + { + "nodeId": "com.github.stephenc.findbugs:findbugs-annotations@1.3.9-1" + }, + { + "nodeId": "org.apache.iceberg:iceberg-bundled-guava@0.13.1" + }, + { + "nodeId": "org.apache.iceberg:iceberg-core@0.13.1" + }, + { + "nodeId": "org.apache.parquet:parquet-avro@1.12.2" + }, + { + "nodeId": "org.apache.iceberg:iceberg-common@0.13.1" + } + ] + }, + { + "nodeId": "//warehouses/snowflake:main@bazel", + "pkgId": "//warehouses/snowflake:main@bazel", + "deps": [ + { + "nodeId": "//dynamo:main@bazel" + }, + { + "nodeId": "//heartbeat:lite@bazel" + }, + { + "nodeId": "//json:default_object_mapper@bazel" + }, + { + "nodeId": "//port_forwarder:snowflake@bazel" + }, + { + "nodeId": "//warehouses/common:feature_flags@bazel" + }, + { + "nodeId": "//warehouses/common:main@bazel" + }, + { + "nodeId": "//warehouses/common:observability@bazel" + }, + { + "nodeId": "//warehouses/common:staging_azure@bazel" + }, + { + "nodeId": "//warehouses/common:staging_gcs@bazel" + }, + { + "nodeId": "//warehouses/common:staging_s3@bazel" + }, + { + "nodeId": "//warehouses/common:tasks@bazel" + }, + { + "nodeId": "//warehouses/common-local:writer_base@bazel" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-sts@1.12.84" + }, + { + "nodeId": "net.snowflake:snowflake-jdbc@3.13.18" + }, + { + "nodeId": "org.bouncycastle:bcpkix-jdk15on@1.70" + }, + { + "nodeId": "org.bouncycastle:bcprov-jdk15to18@1.70" + } + ] + }, + { + "nodeId": "//port_forwarder:snowflake@bazel", + "pkgId": "//port_forwarder:snowflake@bazel", + "deps": [ + { + "nodeId": "net.snowflake:snowflake-jdbc@3.13.18" + }, + { + "nodeId": "org.bouncycastle:bcprov-jdk15to18@1.70" + }, + { + "nodeId": "//aws:instance_id@bazel" + }, + { + "nodeId": "//dynamo:main@bazel" + }, + { + "nodeId": "//database:postgresql_jdbc_fix@bazel" + }, + { + "nodeId": "@jsch_patched//:main@bazel" + }, + { + "nodeId": "org.eclipse.jetty:jetty-server@9.4.40.v20210413" + }, + { + "nodeId": "org.eclipse.jetty:jetty-servlet@9.4.40.v20210413" + }, + { + "nodeId": "org.glassfish.jersey.containers:jersey-container-servlet-core@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-server@2.31" + }, + { + "nodeId": "org.bouncycastle:bcpkix-jdk15on@1.70" + } + ] + }, + { + "nodeId": "//warehouses/sql_server:main@bazel", + "pkgId": "//warehouses/sql_server:main@bazel", + "deps": [ + { + "nodeId": "//dynamo:main@bazel" + }, + { + "nodeId": "//heartbeat:lite@bazel" + }, + { + "nodeId": "//ip_utils:main@bazel" + }, + { + "nodeId": "//json:default_object_mapper@bazel" + }, + { + "nodeId": "//port_forwarder:sqlserver@bazel" + }, + { + "nodeId": "//warehouses/common:feature_flags@bazel" + }, + { + "nodeId": "//warehouses/common:main@bazel" + }, + { + "nodeId": "//warehouses/common:tasks@bazel" + }, + { + "nodeId": "//warehouses/common-local:writer_base@bazel" + }, + { + "nodeId": "//warehouses/common-local:writer_csv@bazel" + }, + { + "nodeId": "com.microsoft.sqlserver:mssql-jdbc@9.4.0.jre11" + } + ] + }, + { + "nodeId": "//port_forwarder:sqlserver@bazel", + "pkgId": "//port_forwarder:sqlserver@bazel", + "deps": [ + { + "nodeId": "//database:tls_verify@bazel" + }, + { + "nodeId": "//verification:main@bazel" + }, + { + "nodeId": "com.microsoft.sqlserver:mssql-jdbc@9.4.0.jre11" + }, + { + "nodeId": "//aws:instance_id@bazel" + }, + { + "nodeId": "//dynamo:main@bazel" + }, + { + "nodeId": "//database:postgresql_jdbc_fix@bazel" + }, + { + "nodeId": "@jsch_patched//:main@bazel" + }, + { + "nodeId": "org.eclipse.jetty:jetty-server@9.4.40.v20210413" + }, + { + "nodeId": "org.eclipse.jetty:jetty-servlet@9.4.40.v20210413" + }, + { + "nodeId": "org.glassfish.jersey.containers:jersey-container-servlet-core@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-server@2.31" + }, + { + "nodeId": "org.bouncycastle:bcpkix-jdk15on@1.70" + } + ] + }, + { + "nodeId": "//integrations/adjust:main@bazel", + "pkgId": "//integrations/adjust:main@bazel", + "deps": [ + { + "nodeId": "com.google.apis:google-api-services-storage@v1-rev20200326-1.30.9" + } + ] + }, + { + "nodeId": "//integrations/adobe_analytics:main@bazel", + "pkgId": "//integrations/adobe_analytics:main@bazel", + "deps": [ + { + "nodeId": "com.google.api-ads:ads-lib@4.4.0" + }, + { + "nodeId": "com.google.api-ads:adwords-axis@4.4.0" + }, + { + "nodeId": "commons-collections:commons-collections@3.2.2" + }, + { + "nodeId": "commons-configuration:commons-configuration@1.10" + }, + { + "nodeId": "io.jsonwebtoken:jjwt@0.9.0" + } + ] + }, + { + "nodeId": "//integrations/bidirectional_cube:main@bazel", + "pkgId": "//integrations/bidirectional_cube:main@bazel", + "deps": [ + { + "nodeId": "//utils/threading:main@bazel" + } + ] + }, + { + "nodeId": "//integrations/priority_sync:main@bazel", + "pkgId": "//integrations/priority_sync:main@bazel", + "deps": [] + }, + { + "nodeId": "com.google.api-ads:ads-lib@4.4.0", + "pkgId": "com.google.api-ads:ads-lib@4.4.0", + "deps": [ + { + "nodeId": "com.google.inject.extensions:guice-multibindings@4.0" + }, + { + "nodeId": "com.google.inject.extensions:guice-assistedinject@4.0" + }, + { + "nodeId": "commons-collections:commons-collections@3.2.2" + }, + { + "nodeId": "com.google.inject:guice@4.2.2" + }, + { + "nodeId": "commons-configuration:commons-configuration@1.10" + }, + { + "nodeId": "net.sf.opencsv:opencsv@1.8" + }, + { + "nodeId": "commons-beanutils:commons-beanutils@1.9.2" + }, + { + "nodeId": "com.google.http-client:google-http-client-jackson2@1.35.0" + }, + { + "nodeId": "com.beust:jcommander@1.82" + }, + { + "nodeId": "joda-time:joda-time@2.9.2" + } + ] + }, + { + "nodeId": "com.google.inject.extensions:guice-multibindings@4.0", + "pkgId": "com.google.inject.extensions:guice-multibindings@4.0", + "deps": [ + { + "nodeId": "com.google.inject:guice@4.2.2" + } + ] + }, + { + "nodeId": "com.google.inject.extensions:guice-assistedinject@4.0", + "pkgId": "com.google.inject.extensions:guice-assistedinject@4.0", + "deps": [ + { + "nodeId": "com.google.inject:guice@4.2.2" + } + ] + }, + { + "nodeId": "net.sf.opencsv:opencsv@1.8", + "pkgId": "net.sf.opencsv:opencsv@1.8", + "deps": [] + }, + { + "nodeId": "commons-beanutils:commons-beanutils@1.9.2", + "pkgId": "commons-beanutils:commons-beanutils@1.9.2", + "deps": [ + { + "nodeId": "commons-collections:commons-collections@3.2.2" + }, + { + "nodeId": "commons-logging:commons-logging@1.2" + } + ] + }, + { + "nodeId": "com.beust:jcommander@1.82", + "pkgId": "com.beust:jcommander@1.82", + "deps": [] + }, + { + "nodeId": "com.google.api-ads:adwords-axis@4.4.0", + "pkgId": "com.google.api-ads:adwords-axis@4.4.0", + "deps": [ + { + "nodeId": "com.google.api-ads:ads-lib@4.4.0" + }, + { + "nodeId": "com.google.api-ads:ads-lib-axis@4.4.0" + } + ] + }, + { + "nodeId": "com.google.api-ads:ads-lib-axis@4.4.0", + "pkgId": "com.google.api-ads:ads-lib-axis@4.4.0", + "deps": [ + { + "nodeId": "javax.xml:jaxrpc-api@1.1" + }, + { + "nodeId": "com.google.api-ads:ads-lib@4.4.0" + }, + { + "nodeId": "wsdl4j:wsdl4j@1.6.2" + }, + { + "nodeId": "commons-discovery:commons-discovery@0.5" + }, + { + "nodeId": "org.apache.axis:axis@1.4" + } + ] + }, + { + "nodeId": "javax.xml:jaxrpc-api@1.1", + "pkgId": "javax.xml:jaxrpc-api@1.1", + "deps": [] + }, + { + "nodeId": "wsdl4j:wsdl4j@1.6.2", + "pkgId": "wsdl4j:wsdl4j@1.6.2", + "deps": [] + }, + { + "nodeId": "commons-discovery:commons-discovery@0.5", + "pkgId": "commons-discovery:commons-discovery@0.5", + "deps": [ + { + "nodeId": "commons-logging:commons-logging@1.2" + } + ] + }, + { + "nodeId": "org.apache.axis:axis@1.4", + "pkgId": "org.apache.axis:axis@1.4", + "deps": [] + }, + { + "nodeId": "//integrations/adobe_analytics_data_feed:main@bazel", + "pkgId": "//integrations/adobe_analytics_data_feed:main@bazel", + "deps": [ + { + "nodeId": "//integrations/ftp:main@bazel" + }, + { + "nodeId": "//port_forwarder:main@bazel" + }, + { + "nodeId": "@jsch_patched//:main@bazel" + }, + { + "nodeId": "com.microsoft.azure:azure-storage@8.6.3" + }, + { + "nodeId": "commons-net:commons-net@3.3" + }, + { + "nodeId": "org.apache.commons:commons-compress@1.16" + } + ] + }, + { + "nodeId": "//integrations/ftp:main@bazel", + "pkgId": "//integrations/ftp:main@bazel", + "deps": [ + { + "nodeId": "//integrations/file:main@bazel" + }, + { + "nodeId": "//ip_utils:main@bazel" + }, + { + "nodeId": "//port_forwarder:main@bazel" + }, + { + "nodeId": "commons-net:commons-net@3.3" + }, + { + "nodeId": "org.awaitility:awaitility@4.0.3" + } + ] + }, + { + "nodeId": "//integrations/file:main@bazel", + "pkgId": "//integrations/file:main@bazel", + "deps": [ + { + "nodeId": "//common:main@bazel" + }, + { + "nodeId": "//core_implementation:main@bazel" + }, + { + "nodeId": "//utils/fsort:main@bazel" + }, + { + "nodeId": "com.fasterxml.util:java-merge-sort@1.0.0" + }, + { + "nodeId": "com.monitorjbl:xlsx-streamer@1.2.1" + }, + { + "nodeId": "org.apache.avro:avro@1.11.0" + }, + { + "nodeId": "org.apache.commons:commons-compress@1.16" + }, + { + "nodeId": "org.apache.hadoop:hadoop-auth@2.7.7" + }, + { + "nodeId": "org.apache.hadoop:hadoop-common@2.7.7" + }, + { + "nodeId": "org.apache.hadoop:hadoop-mapreduce-client-core@2.7.7" + }, + { + "nodeId": "org.apache.parquet:parquet-column@1.12.2" + }, + { + "nodeId": "org.apache.parquet:parquet-common@1.12.2" + }, + { + "nodeId": "org.apache.parquet:parquet-hadoop@1.12.2" + }, + { + "nodeId": "org.apache.poi:poi@3.17" + }, + { + "nodeId": "org.apache.poi:poi-ooxml@3.17" + } + ] + }, + { + "nodeId": "com.fasterxml.util:java-merge-sort@1.0.0", + "pkgId": "com.fasterxml.util:java-merge-sort@1.0.0", + "deps": [] + }, + { + "nodeId": "com.monitorjbl:xlsx-streamer@1.2.1", + "pkgId": "com.monitorjbl:xlsx-streamer@1.2.1", + "deps": [ + { + "nodeId": "org.apache.poi:ooxml-schemas@1.3" + }, + { + "nodeId": "org.apache.poi:poi-ooxml@3.17" + }, + { + "nodeId": "com.rackspace.apache:xerces2-xsd11@2.11.1" + }, + { + "nodeId": "xml-apis:xml-apis@1.4.01" + } + ] + }, + { + "nodeId": "org.apache.poi:ooxml-schemas@1.3", + "pkgId": "org.apache.poi:ooxml-schemas@1.3", + "deps": [ + { + "nodeId": "org.apache.xmlbeans:xmlbeans@2.6.0" + } + ] + }, + { + "nodeId": "org.apache.xmlbeans:xmlbeans@2.6.0", + "pkgId": "org.apache.xmlbeans:xmlbeans@2.6.0", + "deps": [ + { + "nodeId": "stax:stax-api@1.0.1" + } + ] + }, + { + "nodeId": "org.apache.poi:poi-ooxml@3.17", + "pkgId": "org.apache.poi:poi-ooxml@3.17", + "deps": [ + { + "nodeId": "com.github.virtuald:curvesapi@1.04" + }, + { + "nodeId": "org.apache.poi:poi@3.17" + }, + { + "nodeId": "org.apache.poi:poi-ooxml-schemas@3.17" + } + ] + }, + { + "nodeId": "com.github.virtuald:curvesapi@1.04", + "pkgId": "com.github.virtuald:curvesapi@1.04", + "deps": [] + }, + { + "nodeId": "org.apache.poi:poi@3.17", + "pkgId": "org.apache.poi:poi@3.17", + "deps": [ + { + "nodeId": "org.apache.commons:commons-collections4@4.1" + } + ] + }, + { + "nodeId": "org.apache.poi:poi-ooxml-schemas@3.17", + "pkgId": "org.apache.poi:poi-ooxml-schemas@3.17", + "deps": [ + { + "nodeId": "org.apache.xmlbeans:xmlbeans@2.6.0" + } + ] + }, + { + "nodeId": "com.rackspace.apache:xerces2-xsd11@2.11.1", + "pkgId": "com.rackspace.apache:xerces2-xsd11@2.11.1", + "deps": [ + { + "nodeId": "com.rackspace.eclipse.webtools.sourceediting:org.eclipse.wst.xml.xpath2.processor@2.1.100" + }, + { + "nodeId": "xml-resolver:xml-resolver@1.2" + } + ] + }, + { + "nodeId": "com.rackspace.eclipse.webtools.sourceediting:org.eclipse.wst.xml.xpath2.processor@2.1.100", + "pkgId": "com.rackspace.eclipse.webtools.sourceediting:org.eclipse.wst.xml.xpath2.processor@2.1.100", + "deps": [ + { + "nodeId": "com.ibm.icu:icu4j@62.1" + }, + { + "nodeId": "edu.princeton.cup:java-cup@10k" + } + ] + }, + { + "nodeId": "edu.princeton.cup:java-cup@10k", + "pkgId": "edu.princeton.cup:java-cup@10k", + "deps": [] + }, + { + "nodeId": "xml-resolver:xml-resolver@1.2", + "pkgId": "xml-resolver:xml-resolver@1.2", + "deps": [] + }, + { + "nodeId": "xml-apis:xml-apis@1.4.01", + "pkgId": "xml-apis:xml-apis@1.4.01", + "deps": [] + }, + { + "nodeId": "org.awaitility:awaitility@4.0.3", + "pkgId": "org.awaitility:awaitility@4.0.3", + "deps": [ + { + "nodeId": "org.hamcrest:hamcrest@2.2" + } + ] + }, + { + "nodeId": "//integrations/adp_workforce_now:main@bazel", + "pkgId": "//integrations/adp_workforce_now:main@bazel", + "deps": [ + { + "nodeId": "//ecomm:main@bazel" + }, + { + "nodeId": "org.bouncycastle:bcpkix-jdk15on@1.70" + }, + { + "nodeId": "org.bouncycastle:bcprov-jdk15to18@1.70" + } + ] + }, + { + "nodeId": "//ecomm:main@bazel", + "pkgId": "//ecomm:main@bazel", + "deps": [ + { + "nodeId": "com.fasterxml.jackson.dataformat:jackson-dataformat-xml@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-xml-provider@2.9.8" + }, + { + "nodeId": "com.fasterxml.woodstox:woodstox-core@5.0.3" + }, + { + "nodeId": "javax.xml.stream:stax-api@1.0-2" + }, + { + "nodeId": "org.codehaus.woodstox:stax2-api@3.1.4" + }, + { + "nodeId": "stax:stax-api@1.0.1" + } + ] + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-xml-provider@2.9.8", + "pkgId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-xml-provider@2.9.8", + "deps": [ + { + "nodeId": "org.codehaus.woodstox:stax2-api@3.1.4" + }, + { + "nodeId": "org.codehaus.woodstox:woodstox-core-asl@4.2.0" + }, + { + "nodeId": "com.fasterxml.jackson.dataformat:jackson-dataformat-xml@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.module:jackson-module-jaxb-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-base@2.9.8" + } + ] + }, + { + "nodeId": "org.codehaus.woodstox:woodstox-core-asl@4.2.0", + "pkgId": "org.codehaus.woodstox:woodstox-core-asl@4.2.0", + "deps": [ + { + "nodeId": "javax.xml.stream:stax-api@1.0-2" + }, + { + "nodeId": "org.codehaus.woodstox:stax2-api@3.1.4" + } + ] + }, + { + "nodeId": "//integrations/adroll:main@bazel", + "pkgId": "//integrations/adroll:main@bazel", + "deps": [ + { + "nodeId": "org.json:json@20171018" + } + ] + }, + { + "nodeId": "//integrations/adwords:main@bazel", + "pkgId": "//integrations/adwords:main@bazel", + "deps": [ + { + "nodeId": "//integrations/cube:main@bazel" + }, + { + "nodeId": "//utils/threading:main@bazel" + }, + { + "nodeId": "com.google.api-ads:ads-lib@4.4.0" + }, + { + "nodeId": "com.google.api-ads:adwords-axis@4.4.0" + }, + { + "nodeId": "com.google.api-ads:google-ads@19.0.0" + }, + { + "nodeId": "com.google.api-ads:google-ads-stubs-v11@19.0.0" + }, + { + "nodeId": "com.google.api:gax-grpc@2.3.0" + }, + { + "nodeId": "com.google.auth:google-auth-library-credentials@0.9.1" + }, + { + "nodeId": "com.google.protobuf:protobuf-java-util@3.18.2" + }, + { + "nodeId": "commons-beanutils:commons-beanutils@1.9.2" + }, + { + "nodeId": "commons-configuration:commons-configuration@1.10" + }, + { + "nodeId": "org.apache.commons:commons-collections4@4.1" + }, + { + "nodeId": "org.threeten:threetenbp@1.3.3" + } + ] + }, + { + "nodeId": "//integrations/cube:main@bazel", + "pkgId": "//integrations/cube:main@bazel", + "deps": [] + }, + { + "nodeId": "com.google.api-ads:google-ads@19.0.0", + "pkgId": "com.google.api-ads:google-ads@19.0.0", + "deps": [ + { + "nodeId": "io.grpc:grpc-stub@1.32.2" + }, + { + "nodeId": "com.google.auto.service:auto-service@1.0-rc2" + }, + { + "nodeId": "com.google.api-ads:google-ads-codegen@19.0.0" + }, + { + "nodeId": "com.google.auto.value:auto-value-annotations@1.9" + }, + { + "nodeId": "com.google.api:gax-grpc@2.3.0" + }, + { + "nodeId": "io.grpc:grpc-protobuf@1.32.2" + } + ] + }, + { + "nodeId": "com.google.auto.service:auto-service@1.0-rc2", + "pkgId": "com.google.auto.service:auto-service@1.0-rc2", + "deps": [ + { + "nodeId": "com.google.auto:auto-common@0.10" + } + ] + }, + { + "nodeId": "com.google.auto:auto-common@0.10", + "pkgId": "com.google.auto:auto-common@0.10", + "deps": [] + }, + { + "nodeId": "com.google.api-ads:google-ads-codegen@19.0.0", + "pkgId": "com.google.api-ads:google-ads-codegen@19.0.0", + "deps": [ + { + "nodeId": "com.google.api-ads:google-ads-stubs-v11@19.0.0" + }, + { + "nodeId": "io.grpc:grpc-stub@1.32.2" + }, + { + "nodeId": "com.google.auto.service:auto-service@1.0-rc2" + }, + { + "nodeId": "com.google.api-ads:google-ads-stubs-v10@19.0.0" + }, + { + "nodeId": "com.google.api-ads:google-ads-stubs-v9@19.0.0" + }, + { + "nodeId": "com.squareup:javapoet@1.11.1" + }, + { + "nodeId": "org.reflections:reflections@0.9.12" + }, + { + "nodeId": "com.google.api:gax-grpc@2.3.0" + }, + { + "nodeId": "com.google.api-ads:google-ads-stubs-lib@19.0.0" + }, + { + "nodeId": "io.grpc:grpc-protobuf@1.32.2" + } + ] + }, + { + "nodeId": "com.google.api-ads:google-ads-stubs-v11@19.0.0", + "pkgId": "com.google.api-ads:google-ads-stubs-v11@19.0.0", + "deps": [ + { + "nodeId": "io.grpc:grpc-stub@1.32.2" + }, + { + "nodeId": "com.google.auto.service:auto-service@1.0-rc2" + }, + { + "nodeId": "com.google.api:gax-grpc@2.3.0" + }, + { + "nodeId": "com.google.api-ads:google-ads-stubs-lib@19.0.0" + }, + { + "nodeId": "io.grpc:grpc-protobuf@1.32.2" + } + ] + }, + { + "nodeId": "com.google.api-ads:google-ads-stubs-lib@19.0.0", + "pkgId": "com.google.api-ads:google-ads-stubs-lib@19.0.0", + "deps": [ + { + "nodeId": "io.grpc:grpc-stub@1.32.2" + }, + { + "nodeId": "com.google.auto.service:auto-service@1.0-rc2" + }, + { + "nodeId": "com.google.api:gax-grpc@2.3.0" + }, + { + "nodeId": "io.grpc:grpc-protobuf@1.32.2" + } + ] + }, + { + "nodeId": "com.google.api-ads:google-ads-stubs-v10@19.0.0", + "pkgId": "com.google.api-ads:google-ads-stubs-v10@19.0.0", + "deps": [ + { + "nodeId": "io.grpc:grpc-stub@1.32.2" + }, + { + "nodeId": "com.google.auto.service:auto-service@1.0-rc2" + }, + { + "nodeId": "com.google.api:gax-grpc@2.3.0" + }, + { + "nodeId": "com.google.api-ads:google-ads-stubs-lib@19.0.0" + }, + { + "nodeId": "io.grpc:grpc-protobuf@1.32.2" + } + ] + }, + { + "nodeId": "com.google.api-ads:google-ads-stubs-v9@19.0.0", + "pkgId": "com.google.api-ads:google-ads-stubs-v9@19.0.0", + "deps": [ + { + "nodeId": "io.grpc:grpc-stub@1.32.2" + }, + { + "nodeId": "com.google.auto.service:auto-service@1.0-rc2" + }, + { + "nodeId": "com.google.api:gax-grpc@2.3.0" + }, + { + "nodeId": "com.google.api-ads:google-ads-stubs-lib@19.0.0" + }, + { + "nodeId": "io.grpc:grpc-protobuf@1.32.2" + } + ] + }, + { + "nodeId": "com.squareup:javapoet@1.11.1", + "pkgId": "com.squareup:javapoet@1.11.1", + "deps": [] + }, + { + "nodeId": "org.reflections:reflections@0.9.12", + "pkgId": "org.reflections:reflections@0.9.12", + "deps": [ + { + "nodeId": "org.javassist:javassist@3.21.0-GA" + } + ] + }, + { + "nodeId": "//integrations/google_ads:main@bazel", + "pkgId": "//integrations/google_ads:main@bazel", + "deps": [ + { + "nodeId": "//integrations/adwords:main@bazel" + }, + { + "nodeId": "commons-beanutils:commons-beanutils@1.9.2" + } + ] + }, + { + "nodeId": "//integrations/airtable:main@bazel", + "pkgId": "//integrations/airtable:main@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/amazon_ads:main@bazel", + "pkgId": "//integrations/amazon_ads:main@bazel", + "deps": [ + { + "nodeId": "org.apache.commons:commons-collections4@4.1" + } + ] + }, + { + "nodeId": "//integrations/amplitude:main@bazel", + "pkgId": "//integrations/amplitude:main@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/anaplan:main@bazel", + "pkgId": "//integrations/anaplan:main@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/apple_search_ads:main@bazel", + "pkgId": "//integrations/apple_search_ads:main@bazel", + "deps": [ + { + "nodeId": "io.jsonwebtoken:jjwt@0.9.0" + }, + { + "nodeId": "org.bouncycastle:bcpkix-jdk15on@1.70" + }, + { + "nodeId": "org.bouncycastle:bcprov-jdk15to18@1.70" + } + ] + }, + { + "nodeId": "//integrations/appsflyer:main@bazel", + "pkgId": "//integrations/appsflyer:main@bazel", + "deps": [ + { + "nodeId": "//integrations/file:main@bazel" + }, + { + "nodeId": "org.apache.avro:avro@1.11.0" + }, + { + "nodeId": "org.apache.hadoop:hadoop-auth@2.7.7" + }, + { + "nodeId": "org.apache.hadoop:hadoop-common@2.7.7" + }, + { + "nodeId": "org.apache.hadoop:hadoop-mapreduce-client-core@2.7.7" + }, + { + "nodeId": "org.apache.parquet:parquet-avro@1.12.2" + }, + { + "nodeId": "org.apache.parquet:parquet-column@1.12.2" + }, + { + "nodeId": "org.apache.parquet:parquet-common@1.12.2" + }, + { + "nodeId": "org.apache.parquet:parquet-hadoop@1.12.2" + } + ] + }, + { + "nodeId": "//integrations/asana:main@bazel", + "pkgId": "//integrations/asana:main@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/aws_cloudtrail:main@bazel", + "pkgId": "//integrations/aws_cloudtrail:main@bazel", + "deps": [ + { + "nodeId": "//integrations/file:main@bazel" + } + ] + }, + { + "nodeId": "//integrations/aws_inventory:main@bazel", + "pkgId": "//integrations/aws_inventory:main@bazel", + "deps": [ + { + "nodeId": "//integrations/file:main@bazel" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-cloudtrail@1.12.84" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-config@1.12.84" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-ec2@1.12.84" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-elasticloadbalancingv2@1.12.84" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-iam@1.12.84" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-kms@1.12.84" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-route53@1.12.84" + } + ] + }, + { + "nodeId": "//integrations/azure_blob_storage:main@bazel", + "pkgId": "//integrations/azure_blob_storage:main@bazel", + "deps": [ + { + "nodeId": "//integrations/file:main@bazel" + }, + { + "nodeId": "//ip_utils:main@bazel" + }, + { + "nodeId": "com.microsoft.azure:azure-storage@8.6.3" + } + ] + }, + { + "nodeId": "//integrations/azure_consumer_file:main@bazel", + "pkgId": "//integrations/azure_consumer_file:main@bazel", + "deps": [ + { + "nodeId": "//integrations/file:main@bazel" + }, + { + "nodeId": "org.apache.poi:poi@3.17" + } + ] + }, + { + "nodeId": "//integrations/azure_service_bus:main@bazel", + "pkgId": "//integrations/azure_service_bus:main@bazel", + "deps": [ + { + "nodeId": "//integrations/kafka:main@bazel" + }, + { + "nodeId": "//ip_utils:main@bazel" + }, + { + "nodeId": "//shaded_dependencies/azure:azure_core_shaded@bazel" + }, + { + "nodeId": "//shaded_dependencies/azure:azure_messaging_servicebus_shaded@bazel" + }, + { + "nodeId": "//shaded_dependencies/azure:microsoft_azure_servicebus_shaded@bazel" + }, + { + "nodeId": "@jsch_patched//:main@bazel" + }, + { + "nodeId": "org.apache.avro:avro@1.11.0" + }, + { + "nodeId": "com.azure:azure-core-amqp@2.3.3" + }, + { + "nodeId": "com.azure:azure-core-http-netty@1.11.1" + } + ] + }, + { + "nodeId": "//integrations/kafka:main@bazel", + "pkgId": "//integrations/kafka:main@bazel", + "deps": [ + { + "nodeId": "//ip_utils:main@bazel" + }, + { + "nodeId": "//shaded_dependencies/azure:azure_messaging_eventhubs_shaded@bazel" + }, + { + "nodeId": "io.confluent:kafka-protobuf-serializer@5.5.1" + }, + { + "nodeId": "javax.xml.bind:jaxb-api@2.2.2" + }, + { + "nodeId": "org.apache.avro:avro@1.11.0" + }, + { + "nodeId": "org.apache.kafka:kafka-clients@2.1.0" + }, + { + "nodeId": "org.bouncycastle:bcpkix-jdk15on@1.70" + }, + { + "nodeId": "org.bouncycastle:bcprov-jdk15to18@1.70" + } + ] + }, + { + "nodeId": "//shaded_dependencies/azure:azure_messaging_eventhubs_shaded@bazel", + "pkgId": "//shaded_dependencies/azure:azure_messaging_eventhubs_shaded@bazel", + "deps": [] + }, + { + "nodeId": "io.confluent:kafka-protobuf-serializer@5.5.1", + "pkgId": "io.confluent:kafka-protobuf-serializer@5.5.1", + "deps": [ + { + "nodeId": "io.confluent:kafka-schema-serializer@5.5.1" + }, + { + "nodeId": "io.confluent:kafka-protobuf-provider@5.5.1" + }, + { + "nodeId": "com.google.protobuf:protobuf-java-util@3.18.2" + }, + { + "nodeId": "io.confluent:common-utils@5.5.1" + }, + { + "nodeId": "io.confluent:kafka-schema-registry-client@5.5.1" + } + ] + }, + { + "nodeId": "io.confluent:kafka-schema-serializer@5.5.1", + "pkgId": "io.confluent:kafka-schema-serializer@5.5.1", + "deps": [ + { + "nodeId": "io.confluent:common-config@5.5.1" + }, + { + "nodeId": "io.confluent:common-utils@5.5.1" + }, + { + "nodeId": "io.confluent:kafka-schema-registry-client@5.5.1" + } + ] + }, + { + "nodeId": "io.confluent:common-config@5.5.1", + "pkgId": "io.confluent:common-config@5.5.1", + "deps": [ + { + "nodeId": "io.confluent:common-utils@5.5.1" + } + ] + }, + { + "nodeId": "io.confluent:common-utils@5.5.1", + "pkgId": "io.confluent:common-utils@5.5.1", + "deps": [] + }, + { + "nodeId": "io.confluent:kafka-schema-registry-client@5.5.1", + "pkgId": "io.confluent:kafka-schema-registry-client@5.5.1", + "deps": [ + { + "nodeId": "org.apache.kafka:kafka-clients@2.1.0" + }, + { + "nodeId": "org.apache.avro:avro@1.11.0" + }, + { + "nodeId": "javax.ws.rs:javax.ws.rs-api@2.1.1" + }, + { + "nodeId": "io.confluent:common-utils@5.5.1" + }, + { + "nodeId": "io.confluent:common-config@5.5.1" + }, + { + "nodeId": "io.swagger:swagger-annotations@1.6.0" + } + ] + }, + { + "nodeId": "org.apache.kafka:kafka-clients@2.1.0", + "pkgId": "org.apache.kafka:kafka-clients@2.1.0", + "deps": [ + { + "nodeId": "com.github.luben:zstd-jni@1.4.9-1" + }, + { + "nodeId": "org.lz4:lz4-java@1.8.0" + }, + { + "nodeId": "org.xerial.snappy:snappy-java@1.1.8.4" + } + ] + }, + { + "nodeId": "org.lz4:lz4-java@1.8.0", + "pkgId": "org.lz4:lz4-java@1.8.0", + "deps": [] + }, + { + "nodeId": "io.confluent:kafka-protobuf-provider@5.5.1", + "pkgId": "io.confluent:kafka-protobuf-provider@5.5.1", + "deps": [ + { + "nodeId": "com.squareup.wire:wire-schema@3.2.2" + }, + { + "nodeId": "com.google.protobuf:protobuf-java-util@3.18.2" + }, + { + "nodeId": "io.confluent:common-utils@5.5.1" + }, + { + "nodeId": "io.confluent:kafka-schema-registry-client@5.5.1" + } + ] + }, + { + "nodeId": "com.squareup.wire:wire-schema@3.2.2", + "pkgId": "com.squareup.wire:wire-schema@3.2.2", + "deps": [ + { + "nodeId": "com.squareup.wire:wire-runtime@3.2.2" + }, + { + "nodeId": "org.jetbrains.kotlin:kotlin-stdlib-jdk8@1.3.71" + }, + { + "nodeId": "org.jetbrains.kotlin:kotlin-stdlib-common@1.3.71" + }, + { + "nodeId": "com.squareup.okio:okio@1.13.0" + } + ] + }, + { + "nodeId": "com.squareup.wire:wire-runtime@3.2.2", + "pkgId": "com.squareup.wire:wire-runtime@3.2.2", + "deps": [ + { + "nodeId": "com.squareup.okio:okio@1.13.0" + }, + { + "nodeId": "org.jetbrains.kotlin:kotlin-stdlib@1.3.50" + }, + { + "nodeId": "org.jetbrains.kotlin:kotlin-stdlib-common@1.3.71" + } + ] + }, + { + "nodeId": "org.jetbrains.kotlin:kotlin-stdlib-jdk8@1.3.71", + "pkgId": "org.jetbrains.kotlin:kotlin-stdlib-jdk8@1.3.71", + "deps": [ + { + "nodeId": "org.jetbrains.kotlin:kotlin-stdlib@1.3.50" + }, + { + "nodeId": "org.jetbrains.kotlin:kotlin-stdlib-jdk7@1.3.71" + } + ] + }, + { + "nodeId": "org.jetbrains.kotlin:kotlin-stdlib-jdk7@1.3.71", + "pkgId": "org.jetbrains.kotlin:kotlin-stdlib-jdk7@1.3.71", + "deps": [ + { + "nodeId": "org.jetbrains.kotlin:kotlin-stdlib@1.3.50" + } + ] + }, + { + "nodeId": "//shaded_dependencies/azure:azure_core_shaded@bazel", + "pkgId": "//shaded_dependencies/azure:azure_core_shaded@bazel", + "deps": [] + }, + { + "nodeId": "//shaded_dependencies/azure:azure_messaging_servicebus_shaded@bazel", + "pkgId": "//shaded_dependencies/azure:azure_messaging_servicebus_shaded@bazel", + "deps": [] + }, + { + "nodeId": "//shaded_dependencies/azure:microsoft_azure_servicebus_shaded@bazel", + "pkgId": "//shaded_dependencies/azure:microsoft_azure_servicebus_shaded@bazel", + "deps": [] + }, + { + "nodeId": "com.azure:azure-core-amqp@2.3.3", + "pkgId": "com.azure:azure-core-amqp@2.3.3", + "deps": [ + { + "nodeId": "com.azure:azure-core@1.21.0" + }, + { + "nodeId": "com.microsoft.azure:qpid-proton-j-extensions@1.2.4" + }, + { + "nodeId": "org.apache.qpid:proton-j@0.33.8" + } + ] + }, + { + "nodeId": "com.azure:azure-core@1.21.0", + "pkgId": "com.azure:azure-core@1.21.0", + "deps": [ + { + "nodeId": "io.projectreactor:reactor-core@3.4.10" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.12.5" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.12.5" + }, + { + "nodeId": "io.netty:netty-tcnative-boringssl-static@2.0.43.Final" + }, + { + "nodeId": "org.slf4j:slf4j-api@1.7.32" + }, + { + "nodeId": "com.fasterxml.jackson.dataformat:jackson-dataformat-xml@2.12.5" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.12.5" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.12.5" + } + ] + }, + { + "nodeId": "io.projectreactor:reactor-core@3.4.10", + "pkgId": "io.projectreactor:reactor-core@3.4.10", + "deps": [ + { + "nodeId": "org.reactivestreams:reactive-streams@1.0.3" + } + ] + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.12.5", + "pkgId": "com.fasterxml.jackson.core:jackson-annotations@2.12.5", + "deps": [] + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.12.5", + "pkgId": "com.fasterxml.jackson.core:jackson-databind@2.12.5", + "deps": [ + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.12.5" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.12.5" + } + ] + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.12.5", + "pkgId": "com.fasterxml.jackson.core:jackson-core@2.12.5", + "deps": [] + }, + { + "nodeId": "io.netty:netty-tcnative-boringssl-static@2.0.43.Final", + "pkgId": "io.netty:netty-tcnative-boringssl-static@2.0.43.Final", + "deps": [] + }, + { + "nodeId": "org.slf4j:slf4j-api@1.7.32", + "pkgId": "org.slf4j:slf4j-api@1.7.32", + "deps": [] + }, + { + "nodeId": "com.fasterxml.jackson.dataformat:jackson-dataformat-xml@2.12.5", + "pkgId": "com.fasterxml.jackson.dataformat:jackson-dataformat-xml@2.12.5", + "deps": [ + { + "nodeId": "com.fasterxml.jackson.module:jackson-module-jaxb-annotations@2.12.5" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.12.5" + }, + { + "nodeId": "org.codehaus.woodstox:stax2-api@3.1.4" + }, + { + "nodeId": "com.fasterxml.woodstox:woodstox-core@5.0.3" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.12.5" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.12.5" + } + ] + }, + { + "nodeId": "com.fasterxml.jackson.module:jackson-module-jaxb-annotations@2.12.5", + "pkgId": "com.fasterxml.jackson.module:jackson-module-jaxb-annotations@2.12.5", + "deps": [ + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.12.5" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.12.5" + }, + { + "nodeId": "jakarta.activation:jakarta.activation-api@1.2.2" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.12.5" + }, + { + "nodeId": "jakarta.xml.bind:jakarta.xml.bind-api@2.3.3" + } + ] + }, + { + "nodeId": "jakarta.activation:jakarta.activation-api@1.2.2", + "pkgId": "jakarta.activation:jakarta.activation-api@1.2.2", + "deps": [] + }, + { + "nodeId": "jakarta.xml.bind:jakarta.xml.bind-api@2.3.3", + "pkgId": "jakarta.xml.bind:jakarta.xml.bind-api@2.3.3", + "deps": [ + { + "nodeId": "jakarta.activation:jakarta.activation-api@1.2.2" + } + ] + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.12.5", + "pkgId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.12.5", + "deps": [ + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.12.5" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.12.5" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.12.5" + } + ] + }, + { + "nodeId": "com.microsoft.azure:qpid-proton-j-extensions@1.2.4", + "pkgId": "com.microsoft.azure:qpid-proton-j-extensions@1.2.4", + "deps": [ + { + "nodeId": "org.apache.qpid:proton-j@0.33.8" + }, + { + "nodeId": "org.slf4j:slf4j-api@1.7.32" + } + ] + }, + { + "nodeId": "org.apache.qpid:proton-j@0.33.8", + "pkgId": "org.apache.qpid:proton-j@0.33.8", + "deps": [] + }, + { + "nodeId": "com.azure:azure-core-http-netty@1.11.1", + "pkgId": "com.azure:azure-core-http-netty@1.11.1", + "deps": [ + { + "nodeId": "io.netty:netty-handler-proxy@4.1.68.Final" + }, + { + "nodeId": "io.projectreactor.netty:reactor-netty-http@1.0.11" + }, + { + "nodeId": "io.netty:netty-buffer@4.1.68.Final" + }, + { + "nodeId": "io.netty:netty-handler@4.1.68.Final" + }, + { + "nodeId": "io.netty:netty-codec-http@4.1.68.Final" + }, + { + "nodeId": "io.netty:netty-transport-native-epoll:jar:linux-x86_64@4.1.68.Final" + }, + { + "nodeId": "io.netty:netty-transport-native-kqueue:jar:osx-x86_64@4.1.68.Final" + }, + { + "nodeId": "io.netty:netty-transport-native-unix-common@4.1.68.Final" + }, + { + "nodeId": "io.netty:netty-codec-http2@4.1.68.Final" + }, + { + "nodeId": "com.azure:azure-core@1.21.0" + } + ] + }, + { + "nodeId": "io.netty:netty-handler-proxy@4.1.68.Final", + "pkgId": "io.netty:netty-handler-proxy@4.1.68.Final", + "deps": [ + { + "nodeId": "io.netty:netty-common@4.1.68.Final" + }, + { + "nodeId": "io.netty:netty-codec@4.1.68.Final" + }, + { + "nodeId": "io.netty:netty-codec-socks@4.1.68.Final" + }, + { + "nodeId": "io.netty:netty-buffer@4.1.68.Final" + }, + { + "nodeId": "io.netty:netty-codec-http@4.1.68.Final" + }, + { + "nodeId": "io.netty:netty-transport@4.1.68.Final" + } + ] + }, + { + "nodeId": "io.netty:netty-common@4.1.68.Final", + "pkgId": "io.netty:netty-common@4.1.68.Final", + "deps": [] + }, + { + "nodeId": "io.netty:netty-codec@4.1.68.Final", + "pkgId": "io.netty:netty-codec@4.1.68.Final", + "deps": [ + { + "nodeId": "io.netty:netty-buffer@4.1.68.Final" + }, + { + "nodeId": "io.netty:netty-common@4.1.68.Final" + }, + { + "nodeId": "io.netty:netty-transport@4.1.68.Final" + } + ] + }, + { + "nodeId": "io.netty:netty-buffer@4.1.68.Final", + "pkgId": "io.netty:netty-buffer@4.1.68.Final", + "deps": [ + { + "nodeId": "io.netty:netty-common@4.1.68.Final" + } + ] + }, + { + "nodeId": "io.netty:netty-transport@4.1.68.Final", + "pkgId": "io.netty:netty-transport@4.1.68.Final", + "deps": [ + { + "nodeId": "io.netty:netty-buffer@4.1.68.Final" + }, + { + "nodeId": "io.netty:netty-common@4.1.68.Final" + }, + { + "nodeId": "io.netty:netty-resolver@4.1.68.Final" + } + ] + }, + { + "nodeId": "io.netty:netty-resolver@4.1.68.Final", + "pkgId": "io.netty:netty-resolver@4.1.68.Final", + "deps": [ + { + "nodeId": "io.netty:netty-common@4.1.68.Final" + } + ] + }, + { + "nodeId": "io.netty:netty-codec-socks@4.1.68.Final", + "pkgId": "io.netty:netty-codec-socks@4.1.68.Final", + "deps": [ + { + "nodeId": "io.netty:netty-buffer@4.1.68.Final" + }, + { + "nodeId": "io.netty:netty-codec@4.1.68.Final" + }, + { + "nodeId": "io.netty:netty-common@4.1.68.Final" + }, + { + "nodeId": "io.netty:netty-transport@4.1.68.Final" + } + ] + }, + { + "nodeId": "io.netty:netty-codec-http@4.1.68.Final", + "pkgId": "io.netty:netty-codec-http@4.1.68.Final", + "deps": [ + { + "nodeId": "io.netty:netty-common@4.1.68.Final" + }, + { + "nodeId": "io.netty:netty-codec@4.1.68.Final" + }, + { + "nodeId": "io.netty:netty-buffer@4.1.68.Final" + }, + { + "nodeId": "io.netty:netty-handler@4.1.68.Final" + }, + { + "nodeId": "io.netty:netty-transport@4.1.68.Final" + } + ] + }, + { + "nodeId": "io.netty:netty-handler@4.1.68.Final", + "pkgId": "io.netty:netty-handler@4.1.68.Final", + "deps": [ + { + "nodeId": "io.netty:netty-resolver@4.1.68.Final" + }, + { + "nodeId": "io.netty:netty-common@4.1.68.Final" + }, + { + "nodeId": "io.netty:netty-codec@4.1.68.Final" + }, + { + "nodeId": "io.netty:netty-buffer@4.1.68.Final" + }, + { + "nodeId": "io.netty:netty-transport@4.1.68.Final" + } + ] + }, + { + "nodeId": "io.projectreactor.netty:reactor-netty-http@1.0.11", + "pkgId": "io.projectreactor.netty:reactor-netty-http@1.0.11", + "deps": [ + { + "nodeId": "io.projectreactor.netty:reactor-netty-core@1.0.11" + }, + { + "nodeId": "io.projectreactor:reactor-core@3.4.10" + }, + { + "nodeId": "io.netty:netty-resolver-dns@4.1.68.Final" + }, + { + "nodeId": "io.netty:netty-codec-http@4.1.68.Final" + }, + { + "nodeId": "io.netty:netty-transport-native-epoll:jar:linux-x86_64@4.1.68.Final" + }, + { + "nodeId": "io.netty:netty-codec-http2@4.1.68.Final" + }, + { + "nodeId": "io.netty:netty-resolver-dns-native-macos:jar:osx-x86_64@4.1.68.Final" + } + ] + }, + { + "nodeId": "io.projectreactor.netty:reactor-netty-core@1.0.11", + "pkgId": "io.projectreactor.netty:reactor-netty-core@1.0.11", + "deps": [ + { + "nodeId": "io.netty:netty-handler-proxy@4.1.68.Final" + }, + { + "nodeId": "io.projectreactor:reactor-core@3.4.10" + }, + { + "nodeId": "io.netty:netty-resolver-dns@4.1.68.Final" + }, + { + "nodeId": "io.netty:netty-handler@4.1.68.Final" + }, + { + "nodeId": "io.netty:netty-transport-native-epoll:jar:linux-x86_64@4.1.68.Final" + }, + { + "nodeId": "io.netty:netty-resolver-dns-native-macos:jar:osx-x86_64@4.1.68.Final" + } + ] + }, + { + "nodeId": "io.netty:netty-resolver-dns@4.1.68.Final", + "pkgId": "io.netty:netty-resolver-dns@4.1.68.Final", + "deps": [ + { + "nodeId": "io.netty:netty-resolver@4.1.68.Final" + }, + { + "nodeId": "io.netty:netty-common@4.1.68.Final" + }, + { + "nodeId": "io.netty:netty-codec@4.1.68.Final" + }, + { + "nodeId": "io.netty:netty-buffer@4.1.68.Final" + }, + { + "nodeId": "io.netty:netty-handler@4.1.68.Final" + }, + { + "nodeId": "io.netty:netty-codec-dns@4.1.68.Final" + }, + { + "nodeId": "io.netty:netty-transport@4.1.68.Final" + } + ] + }, + { + "nodeId": "io.netty:netty-codec-dns@4.1.68.Final", + "pkgId": "io.netty:netty-codec-dns@4.1.68.Final", + "deps": [ + { + "nodeId": "io.netty:netty-buffer@4.1.68.Final" + }, + { + "nodeId": "io.netty:netty-codec@4.1.68.Final" + }, + { + "nodeId": "io.netty:netty-common@4.1.68.Final" + }, + { + "nodeId": "io.netty:netty-transport@4.1.68.Final" + } + ] + }, + { + "nodeId": "io.netty:netty-transport-native-epoll:jar:linux-x86_64@4.1.68.Final", + "pkgId": "io.netty:netty-transport-native-epoll:jar:linux-x86_64@4.1.68.Final", + "deps": [ + { + "nodeId": "io.netty:netty-buffer@4.1.68.Final" + }, + { + "nodeId": "io.netty:netty-common@4.1.68.Final" + }, + { + "nodeId": "io.netty:netty-transport@4.1.68.Final" + }, + { + "nodeId": "io.netty:netty-transport-native-unix-common@4.1.68.Final" + } + ] + }, + { + "nodeId": "io.netty:netty-transport-native-unix-common@4.1.68.Final", + "pkgId": "io.netty:netty-transport-native-unix-common@4.1.68.Final", + "deps": [ + { + "nodeId": "io.netty:netty-buffer@4.1.68.Final" + }, + { + "nodeId": "io.netty:netty-common@4.1.68.Final" + }, + { + "nodeId": "io.netty:netty-transport@4.1.68.Final" + } + ] + }, + { + "nodeId": "io.netty:netty-resolver-dns-native-macos:jar:osx-x86_64@4.1.68.Final", + "pkgId": "io.netty:netty-resolver-dns-native-macos:jar:osx-x86_64@4.1.68.Final", + "deps": [ + { + "nodeId": "io.netty:netty-common@4.1.68.Final" + }, + { + "nodeId": "io.netty:netty-resolver-dns@4.1.68.Final" + }, + { + "nodeId": "io.netty:netty-transport-native-unix-common@4.1.68.Final" + } + ] + }, + { + "nodeId": "io.netty:netty-codec-http2@4.1.68.Final", + "pkgId": "io.netty:netty-codec-http2@4.1.68.Final", + "deps": [ + { + "nodeId": "io.netty:netty-common@4.1.68.Final" + }, + { + "nodeId": "io.netty:netty-codec@4.1.68.Final" + }, + { + "nodeId": "io.netty:netty-buffer@4.1.68.Final" + }, + { + "nodeId": "io.netty:netty-handler@4.1.68.Final" + }, + { + "nodeId": "io.netty:netty-codec-http@4.1.68.Final" + }, + { + "nodeId": "io.netty:netty-transport@4.1.68.Final" + } + ] + }, + { + "nodeId": "io.netty:netty-transport-native-kqueue:jar:osx-x86_64@4.1.68.Final", + "pkgId": "io.netty:netty-transport-native-kqueue:jar:osx-x86_64@4.1.68.Final", + "deps": [ + { + "nodeId": "io.netty:netty-buffer@4.1.68.Final" + }, + { + "nodeId": "io.netty:netty-common@4.1.68.Final" + }, + { + "nodeId": "io.netty:netty-transport@4.1.68.Final" + }, + { + "nodeId": "io.netty:netty-transport-native-unix-common@4.1.68.Final" + } + ] + }, + { + "nodeId": "//integrations/big_commerce:main@bazel", + "pkgId": "//integrations/big_commerce:main@bazel", + "deps": [ + { + "nodeId": "//webhook/utils:main@bazel" + }, + { + "nodeId": "org.json:json@20171018" + } + ] + }, + { + "nodeId": "//integrations/bingads:main@bazel", + "pkgId": "//integrations/bingads:main@bazel", + "deps": [ + { + "nodeId": "//xml_util:main@bazel" + }, + { + "nodeId": "com.microsoft.bingads:microsoft.bingads@12.0.3" + }, + { + "nodeId": "javax.xml.bind:jaxb-api@2.2.2" + }, + { + "nodeId": "org.apache.httpcomponents:httpmime@4.5.13" + }, + { + "nodeId": "org.json:json@20171018" + } + ] + }, + { + "nodeId": "//xml_util:main@bazel", + "pkgId": "//xml_util:main@bazel", + "deps": [ + { + "nodeId": "com.sun.xml.bind:jaxb-core@2.2.11" + }, + { + "nodeId": "com.sun.xml.bind:jaxb-impl@2.2.11" + }, + { + "nodeId": "javax.xml.bind:jaxb-api@2.2.2" + } + ] + }, + { + "nodeId": "com.microsoft.bingads:microsoft.bingads@12.0.3", + "pkgId": "com.microsoft.bingads:microsoft.bingads@12.0.3", + "deps": [ + { + "nodeId": "com.googlecode.jcsv:jcsv@1.4.0" + }, + { + "nodeId": "org.apache.cxf:cxf-rt-transports-http@3.2.14" + }, + { + "nodeId": "org.apache.cxf:cxf-rt-frontend-jaxws@3.2.14" + }, + { + "nodeId": "org.apache.httpcomponents:httpmime@4.5.13" + } + ] + }, + { + "nodeId": "com.googlecode.jcsv:jcsv@1.4.0", + "pkgId": "com.googlecode.jcsv:jcsv@1.4.0", + "deps": [] + }, + { + "nodeId": "org.apache.cxf:cxf-rt-transports-http@3.2.14", + "pkgId": "org.apache.cxf:cxf-rt-transports-http@3.2.14", + "deps": [ + { + "nodeId": "org.apache.cxf:cxf-core@3.2.14" + } + ] + }, + { + "nodeId": "org.apache.cxf:cxf-core@3.2.14", + "pkgId": "org.apache.cxf:cxf-core@3.2.14", + "deps": [ + { + "nodeId": "com.fasterxml.woodstox:woodstox-core@5.0.3" + }, + { + "nodeId": "org.apache.ws.xmlschema:xmlschema-core@2.2.5" + } + ] + }, + { + "nodeId": "org.apache.ws.xmlschema:xmlschema-core@2.2.5", + "pkgId": "org.apache.ws.xmlschema:xmlschema-core@2.2.5", + "deps": [] + }, + { + "nodeId": "org.apache.cxf:cxf-rt-frontend-jaxws@3.2.14", + "pkgId": "org.apache.cxf:cxf-rt-frontend-jaxws@3.2.14", + "deps": [ + { + "nodeId": "org.apache.cxf:cxf-core@3.2.14" + }, + { + "nodeId": "org.ow2.asm:asm@8.0.1" + }, + { + "nodeId": "xml-resolver:xml-resolver@1.2" + }, + { + "nodeId": "org.apache.cxf:cxf-rt-ws-addr@3.2.14" + }, + { + "nodeId": "org.apache.cxf:cxf-rt-bindings-xml@3.2.14" + }, + { + "nodeId": "org.apache.cxf:cxf-rt-bindings-soap@3.2.14" + }, + { + "nodeId": "org.apache.cxf:cxf-rt-frontend-simple@3.2.14" + } + ] + }, + { + "nodeId": "org.apache.cxf:cxf-rt-ws-addr@3.2.14", + "pkgId": "org.apache.cxf:cxf-rt-ws-addr@3.2.14", + "deps": [ + { + "nodeId": "org.apache.cxf:cxf-core@3.2.14" + }, + { + "nodeId": "org.apache.cxf:cxf-rt-bindings-soap@3.2.14" + }, + { + "nodeId": "org.apache.cxf:cxf-rt-ws-policy@3.2.14" + } + ] + }, + { + "nodeId": "org.apache.cxf:cxf-rt-bindings-soap@3.2.14", + "pkgId": "org.apache.cxf:cxf-rt-bindings-soap@3.2.14", + "deps": [ + { + "nodeId": "org.apache.cxf:cxf-core@3.2.14" + }, + { + "nodeId": "org.apache.cxf:cxf-rt-databinding-jaxb@3.2.14" + }, + { + "nodeId": "org.apache.cxf:cxf-rt-wsdl@3.2.14" + } + ] + }, + { + "nodeId": "org.apache.cxf:cxf-rt-databinding-jaxb@3.2.14", + "pkgId": "org.apache.cxf:cxf-rt-databinding-jaxb@3.2.14", + "deps": [ + { + "nodeId": "org.apache.cxf:cxf-core@3.2.14" + }, + { + "nodeId": "org.apache.cxf:cxf-rt-wsdl@3.2.14" + } + ] + }, + { + "nodeId": "org.apache.cxf:cxf-rt-wsdl@3.2.14", + "pkgId": "org.apache.cxf:cxf-rt-wsdl@3.2.14", + "deps": [ + { + "nodeId": "org.apache.cxf:cxf-core@3.2.14" + }, + { + "nodeId": "org.ow2.asm:asm@8.0.1" + }, + { + "nodeId": "wsdl4j:wsdl4j@1.6.2" + } + ] + }, + { + "nodeId": "org.apache.cxf:cxf-rt-ws-policy@3.2.14", + "pkgId": "org.apache.cxf:cxf-rt-ws-policy@3.2.14", + "deps": [ + { + "nodeId": "org.apache.cxf:cxf-core@3.2.14" + }, + { + "nodeId": "org.apache.neethi:neethi@3.1.1" + }, + { + "nodeId": "wsdl4j:wsdl4j@1.6.2" + } + ] + }, + { + "nodeId": "org.apache.neethi:neethi@3.1.1", + "pkgId": "org.apache.neethi:neethi@3.1.1", + "deps": [] + }, + { + "nodeId": "org.apache.cxf:cxf-rt-bindings-xml@3.2.14", + "pkgId": "org.apache.cxf:cxf-rt-bindings-xml@3.2.14", + "deps": [ + { + "nodeId": "org.apache.cxf:cxf-core@3.2.14" + }, + { + "nodeId": "org.ow2.asm:asm@8.0.1" + } + ] + }, + { + "nodeId": "org.apache.cxf:cxf-rt-frontend-simple@3.2.14", + "pkgId": "org.apache.cxf:cxf-rt-frontend-simple@3.2.14", + "deps": [ + { + "nodeId": "org.apache.cxf:cxf-core@3.2.14" + }, + { + "nodeId": "org.apache.cxf:cxf-rt-bindings-soap@3.2.14" + }, + { + "nodeId": "org.apache.cxf:cxf-rt-wsdl@3.2.14" + } + ] + }, + { + "nodeId": "org.apache.httpcomponents:httpmime@4.5.13", + "pkgId": "org.apache.httpcomponents:httpmime@4.5.13", + "deps": [] + }, + { + "nodeId": "//integrations/box:main@bazel", + "pkgId": "//integrations/box:main@bazel", + "deps": [ + { + "nodeId": "//integrations/file:main@bazel" + } + ] + }, + { + "nodeId": "//integrations/braintree:main@bazel", + "pkgId": "//integrations/braintree:main@bazel", + "deps": [ + { + "nodeId": "//ecomm:main@bazel" + }, + { + "nodeId": "com.braintreepayments.gateway:braintree-java@2.108.0" + } + ] + }, + { + "nodeId": "com.braintreepayments.gateway:braintree-java@2.108.0", + "pkgId": "com.braintreepayments.gateway:braintree-java@2.108.0", + "deps": [ + { + "nodeId": "com.fasterxml.jackson.jr:jackson-jr-objects@2.9.9" + }, + { + "nodeId": "org.apache.commons:commons-csv@1.8" + }, + { + "nodeId": "org.osgi:org.osgi.core@4.2.0" + } + ] + }, + { + "nodeId": "com.fasterxml.jackson.jr:jackson-jr-objects@2.9.9", + "pkgId": "com.fasterxml.jackson.jr:jackson-jr-objects@2.9.9", + "deps": [] + }, + { + "nodeId": "org.apache.commons:commons-csv@1.8", + "pkgId": "org.apache.commons:commons-csv@1.8", + "deps": [] + }, + { + "nodeId": "org.osgi:org.osgi.core@4.2.0", + "pkgId": "org.osgi:org.osgi.core@4.2.0", + "deps": [] + }, + { + "nodeId": "//integrations/branch:main@bazel", + "pkgId": "//integrations/branch:main@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/business_central:main@bazel", + "pkgId": "//integrations/business_central:main@bazel", + "deps": [ + { + "nodeId": "//webhook/utils:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.dataformat:jackson-dataformat-smile@2.9.8" + }, + { + "nodeId": "com.google.apis:google-api-services-bigquery@v2-rev459-1.25.0" + }, + { + "nodeId": "joda-time:joda-time@2.9.2" + } + ] + }, + { + "nodeId": "//integrations/cloudfront:main@bazel", + "pkgId": "//integrations/cloudfront:main@bazel", + "deps": [ + { + "nodeId": "//integrations/file:main@bazel" + }, + { + "nodeId": "//integrations/s3:main@bazel" + } + ] + }, + { + "nodeId": "//integrations/s3:main@bazel", + "pkgId": "//integrations/s3:main@bazel", + "deps": [ + { + "nodeId": "//database:enums@bazel" + }, + { + "nodeId": "//integrations/file:main@bazel" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-sts@1.12.84" + } + ] + }, + { + "nodeId": "//integrations/coupa:main@bazel", + "pkgId": "//integrations/coupa:main@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/criteo:main@bazel", + "pkgId": "//integrations/criteo:main@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/db2:main@bazel", + "pkgId": "//integrations/db2:main@bazel", + "deps": [ + { + "nodeId": "//port_forwarder:main@bazel" + }, + { + "nodeId": "//utils/byte_array_list:main@bazel" + }, + { + "nodeId": "//utils/cipher_adapter:main@bazel" + }, + { + "nodeId": "//verification:main@bazel" + }, + { + "nodeId": "com.ibm.db2:jcc@11.5.0.0" + }, + { + "nodeId": "com.zaxxer:HikariCP@3.4.1" + } + ] + }, + { + "nodeId": "//utils/byte_array_list:main@bazel", + "pkgId": "//utils/byte_array_list:main@bazel", + "deps": [ + { + "nodeId": "//utils/cipher_adapter:main@bazel" + } + ] + }, + { + "nodeId": "//integrations/document:main@bazel", + "pkgId": "//integrations/document:main@bazel", + "deps": [ + { + "nodeId": "//database:tls_verify@bazel" + }, + { + "nodeId": "//integrations/mongo:main@bazel" + }, + { + "nodeId": "//port_forwarder:main@bazel" + }, + { + "nodeId": "//verification:main@bazel" + }, + { + "nodeId": "dnsjava:dnsjava@3.0.2" + }, + { + "nodeId": "org.mongodb:mongo-java-driver@3.12.0" + } + ] + }, + { + "nodeId": "//integrations/mongo:main@bazel", + "pkgId": "//integrations/mongo:main@bazel", + "deps": [ + { + "nodeId": "//database:tls_verify@bazel" + }, + { + "nodeId": "//ecomm:main@bazel" + }, + { + "nodeId": "//port_forwarder:main@bazel" + }, + { + "nodeId": "//services:ab_tests@bazel" + }, + { + "nodeId": "//verification:main@bazel" + }, + { + "nodeId": "dnsjava:dnsjava@3.0.2" + }, + { + "nodeId": "io.opentelemetry:opentelemetry-api@0.13.1" + }, + { + "nodeId": "io.opentelemetry:opentelemetry-api-trace@0.13.1" + }, + { + "nodeId": "io.opentelemetry:opentelemetry-extension-annotations@0.13.1" + }, + { + "nodeId": "org.mongodb:mongo-java-driver@3.12.0" + } + ] + }, + { + "nodeId": "dnsjava:dnsjava@3.0.2", + "pkgId": "dnsjava:dnsjava@3.0.2", + "deps": [] + }, + { + "nodeId": "io.opentelemetry:opentelemetry-api@0.13.1", + "pkgId": "io.opentelemetry:opentelemetry-api@0.13.1", + "deps": [ + { + "nodeId": "io.opentelemetry:opentelemetry-api-metrics@0.13.0-alpha" + }, + { + "nodeId": "io.opentelemetry:opentelemetry-context@0.13.1" + }, + { + "nodeId": "io.opentelemetry:opentelemetry-api-trace@0.13.1" + }, + { + "nodeId": "io.opentelemetry:opentelemetry-api-common@0.13.1" + }, + { + "nodeId": "io.opentelemetry:opentelemetry-api-baggage@0.13.1" + } + ] + }, + { + "nodeId": "io.opentelemetry:opentelemetry-api-metrics@0.13.0-alpha", + "pkgId": "io.opentelemetry:opentelemetry-api-metrics@0.13.0-alpha", + "deps": [ + { + "nodeId": "io.opentelemetry:opentelemetry-api-common@0.13.1" + }, + { + "nodeId": "io.opentelemetry:opentelemetry-context@0.13.1" + } + ] + }, + { + "nodeId": "io.opentelemetry:opentelemetry-api-common@0.13.1", + "pkgId": "io.opentelemetry:opentelemetry-api-common@0.13.1", + "deps": [] + }, + { + "nodeId": "io.opentelemetry:opentelemetry-context@0.13.1", + "pkgId": "io.opentelemetry:opentelemetry-context@0.13.1", + "deps": [] + }, + { + "nodeId": "io.opentelemetry:opentelemetry-api-trace@0.13.1", + "pkgId": "io.opentelemetry:opentelemetry-api-trace@0.13.1", + "deps": [ + { + "nodeId": "io.opentelemetry:opentelemetry-api-common@0.13.1" + }, + { + "nodeId": "io.opentelemetry:opentelemetry-context@0.13.1" + } + ] + }, + { + "nodeId": "io.opentelemetry:opentelemetry-api-baggage@0.13.1", + "pkgId": "io.opentelemetry:opentelemetry-api-baggage@0.13.1", + "deps": [ + { + "nodeId": "io.opentelemetry:opentelemetry-api-common@0.13.1" + }, + { + "nodeId": "io.opentelemetry:opentelemetry-context@0.13.1" + } + ] + }, + { + "nodeId": "io.opentelemetry:opentelemetry-extension-annotations@0.13.1", + "pkgId": "io.opentelemetry:opentelemetry-extension-annotations@0.13.1", + "deps": [ + { + "nodeId": "io.opentelemetry:opentelemetry-api@0.13.1" + } + ] + }, + { + "nodeId": "org.mongodb:mongo-java-driver@3.12.0", + "pkgId": "org.mongodb:mongo-java-driver@3.12.0", + "deps": [] + }, + { + "nodeId": "//integrations/double_click_campaign_manager:main@bazel", + "pkgId": "//integrations/double_click_campaign_manager:main@bazel", + "deps": [ + { + "nodeId": "//integrations/cube:main@bazel" + } + ] + }, + { + "nodeId": "//integrations/dropbox:main@bazel", + "pkgId": "//integrations/dropbox:main@bazel", + "deps": [ + { + "nodeId": "//integrations/file:main@bazel" + }, + { + "nodeId": "com.dropbox.core:dropbox-core-sdk@4.0.0" + }, + { + "nodeId": "org.awaitility:awaitility@4.0.3" + } + ] + }, + { + "nodeId": "com.dropbox.core:dropbox-core-sdk@4.0.0", + "pkgId": "com.dropbox.core:dropbox-core-sdk@4.0.0", + "deps": [] + }, + { + "nodeId": "//integrations/dummy_postgres:main@bazel", + "pkgId": "//integrations/dummy_postgres:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:pojos@bazel" + }, + { + "nodeId": "@com_google_cloud_google_cloud_bigquerydatatransfer//:main@bazel" + }, + { + "nodeId": "com.google.apis:google-api-services-bigquery@v2-rev459-1.25.0" + }, + { + "nodeId": "com.google.cloud:google-cloud-bigquery@1.48.0" + }, + { + "nodeId": "org.threeten:threetenbp@1.3.3" + } + ] + }, + { + "nodeId": "//integrations/dynamics365:main@bazel", + "pkgId": "//integrations/dynamics365:main@bazel", + "deps": [ + { + "nodeId": "//dblike:main@bazel" + }, + { + "nodeId": "//integrations/db_like_standardization:main@bazel" + }, + { + "nodeId": "com.microsoft.azure:adal4j@1.6.3" + }, + { + "nodeId": "com.nimbusds:lang-tag@1.4.3" + }, + { + "nodeId": "com.nimbusds:nimbus-jose-jwt@5.5" + }, + { + "nodeId": "com.nimbusds:oauth2-oidc-sdk@5.64.4" + } + ] + }, + { + "nodeId": "//integrations/dynamodb:main@bazel", + "pkgId": "//integrations/dynamodb:main@bazel", + "deps": [ + { + "nodeId": "//database:enums@bazel" + }, + { + "nodeId": "//ecomm:main@bazel" + }, + { + "nodeId": "//integrations/speed_test:main@bazel" + }, + { + "nodeId": "//utils/serializers:main@bazel" + }, + { + "nodeId": "//utils/sync_statistics:main@bazel" + }, + { + "nodeId": "@acmecorp_amazon_kinesis_client//:main@bazel" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-cloudwatch@1.12.84" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-dynamodb@1.12.84" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-ec2@1.12.84" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-kinesis@1.12.84" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-sts@1.12.84" + }, + { + "nodeId": "com.amazonaws:dynamodb-streams-kinesis-adapter@1.4.0" + }, + { + "nodeId": "com.walkmind.extensions:collections@1.20" + }, + { + "nodeId": "io.netty:netty-buffer@4.1.50.Final" + }, + { + "nodeId": "org.json:json@20171018" + } + ] + }, + { + "nodeId": "@acmecorp_amazon_kinesis_client//:main@bazel", + "pkgId": "@acmecorp_amazon_kinesis_client//:main@bazel", + "deps": [ + { + "nodeId": "com.amazonaws:aws-java-sdk-cloudwatch@1.12.84" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-dynamodb@1.12.84" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-kinesis@1.12.84" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-kms@1.12.84" + }, + { + "nodeId": "com.amazonaws:jmespath-java@1.11.91" + }, + { + "nodeId": "com.fasterxml.jackson.dataformat:jackson-dataformat-cbor@2.9.8" + }, + { + "nodeId": "commons-logging:commons-logging@1.2" + }, + { + "nodeId": "joda-time:joda-time@2.9.2" + }, + { + "nodeId": "software.amazon.ion:ion-java@1.0.2" + }, + { + "nodeId": "com.sun.xml.bind:jaxb-core@2.2.11" + }, + { + "nodeId": "com.sun.xml.bind:jaxb-impl@2.2.11" + }, + { + "nodeId": "javax.xml.bind:jaxb-api@2.2.2" + } + ] + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-kinesis@1.12.84", + "pkgId": "com.amazonaws:aws-java-sdk-kinesis@1.12.84", + "deps": [ + { + "nodeId": "com.amazonaws:jmespath-java@1.11.91" + } + ] + }, + { + "nodeId": "com.amazonaws:dynamodb-streams-kinesis-adapter@1.4.0", + "pkgId": "com.amazonaws:dynamodb-streams-kinesis-adapter@1.4.0", + "deps": [ + { + "nodeId": "commons-logging:commons-logging@1.2" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-kinesis@1.12.84" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-cloudwatch@1.12.84" + }, + { + "nodeId": "com.amazonaws:amazon-kinesis-client@1.13.0" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-dynamodb@1.12.84" + } + ] + }, + { + "nodeId": "com.amazonaws:amazon-kinesis-client@1.13.0", + "pkgId": "com.amazonaws:amazon-kinesis-client@1.13.0", + "deps": [ + { + "nodeId": "commons-logging:commons-logging@1.2" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-kinesis@1.12.84" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-cloudwatch@1.12.84" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-dynamodb@1.12.84" + } + ] + }, + { + "nodeId": "//integrations/elasticsearch:main@bazel", + "pkgId": "//integrations/elasticsearch:main@bazel", + "deps": [ + { + "nodeId": "//common:main@bazel" + }, + { + "nodeId": "//crypto:pojos@bazel" + }, + { + "nodeId": "//database:tls_verify@bazel" + }, + { + "nodeId": "//port_forwarder:main@bazel" + }, + { + "nodeId": "//teleport:main@bazel" + }, + { + "nodeId": "//utils/sync_statistics:main@bazel" + }, + { + "nodeId": "//verification:main@bazel" + }, + { + "nodeId": "javax.validation:validation-api@1.1.0.Final" + }, + { + "nodeId": "org.apache.lucene:lucene-core@8.9.0" + }, + { + "nodeId": "org.elasticsearch.client:elasticsearch-rest-client@7.14.0" + }, + { + "nodeId": "org.elasticsearch.client:elasticsearch-rest-high-level-client@7.14.0" + }, + { + "nodeId": "org.elasticsearch:elasticsearch@7.14.0" + }, + { + "nodeId": "org.elasticsearch:elasticsearch-core@7.14.0" + }, + { + "nodeId": "org.opensearch.client:opensearch-rest-client@1.1.0" + }, + { + "nodeId": "org.opensearch.client:opensearch-rest-high-level-client@1.1.0" + }, + { + "nodeId": "org.opensearch:opensearch@1.1.0" + }, + { + "nodeId": "org.opensearch:opensearch-core@1.1.0" + }, + { + "nodeId": "org.opensearch:opensearch-x-content@1.1.0" + } + ] + }, + { + "nodeId": "org.apache.lucene:lucene-core@8.9.0", + "pkgId": "org.apache.lucene:lucene-core@8.9.0", + "deps": [] + }, + { + "nodeId": "org.elasticsearch.client:elasticsearch-rest-client@7.14.0", + "pkgId": "org.elasticsearch.client:elasticsearch-rest-client@7.14.0", + "deps": [ + { + "nodeId": "org.apache.httpcomponents:httpcore-nio@4.4.13" + }, + { + "nodeId": "commons-logging:commons-logging@1.2" + }, + { + "nodeId": "org.apache.httpcomponents:httpasyncclient@4.1.4" + } + ] + }, + { + "nodeId": "org.apache.httpcomponents:httpcore-nio@4.4.13", + "pkgId": "org.apache.httpcomponents:httpcore-nio@4.4.13", + "deps": [] + }, + { + "nodeId": "org.apache.httpcomponents:httpasyncclient@4.1.4", + "pkgId": "org.apache.httpcomponents:httpasyncclient@4.1.4", + "deps": [ + { + "nodeId": "commons-logging:commons-logging@1.2" + }, + { + "nodeId": "org.apache.httpcomponents:httpcore-nio@4.4.13" + } + ] + }, + { + "nodeId": "org.elasticsearch.client:elasticsearch-rest-high-level-client@7.14.0", + "pkgId": "org.elasticsearch.client:elasticsearch-rest-high-level-client@7.14.0", + "deps": [ + { + "nodeId": "org.elasticsearch.plugin:parent-join-client@7.14.0" + }, + { + "nodeId": "org.elasticsearch.plugin:lang-mustache-client@7.14.0" + }, + { + "nodeId": "org.elasticsearch.client:elasticsearch-rest-client@7.14.0" + }, + { + "nodeId": "org.elasticsearch.plugin:aggs-matrix-stats-client@7.14.0" + }, + { + "nodeId": "org.elasticsearch.plugin:mapper-extras-client@7.14.0" + }, + { + "nodeId": "org.elasticsearch:elasticsearch@7.14.0" + }, + { + "nodeId": "org.elasticsearch.plugin:rank-eval-client@7.14.0" + } + ] + }, + { + "nodeId": "org.elasticsearch.plugin:parent-join-client@7.14.0", + "pkgId": "org.elasticsearch.plugin:parent-join-client@7.14.0", + "deps": [] + }, + { + "nodeId": "org.elasticsearch.plugin:lang-mustache-client@7.14.0", + "pkgId": "org.elasticsearch.plugin:lang-mustache-client@7.14.0", + "deps": [ + { + "nodeId": "com.github.spullara.mustache.java:compiler@0.9.6" + } + ] + }, + { + "nodeId": "com.github.spullara.mustache.java:compiler@0.9.6", + "pkgId": "com.github.spullara.mustache.java:compiler@0.9.6", + "deps": [] + }, + { + "nodeId": "org.elasticsearch.plugin:aggs-matrix-stats-client@7.14.0", + "pkgId": "org.elasticsearch.plugin:aggs-matrix-stats-client@7.14.0", + "deps": [] + }, + { + "nodeId": "org.elasticsearch.plugin:mapper-extras-client@7.14.0", + "pkgId": "org.elasticsearch.plugin:mapper-extras-client@7.14.0", + "deps": [] + }, + { + "nodeId": "org.elasticsearch:elasticsearch@7.14.0", + "pkgId": "org.elasticsearch:elasticsearch@7.14.0", + "deps": [ + { + "nodeId": "org.apache.lucene:lucene-suggest@8.9.0" + }, + { + "nodeId": "org.elasticsearch:jna@5.7.0-1" + }, + { + "nodeId": "org.apache.lucene:lucene-highlighter@8.9.0" + }, + { + "nodeId": "com.tdunning:t-digest@3.2" + }, + { + "nodeId": "org.apache.lucene:lucene-core@8.9.0" + }, + { + "nodeId": "org.elasticsearch:elasticsearch-cli@7.14.0" + }, + { + "nodeId": "org.elasticsearch:elasticsearch-x-content@7.14.0" + }, + { + "nodeId": "org.apache.lucene:lucene-grouping@8.9.0" + }, + { + "nodeId": "org.apache.lucene:lucene-join@8.9.0" + }, + { + "nodeId": "org.apache.logging.log4j:log4j-api@2.17.1" + }, + { + "nodeId": "com.carrotsearch:hppc@0.8.1" + }, + { + "nodeId": "org.apache.lucene:lucene-sandbox@8.9.0" + }, + { + "nodeId": "org.apache.lucene:lucene-backward-codecs@8.9.0" + }, + { + "nodeId": "org.apache.lucene:lucene-spatial-extras@8.9.0" + }, + { + "nodeId": "org.apache.lucene:lucene-spatial3d@8.9.0" + }, + { + "nodeId": "org.apache.lucene:lucene-misc@8.9.0" + }, + { + "nodeId": "org.elasticsearch:elasticsearch-geo@7.14.0" + }, + { + "nodeId": "org.lz4:lz4-java@1.8.0" + }, + { + "nodeId": "org.apache.lucene:lucene-analyzers-common@8.9.0" + }, + { + "nodeId": "org.apache.lucene:lucene-memory@8.9.0" + }, + { + "nodeId": "org.apache.lucene:lucene-queries@8.9.0" + }, + { + "nodeId": "joda-time:joda-time@2.9.2" + }, + { + "nodeId": "org.hdrhistogram:HdrHistogram@2.1.12" + }, + { + "nodeId": "org.elasticsearch:elasticsearch-secure-sm@7.14.0" + }, + { + "nodeId": "org.elasticsearch:elasticsearch-plugin-classloader@7.14.0" + }, + { + "nodeId": "org.apache.lucene:lucene-queryparser@8.9.0" + }, + { + "nodeId": "org.elasticsearch:elasticsearch-core@7.14.0" + } + ] + }, + { + "nodeId": "org.apache.lucene:lucene-suggest@8.9.0", + "pkgId": "org.apache.lucene:lucene-suggest@8.9.0", + "deps": [] + }, + { + "nodeId": "org.elasticsearch:jna@5.7.0-1", + "pkgId": "org.elasticsearch:jna@5.7.0-1", + "deps": [] + }, + { + "nodeId": "org.apache.lucene:lucene-highlighter@8.9.0", + "pkgId": "org.apache.lucene:lucene-highlighter@8.9.0", + "deps": [] + }, + { + "nodeId": "com.tdunning:t-digest@3.2", + "pkgId": "com.tdunning:t-digest@3.2", + "deps": [] + }, + { + "nodeId": "org.elasticsearch:elasticsearch-cli@7.14.0", + "pkgId": "org.elasticsearch:elasticsearch-cli@7.14.0", + "deps": [ + { + "nodeId": "net.sf.jopt-simple:jopt-simple@5.0.4" + }, + { + "nodeId": "org.elasticsearch:elasticsearch-core@7.14.0" + } + ] + }, + { + "nodeId": "org.elasticsearch:elasticsearch-core@7.14.0", + "pkgId": "org.elasticsearch:elasticsearch-core@7.14.0", + "deps": [] + }, + { + "nodeId": "org.elasticsearch:elasticsearch-x-content@7.14.0", + "pkgId": "org.elasticsearch:elasticsearch-x-content@7.14.0", + "deps": [ + { + "nodeId": "com.fasterxml.jackson.dataformat:jackson-dataformat-cbor@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.dataformat:jackson-dataformat-yaml@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.dataformat:jackson-dataformat-smile@2.9.8" + }, + { + "nodeId": "org.yaml:snakeyaml@1.23" + }, + { + "nodeId": "org.elasticsearch:elasticsearch-core@7.14.0" + } + ] + }, + { + "nodeId": "org.apache.lucene:lucene-grouping@8.9.0", + "pkgId": "org.apache.lucene:lucene-grouping@8.9.0", + "deps": [] + }, + { + "nodeId": "org.apache.lucene:lucene-join@8.9.0", + "pkgId": "org.apache.lucene:lucene-join@8.9.0", + "deps": [] + }, + { + "nodeId": "org.apache.logging.log4j:log4j-api@2.17.1", + "pkgId": "org.apache.logging.log4j:log4j-api@2.17.1", + "deps": [] + }, + { + "nodeId": "com.carrotsearch:hppc@0.8.1", + "pkgId": "com.carrotsearch:hppc@0.8.1", + "deps": [] + }, + { + "nodeId": "org.apache.lucene:lucene-sandbox@8.9.0", + "pkgId": "org.apache.lucene:lucene-sandbox@8.9.0", + "deps": [] + }, + { + "nodeId": "org.apache.lucene:lucene-backward-codecs@8.9.0", + "pkgId": "org.apache.lucene:lucene-backward-codecs@8.9.0", + "deps": [] + }, + { + "nodeId": "org.apache.lucene:lucene-spatial-extras@8.9.0", + "pkgId": "org.apache.lucene:lucene-spatial-extras@8.9.0", + "deps": [] + }, + { + "nodeId": "org.apache.lucene:lucene-spatial3d@8.9.0", + "pkgId": "org.apache.lucene:lucene-spatial3d@8.9.0", + "deps": [] + }, + { + "nodeId": "org.apache.lucene:lucene-misc@8.9.0", + "pkgId": "org.apache.lucene:lucene-misc@8.9.0", + "deps": [] + }, + { + "nodeId": "org.elasticsearch:elasticsearch-geo@7.14.0", + "pkgId": "org.elasticsearch:elasticsearch-geo@7.14.0", + "deps": [] + }, + { + "nodeId": "org.apache.lucene:lucene-analyzers-common@8.9.0", + "pkgId": "org.apache.lucene:lucene-analyzers-common@8.9.0", + "deps": [] + }, + { + "nodeId": "org.apache.lucene:lucene-memory@8.9.0", + "pkgId": "org.apache.lucene:lucene-memory@8.9.0", + "deps": [] + }, + { + "nodeId": "org.apache.lucene:lucene-queries@8.9.0", + "pkgId": "org.apache.lucene:lucene-queries@8.9.0", + "deps": [] + }, + { + "nodeId": "org.elasticsearch:elasticsearch-secure-sm@7.14.0", + "pkgId": "org.elasticsearch:elasticsearch-secure-sm@7.14.0", + "deps": [] + }, + { + "nodeId": "org.elasticsearch:elasticsearch-plugin-classloader@7.14.0", + "pkgId": "org.elasticsearch:elasticsearch-plugin-classloader@7.14.0", + "deps": [] + }, + { + "nodeId": "org.apache.lucene:lucene-queryparser@8.9.0", + "pkgId": "org.apache.lucene:lucene-queryparser@8.9.0", + "deps": [] + }, + { + "nodeId": "org.elasticsearch.plugin:rank-eval-client@7.14.0", + "pkgId": "org.elasticsearch.plugin:rank-eval-client@7.14.0", + "deps": [] + }, + { + "nodeId": "org.opensearch.client:opensearch-rest-client@1.1.0", + "pkgId": "org.opensearch.client:opensearch-rest-client@1.1.0", + "deps": [ + { + "nodeId": "org.apache.httpcomponents:httpcore-nio@4.4.13" + }, + { + "nodeId": "commons-logging:commons-logging@1.2" + }, + { + "nodeId": "org.apache.httpcomponents:httpasyncclient@4.1.4" + } + ] + }, + { + "nodeId": "org.opensearch.client:opensearch-rest-high-level-client@1.1.0", + "pkgId": "org.opensearch.client:opensearch-rest-high-level-client@1.1.0", + "deps": [ + { + "nodeId": "org.opensearch.plugin:aggs-matrix-stats-client@1.1.0" + }, + { + "nodeId": "org.opensearch.plugin:lang-mustache-client@1.1.0" + }, + { + "nodeId": "org.opensearch.client:opensearch-rest-client@1.1.0" + }, + { + "nodeId": "org.opensearch.plugin:mapper-extras-client@1.1.0" + }, + { + "nodeId": "org.opensearch:opensearch@1.1.0" + }, + { + "nodeId": "org.opensearch.plugin:rank-eval-client@1.1.0" + }, + { + "nodeId": "org.opensearch.plugin:parent-join-client@1.1.0" + } + ] + }, + { + "nodeId": "org.opensearch.plugin:aggs-matrix-stats-client@1.1.0", + "pkgId": "org.opensearch.plugin:aggs-matrix-stats-client@1.1.0", + "deps": [] + }, + { + "nodeId": "org.opensearch.plugin:lang-mustache-client@1.1.0", + "pkgId": "org.opensearch.plugin:lang-mustache-client@1.1.0", + "deps": [ + { + "nodeId": "com.github.spullara.mustache.java:compiler@0.9.6" + } + ] + }, + { + "nodeId": "org.opensearch.plugin:mapper-extras-client@1.1.0", + "pkgId": "org.opensearch.plugin:mapper-extras-client@1.1.0", + "deps": [] + }, + { + "nodeId": "org.opensearch:opensearch@1.1.0", + "pkgId": "org.opensearch:opensearch@1.1.0", + "deps": [ + { + "nodeId": "org.apache.lucene:lucene-suggest@8.9.0" + }, + { + "nodeId": "org.elasticsearch:jna@5.7.0-1" + }, + { + "nodeId": "org.opensearch:opensearch-cli@1.1.0" + }, + { + "nodeId": "org.apache.lucene:lucene-highlighter@8.9.0" + }, + { + "nodeId": "com.tdunning:t-digest@3.2" + }, + { + "nodeId": "org.opensearch:opensearch-geo@1.1.0" + }, + { + "nodeId": "org.opensearch:opensearch-core@1.1.0" + }, + { + "nodeId": "org.apache.lucene:lucene-core@8.9.0" + }, + { + "nodeId": "org.opensearch:opensearch-secure-sm@1.1.0" + }, + { + "nodeId": "org.apache.lucene:lucene-grouping@8.9.0" + }, + { + "nodeId": "org.apache.lucene:lucene-join@8.9.0" + }, + { + "nodeId": "org.apache.logging.log4j:log4j-api@2.17.1" + }, + { + "nodeId": "com.carrotsearch:hppc@0.8.1" + }, + { + "nodeId": "org.apache.lucene:lucene-sandbox@8.9.0" + }, + { + "nodeId": "org.apache.lucene:lucene-backward-codecs@8.9.0" + }, + { + "nodeId": "org.apache.lucene:lucene-spatial-extras@8.9.0" + }, + { + "nodeId": "org.apache.lucene:lucene-spatial3d@8.9.0" + }, + { + "nodeId": "org.apache.lucene:lucene-misc@8.9.0" + }, + { + "nodeId": "org.apache.lucene:lucene-analyzers-common@8.9.0" + }, + { + "nodeId": "org.apache.lucene:lucene-memory@8.9.0" + }, + { + "nodeId": "org.apache.lucene:lucene-queries@8.9.0" + }, + { + "nodeId": "joda-time:joda-time@2.9.2" + }, + { + "nodeId": "org.hdrhistogram:HdrHistogram@2.1.12" + }, + { + "nodeId": "org.opensearch:opensearch-x-content@1.1.0" + }, + { + "nodeId": "org.apache.lucene:lucene-queryparser@8.9.0" + } + ] + }, + { + "nodeId": "org.opensearch:opensearch-cli@1.1.0", + "pkgId": "org.opensearch:opensearch-cli@1.1.0", + "deps": [ + { + "nodeId": "net.sf.jopt-simple:jopt-simple@5.0.4" + }, + { + "nodeId": "org.opensearch:opensearch-core@1.1.0" + } + ] + }, + { + "nodeId": "org.opensearch:opensearch-core@1.1.0", + "pkgId": "org.opensearch:opensearch-core@1.1.0", + "deps": [] + }, + { + "nodeId": "org.opensearch:opensearch-geo@1.1.0", + "pkgId": "org.opensearch:opensearch-geo@1.1.0", + "deps": [] + }, + { + "nodeId": "org.opensearch:opensearch-secure-sm@1.1.0", + "pkgId": "org.opensearch:opensearch-secure-sm@1.1.0", + "deps": [] + }, + { + "nodeId": "org.opensearch:opensearch-x-content@1.1.0", + "pkgId": "org.opensearch:opensearch-x-content@1.1.0", + "deps": [ + { + "nodeId": "org.opensearch:opensearch-core@1.1.0" + }, + { + "nodeId": "com.fasterxml.jackson.dataformat:jackson-dataformat-cbor@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.dataformat:jackson-dataformat-yaml@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.dataformat:jackson-dataformat-smile@2.9.8" + }, + { + "nodeId": "org.yaml:snakeyaml@1.23" + } + ] + }, + { + "nodeId": "org.opensearch.plugin:rank-eval-client@1.1.0", + "pkgId": "org.opensearch.plugin:rank-eval-client@1.1.0", + "deps": [] + }, + { + "nodeId": "org.opensearch.plugin:parent-join-client@1.1.0", + "pkgId": "org.opensearch.plugin:parent-join-client@1.1.0", + "deps": [] + }, + { + "nodeId": "//integrations/eloqua:main@bazel", + "pkgId": "//integrations/eloqua:main@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/email:main@bazel", + "pkgId": "//integrations/email:main@bazel", + "deps": [ + { + "nodeId": "//integrations/file:main@bazel" + }, + { + "nodeId": "//integrations/s3:main@bazel" + }, + { + "nodeId": "javax.mail:mail@1.4.5" + }, + { + "nodeId": "org.apache.commons:commons-compress@1.16" + } + ] + }, + { + "nodeId": "javax.mail:mail@1.4.5", + "pkgId": "javax.mail:mail@1.4.5", + "deps": [ + { + "nodeId": "javax.activation:activation@1.1" + } + ] + }, + { + "nodeId": "//integrations/facebook:main@bazel", + "pkgId": "//integrations/facebook:main@bazel", + "deps": [ + { + "nodeId": "//integrations/cube:main@bazel" + }, + { + "nodeId": "//utils/validations:main@bazel" + }, + { + "nodeId": "org.eclipse.jetty:jetty-util@9.4.40.v20210413" + } + ] + }, + { + "nodeId": "//integrations/acmecorp_log:main@bazel", + "pkgId": "//integrations/acmecorp_log:main@bazel", + "deps": [ + { + "nodeId": "//services:main@bazel" + }, + { + "nodeId": "com.google.cloud:google-cloud-storage@1.108.0" + }, + { + "nodeId": "org.apache.logging.log4j:log4j-core@2.17.1" + }, + { + "nodeId": "org.json:json@20171018" + } + ] + }, + { + "nodeId": "org.apache.logging.log4j:log4j-core@2.17.1", + "pkgId": "org.apache.logging.log4j:log4j-core@2.17.1", + "deps": [ + { + "nodeId": "org.apache.logging.log4j:log4j-api@2.17.1" + } + ] + }, + { + "nodeId": "//integrations/freshdesk:main@bazel", + "pkgId": "//integrations/freshdesk:main@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/freshservice_classic:main@bazel", + "pkgId": "//integrations/freshservice_classic:main@bazel", + "deps": [ + { + "nodeId": "org.apache.commons:commons-collections4@4.1" + } + ] + }, + { + "nodeId": "//integrations/front:main@bazel", + "pkgId": "//integrations/front:main@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/functions/aws_lambda:main@bazel", + "pkgId": "//integrations/functions/aws_lambda:main@bazel", + "deps": [ + { + "nodeId": "//database:enums@bazel" + }, + { + "nodeId": "//integrations/functions/common:main@bazel" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-lambda@1.12.84" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-sts@1.12.84" + } + ] + }, + { + "nodeId": "//integrations/functions/common:main@bazel", + "pkgId": "//integrations/functions/common:main@bazel", + "deps": [] + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-lambda@1.12.84", + "pkgId": "com.amazonaws:aws-java-sdk-lambda@1.12.84", + "deps": [ + { + "nodeId": "com.amazonaws:jmespath-java@1.11.91" + } + ] + }, + { + "nodeId": "//integrations/functions/azure_function:main@bazel", + "pkgId": "//integrations/functions/azure_function:main@bazel", + "deps": [ + { + "nodeId": "//integrations/functions/common:main@bazel" + } + ] + }, + { + "nodeId": "//integrations/functions/google_cloud_function:main@bazel", + "pkgId": "//integrations/functions/google_cloud_function:main@bazel", + "deps": [ + { + "nodeId": "//integrations/functions/common:main@bazel" + }, + { + "nodeId": "io.jsonwebtoken:jjwt@0.9.0" + } + ] + }, + { + "nodeId": "//integrations/gcs:main@bazel", + "pkgId": "//integrations/gcs:main@bazel", + "deps": [ + { + "nodeId": "//integrations/file:main@bazel" + }, + { + "nodeId": "com.google.apis:google-api-services-storage@v1-rev20200326-1.30.9" + } + ] + }, + { + "nodeId": "//integrations/gainsight_customer_success:main@bazel", + "pkgId": "//integrations/gainsight_customer_success:main@bazel", + "deps": [ + { + "nodeId": "org.json:json@20171018" + } + ] + }, + { + "nodeId": "//integrations/gdrive:main@bazel", + "pkgId": "//integrations/gdrive:main@bazel", + "deps": [ + { + "nodeId": "//integrations/file:main@bazel" + }, + { + "nodeId": "//integrations/gsheets:main@bazel" + }, + { + "nodeId": "com.google.apis:google-api-services-drive@v3-rev197-1.25.0" + }, + { + "nodeId": "com.google.http-client:google-http-client-jackson2@1.35.0" + }, + { + "nodeId": "com.google.oauth-client:google-oauth-client-jetty@1.23.0" + } + ] + }, + { + "nodeId": "//integrations/gsheets:main@bazel", + "pkgId": "//integrations/gsheets:main@bazel", + "deps": [ + { + "nodeId": "//services:ab_tests@bazel" + } + ] + }, + { + "nodeId": "com.google.apis:google-api-services-drive@v3-rev197-1.25.0", + "pkgId": "com.google.apis:google-api-services-drive@v3-rev197-1.25.0", + "deps": [] + }, + { + "nodeId": "com.google.oauth-client:google-oauth-client-jetty@1.23.0", + "pkgId": "com.google.oauth-client:google-oauth-client-jetty@1.23.0", + "deps": [ + { + "nodeId": "com.google.oauth-client:google-oauth-client-java6@1.23.0" + }, + { + "nodeId": "org.mortbay.jetty:jetty@6.1.26" + } + ] + }, + { + "nodeId": "com.google.oauth-client:google-oauth-client-java6@1.23.0", + "pkgId": "com.google.oauth-client:google-oauth-client-java6@1.23.0", + "deps": [] + }, + { + "nodeId": "//integrations/github:main@bazel", + "pkgId": "//integrations/github:main@bazel", + "deps": [ + { + "nodeId": "com.fasterxml.jackson.dataformat:jackson-dataformat-smile@2.9.8" + } + ] + }, + { + "nodeId": "//integrations/google_ad_manager:main@bazel", + "pkgId": "//integrations/google_ad_manager:main@bazel", + "deps": [ + { + "nodeId": "//integrations/cube:main@bazel" + }, + { + "nodeId": "//xml_util:main@bazel" + }, + { + "nodeId": "javax.xml.bind:jaxb-api@2.2.2" + } + ] + }, + { + "nodeId": "//integrations/google_analytics:main@bazel", + "pkgId": "//integrations/google_analytics:main@bazel", + "deps": [ + { + "nodeId": "//http:curl_request@bazel" + }, + { + "nodeId": "//integrations/cube:main@bazel" + }, + { + "nodeId": "//util:rest_api@bazel" + }, + { + "nodeId": "//utils/time:acmecorp_clock@bazel" + }, + { + "nodeId": "//utils/token_api:main@bazel" + } + ] + }, + { + "nodeId": "//util:rest_api@bazel", + "pkgId": "//util:rest_api@bazel", + "deps": [ + { + "nodeId": "com.fasterxml.jackson.dataformat:jackson-dataformat-yaml@2.9.8" + }, + { + "nodeId": "io.netty:netty-buffer@4.1.50.Final" + }, + { + "nodeId": "org.jooq:jool-java-8@0.9.14" + } + ] + }, + { + "nodeId": "//utils/time:acmecorp_clock@bazel", + "pkgId": "//utils/time:acmecorp_clock@bazel", + "deps": [] + }, + { + "nodeId": "//utils/token_api:main@bazel", + "pkgId": "//utils/token_api:main@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/google_analytics_4:main@bazel", + "pkgId": "//integrations/google_analytics_4:main@bazel", + "deps": [ + { + "nodeId": "//http:curl_request@bazel" + }, + { + "nodeId": "//utils/token_api:main@bazel" + } + ] + }, + { + "nodeId": "//integrations/google_analytics_4_export:main@bazel", + "pkgId": "//integrations/google_analytics_4_export:main@bazel", + "deps": [ + { + "nodeId": "//integrations/google_analytics_360:main@bazel" + }, + { + "nodeId": "com.google.apis:google-api-services-bigquery@v2-rev459-1.25.0" + }, + { + "nodeId": "com.google.cloud:google-cloud-bigquery@1.48.0" + }, + { + "nodeId": "com.google.cloud:google-cloud-storage@1.108.0" + } + ] + }, + { + "nodeId": "//integrations/google_analytics_360:main@bazel", + "pkgId": "//integrations/google_analytics_360:main@bazel", + "deps": [ + { + "nodeId": "com.google.apis:google-api-services-bigquery@v2-rev459-1.25.0" + }, + { + "nodeId": "com.google.cloud:google-cloud-bigquery@1.48.0" + }, + { + "nodeId": "com.google.cloud:google-cloud-storage@1.108.0" + } + ] + }, + { + "nodeId": "//integrations/google_display_and_video_360:main@bazel", + "pkgId": "//integrations/google_display_and_video_360:main@bazel", + "deps": [ + { + "nodeId": "//integrations/cube:main@bazel" + }, + { + "nodeId": "//utils/token_api:main@bazel" + } + ] + }, + { + "nodeId": "//integrations/google_search_ads_360:main@bazel", + "pkgId": "//integrations/google_search_ads_360:main@bazel", + "deps": [ + { + "nodeId": "//integrations/cube:main@bazel" + }, + { + "nodeId": "//utils/token_api:main@bazel" + } + ] + }, + { + "nodeId": "//integrations/google_play:main@bazel", + "pkgId": "//integrations/google_play:main@bazel", + "deps": [ + { + "nodeId": "//integrations/file:main@bazel" + }, + { + "nodeId": "//integrations/gcs:main@bazel" + }, + { + "nodeId": "com.google.apis:google-api-services-storage@v1-rev20200326-1.30.9" + } + ] + }, + { + "nodeId": "//integrations/google_search_console:main@bazel", + "pkgId": "//integrations/google_search_console:main@bazel", + "deps": [ + { + "nodeId": "//http:curl_request@bazel" + }, + { + "nodeId": "//utils/token_api:main@bazel" + } + ] + }, + { + "nodeId": "//integrations/greenhouse:main@bazel", + "pkgId": "//integrations/greenhouse:main@bazel", + "deps": [ + { + "nodeId": "//ecomm:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.dataformat:jackson-dataformat-smile@2.9.8" + } + ] + }, + { + "nodeId": "//integrations/heap:main@bazel", + "pkgId": "//integrations/heap:main@bazel", + "deps": [ + { + "nodeId": "//integrations/file:main@bazel" + }, + { + "nodeId": "org.apache.avro:avro@1.11.0" + } + ] + }, + { + "nodeId": "//integrations/height:main@bazel", + "pkgId": "//integrations/height:main@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/helpscout:main@bazel", + "pkgId": "//integrations/helpscout:main@bazel", + "deps": [ + { + "nodeId": "//webhook/utils:main@bazel" + }, + { + "nodeId": "org.json:json@20171018" + } + ] + }, + { + "nodeId": "//integrations/hubspot:main@bazel", + "pkgId": "//integrations/hubspot:main@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/instagram:main@bazel", + "pkgId": "//integrations/instagram:main@bazel", + "deps": [ + { + "nodeId": "org.assertj:assertj-core@3.14.0" + } + ] + }, + { + "nodeId": "org.assertj:assertj-core@3.14.0", + "pkgId": "org.assertj:assertj-core@3.14.0", + "deps": [] + }, + { + "nodeId": "//integrations/intercom:main@bazel", + "pkgId": "//integrations/intercom:main@bazel", + "deps": [ + { + "nodeId": "com.google.cloud:google-cloud-storage@1.108.0" + } + ] + }, + { + "nodeId": "//integrations/iterable:main@bazel", + "pkgId": "//integrations/iterable:main@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/itunes_connect:main@bazel", + "pkgId": "//integrations/itunes_connect:main@bazel", + "deps": [ + { + "nodeId": "//dockerized/google_cloud/datastore:main@bazel" + }, + { + "nodeId": "//integrations/cube:main@bazel" + }, + { + "nodeId": "//xml_util:main@bazel" + }, + { + "nodeId": "com.google.cloud:google-cloud-datastore@1.70.0" + }, + { + "nodeId": "com.google.code.gson:gson@2.9.0" + }, + { + "nodeId": "javax.xml.bind:jaxb-api@2.2.2" + }, + { + "nodeId": "junit:junit@4.13" + }, + { + "nodeId": "net.lingala.zip4j:zip4j@1.3.2" + }, + { + "nodeId": "org.mockito:mockito-core@2.28.2" + } + ] + }, + { + "nodeId": "//dockerized/google_cloud/datastore:main@bazel", + "pkgId": "//dockerized/google_cloud/datastore:main@bazel", + "deps": [ + { + "nodeId": "//dockerized/common:main@bazel" + } + ] + }, + { + "nodeId": "net.lingala.zip4j:zip4j@1.3.2", + "pkgId": "net.lingala.zip4j:zip4j@1.3.2", + "deps": [] + }, + { + "nodeId": "//integrations/jira:main@bazel", + "pkgId": "//integrations/jira:main@bazel", + "deps": [ + { + "nodeId": "//core_implementation:standard_renaming_filter_2@bazel" + }, + { + "nodeId": "//webhook/utils:main@bazel" + }, + { + "nodeId": "joda-time:joda-time@2.9.2" + }, + { + "nodeId": "org.apache.commons:commons-collections4@4.1" + }, + { + "nodeId": "org.glassfish.jersey.security:oauth1-client@2.31" + } + ] + }, + { + "nodeId": "//core_implementation:standard_renaming_filter_2@bazel", + "pkgId": "//core_implementation:standard_renaming_filter_2@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/kinesis:main@bazel", + "pkgId": "//integrations/kinesis:main@bazel", + "deps": [ + { + "nodeId": "//integrations/file:main@bazel" + }, + { + "nodeId": "//integrations/s3:main@bazel" + } + ] + }, + { + "nodeId": "//integrations/klaviyo:main@bazel", + "pkgId": "//integrations/klaviyo:main@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/kustomer:main@bazel", + "pkgId": "//integrations/kustomer:main@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/lever:main@bazel", + "pkgId": "//integrations/lever:main@bazel", + "deps": [ + { + "nodeId": "//ecomm:main@bazel" + } + ] + }, + { + "nodeId": "//integrations/lightspeed_retail:main@bazel", + "pkgId": "//integrations/lightspeed_retail:main@bazel", + "deps": [ + { + "nodeId": "org.json:json@20171018" + } + ] + }, + { + "nodeId": "//integrations/linkedin:main@bazel", + "pkgId": "//integrations/linkedin:main@bazel", + "deps": [ + { + "nodeId": "//integrations/cube:main@bazel" + }, + { + "nodeId": "jakarta.annotation:jakarta.annotation-api@1.3.5" + } + ] + }, + { + "nodeId": "//integrations/mailchimp:main@bazel", + "pkgId": "//integrations/mailchimp:main@bazel", + "deps": [ + { + "nodeId": "org.json:json@20171018" + } + ] + }, + { + "nodeId": "//integrations/mandrill:main@bazel", + "pkgId": "//integrations/mandrill:main@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/marin:main@bazel", + "pkgId": "//integrations/marin:main@bazel", + "deps": [ + { + "nodeId": "//integrations/cube:main@bazel" + }, + { + "nodeId": "//integrations/file:main@bazel" + }, + { + "nodeId": "//integrations/sftp:main@bazel" + }, + { + "nodeId": "@jsch_patched//:main@bazel" + } + ] + }, + { + "nodeId": "//integrations/sftp:main@bazel", + "pkgId": "//integrations/sftp:main@bazel", + "deps": [ + { + "nodeId": "//integrations/file:main@bazel" + }, + { + "nodeId": "//ip_utils:main@bazel" + }, + { + "nodeId": "//port_forwarder:main@bazel" + }, + { + "nodeId": "//utils/fsort:main@bazel" + }, + { + "nodeId": "@jsch_patched//:main@bazel" + } + ] + }, + { + "nodeId": "//integrations/marketo:main@bazel", + "pkgId": "//integrations/marketo:main@bazel", + "deps": [ + { + "nodeId": "//size:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.dataformat:jackson-dataformat-xml@2.9.8" + }, + { + "nodeId": "com.sun.xml.bind:jaxb-impl@2.2.11" + }, + { + "nodeId": "com.sun.xml.messaging.saaj:saaj-impl@1.3.25" + }, + { + "nodeId": "javax.xml.bind:jaxb-api@2.2.2" + }, + { + "nodeId": "javax.xml.soap:javax.xml.soap-api@1.4.0" + } + ] + }, + { + "nodeId": "//size:main@bazel", + "pkgId": "//size:main@bazel", + "deps": [] + }, + { + "nodeId": "com.sun.xml.messaging.saaj:saaj-impl@1.3.25", + "pkgId": "com.sun.xml.messaging.saaj:saaj-impl@1.3.25", + "deps": [ + { + "nodeId": "javax.xml.soap:javax.xml.soap-api@1.4.0" + }, + { + "nodeId": "org.jvnet.mimepull:mimepull@1.9.6" + }, + { + "nodeId": "org.jvnet.staxex:stax-ex@1.7.7" + } + ] + }, + { + "nodeId": "org.jvnet.mimepull:mimepull@1.9.6", + "pkgId": "org.jvnet.mimepull:mimepull@1.9.6", + "deps": [] + }, + { + "nodeId": "org.jvnet.staxex:stax-ex@1.7.7", + "pkgId": "org.jvnet.staxex:stax-ex@1.7.7", + "deps": [ + { + "nodeId": "javax.activation:activation@1.1" + }, + { + "nodeId": "javax.xml.stream:stax-api@1.0-2" + } + ] + }, + { + "nodeId": "//integrations/mavenlink:main@bazel", + "pkgId": "//integrations/mavenlink:main@bazel", + "deps": [ + { + "nodeId": "javax.validation:validation-api@1.1.0.Final" + } + ] + }, + { + "nodeId": "//integrations/medallia:main@bazel", + "pkgId": "//integrations/medallia:main@bazel", + "deps": [ + { + "nodeId": "//http_client:main@bazel" + }, + { + "nodeId": "org.jetbrains:annotations@17.0.0" + } + ] + }, + { + "nodeId": "//http_client:main@bazel", + "pkgId": "//http_client:main@bazel", + "deps": [ + { + "nodeId": "io.github.resilience4j:resilience4j-core@1.7.1" + }, + { + "nodeId": "io.github.resilience4j:resilience4j-retry@1.7.1" + } + ] + }, + { + "nodeId": "io.github.resilience4j:resilience4j-core@1.7.1", + "pkgId": "io.github.resilience4j:resilience4j-core@1.7.1", + "deps": [ + { + "nodeId": "io.vavr:vavr@0.10.2" + } + ] + }, + { + "nodeId": "io.vavr:vavr@0.10.2", + "pkgId": "io.vavr:vavr@0.10.2", + "deps": [ + { + "nodeId": "io.vavr:vavr-match@0.10.2" + } + ] + }, + { + "nodeId": "io.vavr:vavr-match@0.10.2", + "pkgId": "io.vavr:vavr-match@0.10.2", + "deps": [] + }, + { + "nodeId": "io.github.resilience4j:resilience4j-retry@1.7.1", + "pkgId": "io.github.resilience4j:resilience4j-retry@1.7.1", + "deps": [ + { + "nodeId": "io.github.resilience4j:resilience4j-core@1.7.1" + }, + { + "nodeId": "io.vavr:vavr@0.10.2" + } + ] + }, + { + "nodeId": "//integrations/microsoft_lists:main@bazel", + "pkgId": "//integrations/microsoft_lists:main@bazel", + "deps": [ + { + "nodeId": "//integrations/azure_consumer_file:main@bazel" + } + ] + }, + { + "nodeId": "//integrations/mixpanel:main@bazel", + "pkgId": "//integrations/mixpanel:main@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/mysql:main@bazel", + "pkgId": "//integrations/mysql:main@bazel", + "deps": [ + { + "nodeId": "//core_implementation:main@bazel" + }, + { + "nodeId": "//database:tls_verify@bazel" + }, + { + "nodeId": "//geo:main@bazel" + }, + { + "nodeId": "//integrations/configuration_tracker:main@bazel" + }, + { + "nodeId": "//integrations/speed_test:main@bazel" + }, + { + "nodeId": "//port_forwarder:main@bazel" + }, + { + "nodeId": "//secred/common:main@bazel" + }, + { + "nodeId": "//services:ab_tests@bazel" + }, + { + "nodeId": "//slack:main@bazel" + }, + { + "nodeId": "//teleport:main@bazel" + }, + { + "nodeId": "//utils/serializers:main@bazel" + }, + { + "nodeId": "//utils/sync_statistics:main@bazel" + }, + { + "nodeId": "//utils/validations:main@bazel" + }, + { + "nodeId": "//verification:main@bazel" + }, + { + "nodeId": "com.github.jsqlparser:jsqlparser@4.2" + }, + { + "nodeId": "com.walkmind.extensions:collections@1.20" + }, + { + "nodeId": "com.zaxxer:HikariCP@3.4.1" + }, + { + "nodeId": "io.netty:netty-buffer@4.1.50.Final" + }, + { + "nodeId": "mysql:mysql-connector-java@8.0.13" + }, + { + "nodeId": "org.jeasy:easy-rules-core@4.1.0" + }, + { + "nodeId": "org.mariadb.jdbc:mariadb-java-client@2.5.4" + }, + { + "nodeId": "org.rocksdb:rocksdbjni@6.8.1" + }, + { + "nodeId": "@mysql_binlog_connector//:main@bazel" + } + ] + }, + { + "nodeId": "//integrations/optimizely:main@bazel", + "pkgId": "//integrations/optimizely:main@bazel", + "deps": [ + { + "nodeId": "//integrations/file:main@bazel" + }, + { + "nodeId": "org.apache.avro:avro@1.11.0" + }, + { + "nodeId": "org.apache.hadoop:hadoop-auth@2.7.7" + }, + { + "nodeId": "org.apache.hadoop:hadoop-common@2.7.7" + }, + { + "nodeId": "org.apache.hadoop:hadoop-mapreduce-client-core@2.7.7" + }, + { + "nodeId": "org.apache.parquet:parquet-avro@1.12.2" + }, + { + "nodeId": "org.apache.parquet:parquet-column@1.12.2" + }, + { + "nodeId": "org.apache.parquet:parquet-common@1.12.2" + }, + { + "nodeId": "org.apache.parquet:parquet-hadoop@1.12.2" + } + ] + }, + { + "nodeId": "//integrations/oracle_cloud_apps_cx:main@bazel", + "pkgId": "//integrations/oracle_cloud_apps_cx:main@bazel", + "deps": [ + { + "nodeId": "//dblike:main@bazel" + }, + { + "nodeId": "//integrations/oracle_cloud_apps:main@bazel" + } + ] + }, + { + "nodeId": "//integrations/oracle_cloud_apps:main@bazel", + "pkgId": "//integrations/oracle_cloud_apps:main@bazel", + "deps": [ + { + "nodeId": "//dblike:main@bazel" + } + ] + }, + { + "nodeId": "//integrations/oracle_cloud_apps_erp_scm:main@bazel", + "pkgId": "//integrations/oracle_cloud_apps_erp_scm:main@bazel", + "deps": [ + { + "nodeId": "//dblike:main@bazel" + }, + { + "nodeId": "//integrations/oracle_cloud_apps:main@bazel" + } + ] + }, + { + "nodeId": "//integrations/oracle_fusion_cloud_apps:main@bazel", + "pkgId": "//integrations/oracle_fusion_cloud_apps:main@bazel", + "deps": [ + { + "nodeId": "//dblike:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.dataformat:jackson-dataformat-xml@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-xml-provider@2.9.8" + }, + { + "nodeId": "com.opencsv:opencsv@4.1" + }, + { + "nodeId": "com.sun.xml.messaging.saaj:saaj-impl@1.3.25" + }, + { + "nodeId": "javax.activation:activation@1.1" + }, + { + "nodeId": "javax.mail:mail@1.4.5" + }, + { + "nodeId": "javax.xml.bind:jaxb-api@2.2.2" + }, + { + "nodeId": "javax.xml.soap:javax.xml.soap-api@1.4.0" + }, + { + "nodeId": "org.glassfish.jersey.media:jersey-media-multipart@2.31" + } + ] + }, + { + "nodeId": "com.opencsv:opencsv@4.1", + "pkgId": "com.opencsv:opencsv@4.1", + "deps": [ + { + "nodeId": "commons-beanutils:commons-beanutils@1.9.2" + }, + { + "nodeId": "org.apache.commons:commons-text@1.1" + } + ] + }, + { + "nodeId": "org.apache.commons:commons-text@1.1", + "pkgId": "org.apache.commons:commons-text@1.1", + "deps": [] + }, + { + "nodeId": "org.glassfish.jersey.media:jersey-media-multipart@2.31", + "pkgId": "org.glassfish.jersey.media:jersey-media-multipart@2.31", + "deps": [ + { + "nodeId": "org.jvnet.mimepull:mimepull@1.9.6" + } + ] + }, + { + "nodeId": "//integrations/oracle:main@bazel", + "pkgId": "//integrations/oracle:main@bazel", + "deps": [ + { + "nodeId": "//database:tls_verify@bazel" + }, + { + "nodeId": "//integrations/configuration_tracker:main@bazel" + }, + { + "nodeId": "//integrations/debezium_sql_parser:main@bazel" + }, + { + "nodeId": "//integrations/hvr:main@bazel" + }, + { + "nodeId": "//integrations/hvr/hvr_tool:main@bazel" + }, + { + "nodeId": "//integrations/hvr/unserializer:main@bazel" + }, + { + "nodeId": "//integrations/speed_test:main@bazel" + }, + { + "nodeId": "//port_forwarder:oracle@bazel" + }, + { + "nodeId": "//schema_migration:schema_migration_info@bazel" + }, + { + "nodeId": "//services:ab_tests@bazel" + }, + { + "nodeId": "//teleport:main@bazel" + }, + { + "nodeId": "//utils/beans:main@bazel" + }, + { + "nodeId": "//utils/binary:main@bazel" + }, + { + "nodeId": "//utils/byte_array_list:main@bazel" + }, + { + "nodeId": "//utils/byte_array_list/sync_adapter:main@bazel" + }, + { + "nodeId": "//utils/cipher_adapter:main@bazel" + }, + { + "nodeId": "//utils/oracle:main@bazel" + }, + { + "nodeId": "//utils/run_shell:main@bazel" + }, + { + "nodeId": "//utils/segmented_input_stream:main@bazel" + }, + { + "nodeId": "//utils/serializers:main@bazel" + }, + { + "nodeId": "//utils/sleep_control:main@bazel" + }, + { + "nodeId": "//utils/socket_receiver:main@bazel" + }, + { + "nodeId": "//utils/sync_statistics:main@bazel" + }, + { + "nodeId": "@jsch_patched//:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.dataformat:jackson-dataformat-xml@2.9.8" + }, + { + "nodeId": "com.github.jsqlparser:jsqlparser@4.2" + }, + { + "nodeId": "com.walkmind.extensions:collections@1.20" + }, + { + "nodeId": "com.zaxxer:HikariCP@3.4.1" + }, + { + "nodeId": "io.netty:netty-buffer@4.1.50.Final" + }, + { + "nodeId": "org.jooq:jool-java-8@0.9.14" + } + ] + }, + { + "nodeId": "//integrations/debezium_sql_parser:main@bazel", + "pkgId": "//integrations/debezium_sql_parser:main@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/hvr:main@bazel", + "pkgId": "//integrations/hvr:main@bazel", + "deps": [ + { + "nodeId": "//database:tls_verify@bazel" + }, + { + "nodeId": "//integrations/configuration_tracker:main@bazel" + }, + { + "nodeId": "//integrations/debezium_sql_parser:main@bazel" + }, + { + "nodeId": "//integrations/hvr/hvr_tool:main@bazel" + }, + { + "nodeId": "//integrations/hvr/unserializer:main@bazel" + }, + { + "nodeId": "//integrations/speed_test:main@bazel" + }, + { + "nodeId": "//schema_migration:schema_migration_info@bazel" + }, + { + "nodeId": "//services:ab_tests@bazel" + }, + { + "nodeId": "//utils/beans:main@bazel" + }, + { + "nodeId": "//utils/binary:main@bazel" + }, + { + "nodeId": "//utils/cipher_adapter:main@bazel" + }, + { + "nodeId": "//utils/run_shell:main@bazel" + }, + { + "nodeId": "//utils/segmented_input_stream:main@bazel" + }, + { + "nodeId": "//utils/serializers:main@bazel" + }, + { + "nodeId": "//utils/sleep_control:main@bazel" + }, + { + "nodeId": "//utils/socket_receiver:main@bazel" + }, + { + "nodeId": "//utils/sync_statistics:main@bazel" + }, + { + "nodeId": "@jsch_patched//:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.dataformat:jackson-dataformat-xml@2.9.8" + }, + { + "nodeId": "com.github.jsqlparser:jsqlparser@4.2" + }, + { + "nodeId": "com.walkmind.extensions:collections@1.20" + }, + { + "nodeId": "com.zaxxer:HikariCP@3.4.1" + }, + { + "nodeId": "io.netty:netty-buffer@4.1.50.Final" + }, + { + "nodeId": "org.jooq:jool-java-8@0.9.14" + } + ] + }, + { + "nodeId": "//integrations/hvr/unserializer:main@bazel", + "pkgId": "//integrations/hvr/unserializer:main@bazel", + "deps": [ + { + "nodeId": "//utils/binary:main@bazel" + } + ] + }, + { + "nodeId": "//port_forwarder:oracle@bazel", + "pkgId": "//port_forwarder:oracle@bazel", + "deps": [ + { + "nodeId": "//verification:main@bazel" + }, + { + "nodeId": "//utils/oracle:main@bazel" + }, + { + "nodeId": "//database:tls_verify@bazel" + }, + { + "nodeId": "//aws:instance_id@bazel" + }, + { + "nodeId": "//dynamo:main@bazel" + }, + { + "nodeId": "//database:postgresql_jdbc_fix@bazel" + }, + { + "nodeId": "@jsch_patched//:main@bazel" + }, + { + "nodeId": "org.eclipse.jetty:jetty-server@9.4.40.v20210413" + }, + { + "nodeId": "org.eclipse.jetty:jetty-servlet@9.4.40.v20210413" + }, + { + "nodeId": "org.glassfish.jersey.containers:jersey-container-servlet-core@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-server@2.31" + }, + { + "nodeId": "org.bouncycastle:bcpkix-jdk15on@1.70" + } + ] + }, + { + "nodeId": "//utils/byte_array_list/sync_adapter:main@bazel", + "pkgId": "//utils/byte_array_list/sync_adapter:main@bazel", + "deps": [ + { + "nodeId": "//utils/byte_array_list:main@bazel" + } + ] + }, + { + "nodeId": "//integrations/oracle_hva:main@bazel", + "pkgId": "//integrations/oracle_hva:main@bazel", + "deps": [ + { + "nodeId": "//database:postgresql_jdbc_fix@bazel" + }, + { + "nodeId": "//integrations/hvr/hvr_tool:main@bazel" + }, + { + "nodeId": "com.walkmind.extensions:collections@1.20" + }, + { + "nodeId": "com.zaxxer:HikariCP@3.4.1" + }, + { + "nodeId": "io.netty:netty-buffer@4.1.50.Final" + }, + { + "nodeId": "org.jooq:jool-java-8@0.9.14" + }, + { + "nodeId": "org.postgresql:postgresql@42.3.3" + } + ] + }, + { + "nodeId": "//integrations/oracle_hva2:main@bazel", + "pkgId": "//integrations/oracle_hva2:main@bazel", + "deps": [ + { + "nodeId": "//database:tls_verify@bazel" + }, + { + "nodeId": "//integrations/configuration_tracker:main@bazel" + }, + { + "nodeId": "//integrations/hvr:main@bazel" + }, + { + "nodeId": "//integrations/hvr/hvr_tool:main@bazel" + }, + { + "nodeId": "//integrations/hvr/unserializer:main@bazel" + }, + { + "nodeId": "//integrations/oracle:main@bazel" + }, + { + "nodeId": "//integrations/speed_test:main@bazel" + }, + { + "nodeId": "//schema_migration:schema_migration_info@bazel" + }, + { + "nodeId": "//services:ab_tests@bazel" + }, + { + "nodeId": "//teleport:main@bazel" + }, + { + "nodeId": "//utils/beans:main@bazel" + }, + { + "nodeId": "//utils/binary:main@bazel" + }, + { + "nodeId": "//utils/byte_array_list:main@bazel" + }, + { + "nodeId": "//utils/byte_array_list/sync_adapter:main@bazel" + }, + { + "nodeId": "//utils/cipher_adapter:main@bazel" + }, + { + "nodeId": "//utils/oracle:main@bazel" + }, + { + "nodeId": "//utils/run_shell:main@bazel" + }, + { + "nodeId": "//utils/segmented_input_stream:main@bazel" + }, + { + "nodeId": "//utils/serializers:main@bazel" + }, + { + "nodeId": "//utils/sleep_control:main@bazel" + }, + { + "nodeId": "//utils/socket_receiver:main@bazel" + }, + { + "nodeId": "//utils/sync_statistics:main@bazel" + }, + { + "nodeId": "@jsch_patched//:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.dataformat:jackson-dataformat-xml@2.9.8" + }, + { + "nodeId": "com.github.jsqlparser:jsqlparser@4.2" + }, + { + "nodeId": "com.walkmind.extensions:collections@1.20" + }, + { + "nodeId": "com.zaxxer:HikariCP@3.4.1" + }, + { + "nodeId": "io.netty:netty-buffer@4.1.50.Final" + }, + { + "nodeId": "org.jooq:jool-java-8@0.9.14" + } + ] + }, + { + "nodeId": "//integrations/outbrain:main@bazel", + "pkgId": "//integrations/outbrain:main@bazel", + "deps": [ + { + "nodeId": "javax.servlet:javax.servlet-api@3.1.0" + }, + { + "nodeId": "org.eclipse.jetty:jetty-server@9.4.40.v20210413" + }, + { + "nodeId": "org.eclipse.jetty:jetty-servlet@9.4.40.v20210413" + }, + { + "nodeId": "org.eclipse.jetty:jetty-servlets@9.4.40.v20210413" + }, + { + "nodeId": "org.eclipse.jetty:jetty-util@9.4.40.v20210413" + }, + { + "nodeId": "org.glassfish.jersey.containers:jersey-container-servlet@2.31" + }, + { + "nodeId": "org.glassfish.jersey.containers:jersey-container-servlet-core@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-server@2.31" + } + ] + }, + { + "nodeId": "org.eclipse.jetty:jetty-servlets@9.4.40.v20210413", + "pkgId": "org.eclipse.jetty:jetty-servlets@9.4.40.v20210413", + "deps": [ + { + "nodeId": "org.eclipse.jetty:jetty-continuation@9.4.40.v20210413" + }, + { + "nodeId": "org.eclipse.jetty:jetty-http@9.4.40.v20210413" + }, + { + "nodeId": "org.eclipse.jetty:jetty-io@9.4.40.v20210413" + }, + { + "nodeId": "org.eclipse.jetty:jetty-util@9.4.40.v20210413" + } + ] + }, + { + "nodeId": "org.eclipse.jetty:jetty-continuation@9.4.40.v20210413", + "pkgId": "org.eclipse.jetty:jetty-continuation@9.4.40.v20210413", + "deps": [] + }, + { + "nodeId": "org.glassfish.jersey.containers:jersey-container-servlet@2.31", + "pkgId": "org.glassfish.jersey.containers:jersey-container-servlet@2.31", + "deps": [ + { + "nodeId": "org.glassfish.jersey.containers:jersey-container-servlet-core@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-server@2.31" + } + ] + }, + { + "nodeId": "//integrations/outreach:main@bazel", + "pkgId": "//integrations/outreach:main@bazel", + "deps": [ + { + "nodeId": "//webhook/utils:main@bazel" + } + ] + }, + { + "nodeId": "//integrations/pardot:main@bazel", + "pkgId": "//integrations/pardot:main@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/paypal:main@bazel", + "pkgId": "//integrations/paypal:main@bazel", + "deps": [ + { + "nodeId": "org.apache.commons:commons-collections4@4.1" + }, + { + "nodeId": "org.json:json@20171018" + } + ] + }, + { + "nodeId": "//integrations/pendo:main@bazel", + "pkgId": "//integrations/pendo:main@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/pinterest:main@bazel", + "pkgId": "//integrations/pinterest:main@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/pipedrive:main@bazel", + "pkgId": "//integrations/pipedrive:main@bazel", + "deps": [ + { + "nodeId": "//ecomm:main@bazel" + }, + { + "nodeId": "//webhook/utils:main@bazel" + }, + { + "nodeId": "com.google.code.gson:gson@2.9.0" + } + ] + }, + { + "nodeId": "//integrations/postgres:main@bazel", + "pkgId": "//integrations/postgres:main@bazel", + "deps": [ + { + "nodeId": "//integrations/postgres:wal_java_proto@bazel" + }, + { + "nodeId": "//integrations/postgres2020:main@bazel" + }, + { + "nodeId": "//integrations/speed_test:main@bazel" + }, + { + "nodeId": "//port_forwarder:main@bazel" + }, + { + "nodeId": "//schema_migration:schema_migration_info@bazel" + }, + { + "nodeId": "//utils/serializers:main@bazel" + }, + { + "nodeId": "//utils/sync_statistics:main@bazel" + }, + { + "nodeId": "com.walkmind.extensions:collections@1.20" + }, + { + "nodeId": "com.zaxxer:HikariCP@3.4.1" + }, + { + "nodeId": "io.netty:netty-buffer@4.1.50.Final" + }, + { + "nodeId": "io.opentelemetry:opentelemetry-api@0.13.1" + }, + { + "nodeId": "io.opentelemetry:opentelemetry-api-trace@0.13.1" + }, + { + "nodeId": "io.opentelemetry:opentelemetry-extension-annotations@0.13.1" + }, + { + "nodeId": "org.postgresql:postgresql@42.3.3" + }, + { + "nodeId": "org.rocksdb:rocksdbjni@6.8.1" + } + ] + }, + { + "nodeId": "//integrations/postgres:wal_java_proto@bazel", + "pkgId": "//integrations/postgres:wal_java_proto@bazel", + "deps": [ + { + "nodeId": "//integrations/postgres:wal_proto@bazel" + } + ] + }, + { + "nodeId": "//integrations/postgres:wal_proto@bazel", + "pkgId": "//integrations/postgres:wal_proto@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/qualtrics:main@bazel", + "pkgId": "//integrations/qualtrics:main@bazel", + "deps": [ + { + "nodeId": "com.opencsv:opencsv@4.1" + } + ] + }, + { + "nodeId": "//integrations/quickbooks:main@bazel", + "pkgId": "//integrations/quickbooks:main@bazel", + "deps": [ + { + "nodeId": "org.glassfish.jersey.security:oauth1-client@2.31" + }, + { + "nodeId": "org.glassfish.jersey.security:oauth1-signature@2.31" + } + ] + }, + { + "nodeId": "//integrations/recharge:main@bazel", + "pkgId": "//integrations/recharge:main@bazel", + "deps": [ + { + "nodeId": "//ecomm:main@bazel" + }, + { + "nodeId": "//webhook/utils:main@bazel" + } + ] + }, + { + "nodeId": "//integrations/recurly:main@bazel", + "pkgId": "//integrations/recurly:main@bazel", + "deps": [ + { + "nodeId": "com.fasterxml.jackson.dataformat:jackson-dataformat-xml@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-xml-provider@2.9.8" + }, + { + "nodeId": "javax.xml.bind:jaxb-api@2.2.2" + }, + { + "nodeId": "org.json:json@20171018" + } + ] + }, + { + "nodeId": "//integrations/reddit:main@bazel", + "pkgId": "//integrations/reddit:main@bazel", + "deps": [ + { + "nodeId": "//utils/token_api:main@bazel" + }, + { + "nodeId": "//utils/validations:main@bazel" + } + ] + }, + { + "nodeId": "//integrations/sage_intacct:main@bazel", + "pkgId": "//integrations/sage_intacct:main@bazel", + "deps": [ + { + "nodeId": "com.alibaba:druid@1.1.16" + }, + { + "nodeId": "com.fasterxml.jackson.dataformat:jackson-dataformat-xml@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-xml-provider@2.9.8" + }, + { + "nodeId": "com.fasterxml.woodstox:woodstox-core@5.0.3" + }, + { + "nodeId": "com.google.cloud:google-cloud-storage@1.108.0" + }, + { + "nodeId": "javax.xml.stream:stax-api@1.0-2" + }, + { + "nodeId": "org.codehaus.woodstox:stax2-api@3.1.4" + }, + { + "nodeId": "org.eclipse.jetty:jetty-http@9.4.40.v20210413" + }, + { + "nodeId": "org.json:json@20171018" + }, + { + "nodeId": "stax:stax-api@1.0.1" + } + ] + }, + { + "nodeId": "com.alibaba:druid@1.1.16", + "pkgId": "com.alibaba:druid@1.1.16", + "deps": [] + }, + { + "nodeId": "//integrations/sailthru:main@bazel", + "pkgId": "//integrations/sailthru:main@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/salesforce:main@bazel", + "pkgId": "//integrations/salesforce:main@bazel", + "deps": [ + { + "nodeId": "//dblike:main@bazel" + }, + { + "nodeId": "//schema_migration:schema_migration_info@bazel" + }, + { + "nodeId": "//slack:main@bazel" + }, + { + "nodeId": "//utils/hook:main@bazel" + }, + { + "nodeId": "//warehouses/common:warehouse_type@bazel" + }, + { + "nodeId": "javax.xml.bind:jaxb-api@2.2.2" + } + ] + }, + { + "nodeId": "//integrations/salesforce_commerce_cloud:main@bazel", + "pkgId": "//integrations/salesforce_commerce_cloud:main@bazel", + "deps": [ + { + "nodeId": "org.glassfish.jersey.security:oauth1-client@2.31" + }, + { + "nodeId": "org.glassfish.jersey.security:oauth1-signature@2.31" + } + ] + }, + { + "nodeId": "//integrations/salesforce_marketing_cloud:main@bazel", + "pkgId": "//integrations/salesforce_marketing_cloud:main@bazel", + "deps": [ + { + "nodeId": "com.fasterxml.jackson.dataformat:jackson-dataformat-smile@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.dataformat:jackson-dataformat-xml@2.9.8" + }, + { + "nodeId": "com.sun.xml.bind:jaxb-impl@2.2.11" + }, + { + "nodeId": "com.sun.xml.messaging.saaj:saaj-impl@1.3.25" + }, + { + "nodeId": "javax.xml.bind:jaxb-api@2.2.2" + }, + { + "nodeId": "javax.xml.soap:javax.xml.soap-api@1.4.0" + } + ] + }, + { + "nodeId": "//integrations/sap_business_bydesign:main@bazel", + "pkgId": "//integrations/sap_business_bydesign:main@bazel", + "deps": [ + { + "nodeId": "com.fasterxml.jackson.dataformat:jackson-dataformat-smile@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.dataformat:jackson-dataformat-xml@2.9.8" + }, + { + "nodeId": "com.sun.xml.bind:jaxb-impl@2.2.11" + }, + { + "nodeId": "com.sun.xml.messaging.saaj:saaj-impl@1.3.25" + }, + { + "nodeId": "javax.xml.bind:jaxb-api@2.2.2" + }, + { + "nodeId": "javax.xml.soap:javax.xml.soap-api@1.4.0" + } + ] + }, + { + "nodeId": "//integrations/sap_concur:main@bazel", + "pkgId": "//integrations/sap_concur:main@bazel", + "deps": [ + { + "nodeId": "//ecomm:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.dataformat:jackson-dataformat-xml@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-xml-provider@2.9.8" + }, + { + "nodeId": "com.fasterxml.woodstox:woodstox-core@5.0.3" + }, + { + "nodeId": "javax.xml.stream:stax-api@1.0-2" + }, + { + "nodeId": "org.codehaus.woodstox:stax2-api@3.1.4" + }, + { + "nodeId": "stax:stax-api@1.0.1" + } + ] + }, + { + "nodeId": "//integrations/sap_s4hana:main@bazel", + "pkgId": "//integrations/sap_s4hana:main@bazel", + "deps": [ + { + "nodeId": "//dblike:main@bazel" + }, + { + "nodeId": "//port_forwarder:main@bazel" + } + ] + }, + { + "nodeId": "//integrations/segment:main@bazel", + "pkgId": "//integrations/segment:main@bazel", + "deps": [ + { + "nodeId": "//common:main@bazel" + }, + { + "nodeId": "//integrations/s3:main@bazel" + }, + { + "nodeId": "//jackson_module_json_schema:main@bazel" + }, + { + "nodeId": "//maxmind:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.dataformat:jackson-dataformat-smile@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-joda@2.9.8" + }, + { + "nodeId": "com.maxmind.geoip2:geoip2@2.9.0" + } + ] + }, + { + "nodeId": "//maxmind:main@bazel", + "pkgId": "//maxmind:main@bazel", + "deps": [ + { + "nodeId": "com.google.cloud:google-cloud-storage@1.108.0" + }, + { + "nodeId": "com.maxmind.db:maxmind-db@1.2.2" + }, + { + "nodeId": "com.maxmind.geoip2:geoip2@2.9.0" + }, + { + "nodeId": "org.apache.commons:commons-compress@1.16" + } + ] + }, + { + "nodeId": "com.maxmind.db:maxmind-db@1.2.2", + "pkgId": "com.maxmind.db:maxmind-db@1.2.2", + "deps": [] + }, + { + "nodeId": "com.maxmind.geoip2:geoip2@2.9.0", + "pkgId": "com.maxmind.geoip2:geoip2@2.9.0", + "deps": [ + { + "nodeId": "com.maxmind.db:maxmind-db@1.2.2" + } + ] + }, + { + "nodeId": "//integrations/sendgrid:main@bazel", + "pkgId": "//integrations/sendgrid:main@bazel", + "deps": [ + { + "nodeId": "com.fasterxml.jackson.dataformat:jackson-dataformat-smile@2.9.8" + }, + { + "nodeId": "com.google.apis:google-api-services-bigquery@v2-rev459-1.25.0" + }, + { + "nodeId": "com.google.cloud:google-cloud-storage@1.108.0" + } + ] + }, + { + "nodeId": "//integrations/service_now:main@bazel", + "pkgId": "//integrations/service_now:main@bazel", + "deps": [ + { + "nodeId": "//integrations/db_like_standardization:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.dataformat:jackson-dataformat-smile@2.9.8" + }, + { + "nodeId": "com.google.apis:google-api-services-bigquery@v2-rev459-1.25.0" + } + ] + }, + { + "nodeId": "//integrations/shopify:main@bazel", + "pkgId": "//integrations/shopify:main@bazel", + "deps": [ + { + "nodeId": "//ecomm:main@bazel" + }, + { + "nodeId": "//webhook/utils:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.dataformat:jackson-dataformat-smile@2.9.8" + }, + { + "nodeId": "com.google.apis:google-api-services-bigquery@v2-rev459-1.25.0" + }, + { + "nodeId": "joda-time:joda-time@2.9.2" + } + ] + }, + { + "nodeId": "//integrations/snapchat_ads:main@bazel", + "pkgId": "//integrations/snapchat_ads:main@bazel", + "deps": [ + { + "nodeId": "joda-time:joda-time@2.9.2" + } + ] + }, + { + "nodeId": "//integrations/snowplow:main@bazel", + "pkgId": "//integrations/snowplow:main@bazel", + "deps": [ + { + "nodeId": "//jackson_module_json_schema:main@bazel" + }, + { + "nodeId": "//maxmind:main@bazel" + }, + { + "nodeId": "com.blueconic:browscap-java@1.2.13" + }, + { + "nodeId": "com.fasterxml.jackson.dataformat:jackson-dataformat-smile@2.9.8" + }, + { + "nodeId": "com.github.java-json-tools:json-schema-core@1.2.14" + }, + { + "nodeId": "com.github.java-json-tools:json-schema-validator@2.2.14" + }, + { + "nodeId": "com.github.ua-parser:uap-java@1.4.0" + }, + { + "nodeId": "com.google.cloud:google-cloud-storage@1.108.0" + }, + { + "nodeId": "com.maxmind.db:maxmind-db@1.2.2" + }, + { + "nodeId": "com.maxmind.geoip2:geoip2@2.9.0" + }, + { + "nodeId": "com.snowplowanalytics:referer-parser_2.11@0.3.0" + }, + { + "nodeId": "javax.validation:validation-api@1.1.0.Final" + }, + { + "nodeId": "org.apache.commons:commons-compress@1.16" + } + ] + }, + { + "nodeId": "com.blueconic:browscap-java@1.2.13", + "pkgId": "com.blueconic:browscap-java@1.2.13", + "deps": [ + { + "nodeId": "org.apache.commons:commons-csv@1.8" + } + ] + }, + { + "nodeId": "com.github.java-json-tools:json-schema-core@1.2.14", + "pkgId": "com.github.java-json-tools:json-schema-core@1.2.14", + "deps": [ + { + "nodeId": "com.github.java-json-tools:jackson-coreutils@2.0" + }, + { + "nodeId": "com.github.java-json-tools:jackson-coreutils-equivalence@1.0" + }, + { + "nodeId": "com.github.java-json-tools:uri-template@0.10" + }, + { + "nodeId": "org.mozilla:rhino@1.7.7.2" + } + ] + }, + { + "nodeId": "com.github.java-json-tools:jackson-coreutils@2.0", + "pkgId": "com.github.java-json-tools:jackson-coreutils@2.0", + "deps": [ + { + "nodeId": "com.github.java-json-tools:msg-simple@1.2" + } + ] + }, + { + "nodeId": "com.github.java-json-tools:msg-simple@1.2", + "pkgId": "com.github.java-json-tools:msg-simple@1.2", + "deps": [ + { + "nodeId": "com.github.java-json-tools:btf@1.3" + } + ] + }, + { + "nodeId": "com.github.java-json-tools:btf@1.3", + "pkgId": "com.github.java-json-tools:btf@1.3", + "deps": [] + }, + { + "nodeId": "com.github.java-json-tools:jackson-coreutils-equivalence@1.0", + "pkgId": "com.github.java-json-tools:jackson-coreutils-equivalence@1.0", + "deps": [ + { + "nodeId": "com.github.java-json-tools:jackson-coreutils@2.0" + } + ] + }, + { + "nodeId": "com.github.java-json-tools:uri-template@0.10", + "pkgId": "com.github.java-json-tools:uri-template@0.10", + "deps": [ + { + "nodeId": "com.github.java-json-tools:msg-simple@1.2" + } + ] + }, + { + "nodeId": "org.mozilla:rhino@1.7.7.2", + "pkgId": "org.mozilla:rhino@1.7.7.2", + "deps": [] + }, + { + "nodeId": "com.github.java-json-tools:json-schema-validator@2.2.14", + "pkgId": "com.github.java-json-tools:json-schema-validator@2.2.14", + "deps": [ + { + "nodeId": "com.sun.mail:mailapi@1.6.2" + }, + { + "nodeId": "com.github.java-json-tools:jackson-coreutils-equivalence@1.0" + }, + { + "nodeId": "com.googlecode.libphonenumber:libphonenumber@8.11.1" + }, + { + "nodeId": "com.github.java-json-tools:json-schema-core@1.2.14" + }, + { + "nodeId": "joda-time:joda-time@2.9.2" + }, + { + "nodeId": "net.sf.jopt-simple:jopt-simple@5.0.4" + } + ] + }, + { + "nodeId": "com.sun.mail:mailapi@1.6.2", + "pkgId": "com.sun.mail:mailapi@1.6.2", + "deps": [] + }, + { + "nodeId": "com.googlecode.libphonenumber:libphonenumber@8.11.1", + "pkgId": "com.googlecode.libphonenumber:libphonenumber@8.11.1", + "deps": [] + }, + { + "nodeId": "com.github.ua-parser:uap-java@1.4.0", + "pkgId": "com.github.ua-parser:uap-java@1.4.0", + "deps": [ + { + "nodeId": "org.apache.commons:commons-collections4@4.1" + }, + { + "nodeId": "org.yaml:snakeyaml@1.23" + } + ] + }, + { + "nodeId": "com.snowplowanalytics:referer-parser_2.11@0.3.0", + "pkgId": "com.snowplowanalytics:referer-parser_2.11@0.3.0", + "deps": [ + { + "nodeId": "org.scala-lang:scala-library@2.11.1" + }, + { + "nodeId": "org.yaml:snakeyaml@1.23" + } + ] + }, + { + "nodeId": "//integrations/snowflake:main@bazel", + "pkgId": "//integrations/snowflake:main@bazel", + "deps": [ + { + "nodeId": "//port_forwarder:main@bazel" + }, + { + "nodeId": "//teleport:main@bazel" + }, + { + "nodeId": "//utils/beans:main@bazel" + }, + { + "nodeId": "net.snowflake:snowflake-jdbc@3.13.18" + }, + { + "nodeId": "//core_implementation:main@bazel" + }, + { + "nodeId": "//database:tls_verify@bazel" + }, + { + "nodeId": "//geo:main@bazel" + }, + { + "nodeId": "//integrations/configuration_tracker:main@bazel" + }, + { + "nodeId": "//integrations/speed_test:main@bazel" + }, + { + "nodeId": "//secred/common:main@bazel" + }, + { + "nodeId": "//slack:main@bazel" + }, + { + "nodeId": "//utils/serializers:main@bazel" + }, + { + "nodeId": "//utils/sync_statistics:main@bazel" + }, + { + "nodeId": "//verification:main@bazel" + }, + { + "nodeId": "//warehouses/snowflake:main@bazel" + }, + { + "nodeId": "joda-time:joda-time@2.9.2" + }, + { + "nodeId": "org.bouncycastle:bcpkix-jdk15on@1.70" + }, + { + "nodeId": "org.bouncycastle:bcprov-jdk15to18@1.70" + } + ] + }, + { + "nodeId": "//integrations/splunk:main@bazel", + "pkgId": "//integrations/splunk:main@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/sql_server:main@bazel", + "pkgId": "//integrations/sql_server:main@bazel", + "deps": [ + { + "nodeId": "//geo:main@bazel" + }, + { + "nodeId": "//integrations/azure/utils:main@bazel" + }, + { + "nodeId": "//integrations/configuration_tracker:main@bazel" + }, + { + "nodeId": "//integrations/hvr/hvr_tool:main@bazel" + }, + { + "nodeId": "//integrations/hvr/unserializer:main@bazel" + }, + { + "nodeId": "//integrations/speed_test:main@bazel" + }, + { + "nodeId": "//port_forwarder:sqlserver@bazel" + }, + { + "nodeId": "//schema_migration:main@bazel" + }, + { + "nodeId": "//services:ab_tests@bazel" + }, + { + "nodeId": "//teleport:main@bazel" + }, + { + "nodeId": "//utils/cipher_adapter:main@bazel" + }, + { + "nodeId": "//utils/run_shell:main@bazel" + }, + { + "nodeId": "//utils/segmented_input_stream:main@bazel" + }, + { + "nodeId": "//utils/serializers:main@bazel" + }, + { + "nodeId": "//utils/sleep_control:main@bazel" + }, + { + "nodeId": "//utils/socket_receiver:main@bazel" + }, + { + "nodeId": "//utils/sync_statistics:main@bazel" + }, + { + "nodeId": "//utils/threading:main@bazel" + }, + { + "nodeId": "//verification:main@bazel" + }, + { + "nodeId": "com.microsoft.sqlserver:mssql-jdbc@9.4.0.jre11" + }, + { + "nodeId": "com.walkmind.extensions:collections@1.20" + }, + { + "nodeId": "com.zaxxer:HikariCP@3.4.1" + }, + { + "nodeId": "io.netty:netty-buffer@4.1.50.Final" + }, + { + "nodeId": "io.opentelemetry:opentelemetry-api@0.13.1" + }, + { + "nodeId": "io.opentelemetry:opentelemetry-api-trace@0.13.1" + }, + { + "nodeId": "io.opentelemetry:opentelemetry-extension-annotations@0.13.1" + } + ] + }, + { + "nodeId": "//integrations/azure/utils:main@bazel", + "pkgId": "//integrations/azure/utils:main@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/square:main@bazel", + "pkgId": "//integrations/square:main@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/stripe:main@bazel", + "pkgId": "//integrations/stripe:main@bazel", + "deps": [ + { + "nodeId": "//dynamo:main@bazel" + }, + { + "nodeId": "//ecomm:main@bazel" + } + ] + }, + { + "nodeId": "//integrations/survey_monkey:main@bazel", + "pkgId": "//integrations/survey_monkey:main@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/spotify_ads:main@bazel", + "pkgId": "//integrations/spotify_ads:main@bazel", + "deps": [ + { + "nodeId": "//http:curl_request@bazel" + }, + { + "nodeId": "//utils/token_api:main@bazel" + } + ] + }, + { + "nodeId": "//integrations/taboola:main@bazel", + "pkgId": "//integrations/taboola:main@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/the_trade_desk:main@bazel", + "pkgId": "//integrations/the_trade_desk:main@bazel", + "deps": [ + { + "nodeId": "org.apache.poi:poi@3.17" + }, + { + "nodeId": "org.apache.poi:poi-ooxml@3.17" + }, + { + "nodeId": "org.eclipse.jetty:jetty-util@9.4.40.v20210413" + } + ] + }, + { + "nodeId": "//integrations/tiktok_ads:main@bazel", + "pkgId": "//integrations/tiktok_ads:main@bazel", + "deps": [ + { + "nodeId": "//integrations/cube:main@bazel" + } + ] + }, + { + "nodeId": "//integrations/twilio:main@bazel", + "pkgId": "//integrations/twilio:main@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/twitter:main@bazel", + "pkgId": "//integrations/twitter:main@bazel", + "deps": [ + { + "nodeId": "//integrations/cube:main@bazel" + }, + { + "nodeId": "org.glassfish.jersey.security:oauth1-client@2.31" + }, + { + "nodeId": "org.glassfish.jersey.security:oauth1-signature@2.31" + }, + { + "nodeId": "org.json:json@20171018" + } + ] + }, + { + "nodeId": "//integrations/typeform:main@bazel", + "pkgId": "//integrations/typeform:main@bazel", + "deps": [ + { + "nodeId": "org.glassfish.jersey.security:oauth1-client@2.31" + }, + { + "nodeId": "org.glassfish.jersey.security:oauth1-signature@2.31" + }, + { + "nodeId": "org.json:json@20171018" + } + ] + }, + { + "nodeId": "//integrations/uservoice:main@bazel", + "pkgId": "//integrations/uservoice:main@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/webhooks:main@bazel", + "pkgId": "//integrations/webhooks:main@bazel", + "deps": [ + { + "nodeId": "//database:enums@bazel" + }, + { + "nodeId": "//webhook/storage:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.dataformat:jackson-dataformat-smile@2.9.8" + }, + { + "nodeId": "com.google.cloud:google-cloud-storage@1.108.0" + } + ] + }, + { + "nodeId": "//integrations/wordpress:main@bazel", + "pkgId": "//integrations/wordpress:main@bazel", + "deps": [ + { + "nodeId": "org.bouncycastle:bcpkix-jdk15on@1.70" + }, + { + "nodeId": "org.bouncycastle:bcprov-jdk15to18@1.70" + } + ] + }, + { + "nodeId": "//integrations/workday:main@bazel", + "pkgId": "//integrations/workday:main@bazel", + "deps": [ + { + "nodeId": "//integrations/db_like_standardization:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.dataformat:jackson-dataformat-xml@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.module:jackson-module-jaxb-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.woodstox:woodstox-core@5.0.3" + } + ] + }, + { + "nodeId": "//integrations/workday_hcm:main@bazel", + "pkgId": "//integrations/workday_hcm:main@bazel", + "deps": [ + { + "nodeId": "//ecomm:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.dataformat:jackson-dataformat-smile@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.dataformat:jackson-dataformat-xml@2.9.8" + }, + { + "nodeId": "com.sun.xml.bind:jaxb-impl@2.2.11" + }, + { + "nodeId": "com.sun.xml.messaging.saaj:saaj-impl@1.3.25" + }, + { + "nodeId": "javax.xml.bind:jaxb-api@2.2.2" + }, + { + "nodeId": "javax.xml.soap:javax.xml.soap-api@1.4.0" + }, + { + "nodeId": "org.json:json@20171018" + }, + { + "nodeId": "org.projectlombok:lombok@1.18.12" + } + ] + }, + { + "nodeId": "org.projectlombok:lombok@1.18.12", + "pkgId": "org.projectlombok:lombok@1.18.12", + "deps": [] + }, + { + "nodeId": "//integrations/xero:main@bazel", + "pkgId": "//integrations/xero:main@bazel", + "deps": [ + { + "nodeId": "//ecomm:main@bazel" + }, + { + "nodeId": "org.glassfish.jersey.security:oauth1-signature@2.31" + } + ] + }, + { + "nodeId": "//integrations/yahoo_gemini:main@bazel", + "pkgId": "//integrations/yahoo_gemini:main@bazel", + "deps": [ + { + "nodeId": "//integrations/cube:main@bazel" + } + ] + }, + { + "nodeId": "//integrations/youtube_analytics:main@bazel", + "pkgId": "//integrations/youtube_analytics:main@bazel", + "deps": [ + { + "nodeId": "//http:curl_request@bazel" + }, + { + "nodeId": "//logger:acmecorp_logger@bazel" + }, + { + "nodeId": "//util:rest_api@bazel" + }, + { + "nodeId": "//utils/time:acmecorp_clock@bazel" + }, + { + "nodeId": "//utils/token_api:main@bazel" + } + ] + }, + { + "nodeId": "//integrations/zendesk:main@bazel", + "pkgId": "//integrations/zendesk:main@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/zendesk_chat:main@bazel", + "pkgId": "//integrations/zendesk_chat:main@bazel", + "deps": [ + { + "nodeId": "junit:junit@4.13" + } + ] + }, + { + "nodeId": "//integrations/zendesk_sell:main@bazel", + "pkgId": "//integrations/zendesk_sell:main@bazel", + "deps": [ + { + "nodeId": "//http_client:main@bazel" + } + ] + }, + { + "nodeId": "//integrations/zendesk_sunshine:main@bazel", + "pkgId": "//integrations/zendesk_sunshine:main@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/zoho_crm:main@bazel", + "pkgId": "//integrations/zoho_crm:main@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/delighted:main@bazel", + "pkgId": "//integrations/delighted:main@bazel", + "deps": [] + }, + { + "nodeId": "//sources/delighted:main@bazel", + "pkgId": "//sources/delighted:main@bazel", + "deps": [ + { + "nodeId": "//sources/form:main@bazel" + }, + { + "nodeId": "//sources/mapper:main@bazel" + }, + { + "nodeId": "//sources/types:main@bazel" + }, + { + "nodeId": "//sources/bridge:main@bazel" + }, + { + "nodeId": "org.glassfish.jersey.inject:jersey-hk2@2.31" + } + ] + }, + { + "nodeId": "//sources/mapper:main@bazel", + "pkgId": "//sources/mapper:main@bazel", + "deps": [ + { + "nodeId": "//sources/types:main@bazel" + } + ] + }, + { + "nodeId": "//saml:main@bazel", + "pkgId": "//saml:main@bazel", + "deps": [ + { + "nodeId": "com.fasterxml.woodstox:woodstox-core@5.0.3" + }, + { + "nodeId": "commons-logging:commons-logging@1.2" + }, + { + "nodeId": "io.dropwizard.metrics:metrics-core@3.1.2" + }, + { + "nodeId": "joda-time:joda-time@2.9.2" + }, + { + "nodeId": "net.shibboleth.utilities:java-support@7.3.0" + }, + { + "nodeId": "org.bouncycastle:bcprov-jdk15to18@1.70" + }, + { + "nodeId": "org.cryptacular:cryptacular@1.1.1" + }, + { + "nodeId": "org.opensaml:opensaml-core@3.3.0" + }, + { + "nodeId": "org.opensaml:opensaml-messaging-api@3.3.0" + }, + { + "nodeId": "org.opensaml:opensaml-messaging-impl@3.3.0" + }, + { + "nodeId": "org.opensaml:opensaml-profile-api@3.3.0" + }, + { + "nodeId": "org.opensaml:opensaml-saml-api@3.3.0" + }, + { + "nodeId": "org.opensaml:opensaml-saml-impl@3.3.0" + }, + { + "nodeId": "org.opensaml:opensaml-security-api@3.3.0" + }, + { + "nodeId": "org.opensaml:opensaml-security-impl@3.3.0" + }, + { + "nodeId": "org.opensaml:opensaml-soap-api@3.3.0" + }, + { + "nodeId": "org.opensaml:opensaml-soap-impl@3.3.0" + }, + { + "nodeId": "org.opensaml:opensaml-storage-api@3.3.0" + }, + { + "nodeId": "org.opensaml:opensaml-xmlsec-api@3.3.0" + }, + { + "nodeId": "org.opensaml:opensaml-xmlsec-impl@3.3.0" + } + ] + }, + { + "nodeId": "io.dropwizard.metrics:metrics-core@3.1.2", + "pkgId": "io.dropwizard.metrics:metrics-core@3.1.2", + "deps": [] + }, + { + "nodeId": "net.shibboleth.utilities:java-support@7.3.0", + "pkgId": "net.shibboleth.utilities:java-support@7.3.0", + "deps": [ + { + "nodeId": "joda-time:joda-time@2.9.2" + } + ] + }, + { + "nodeId": "org.cryptacular:cryptacular@1.1.1", + "pkgId": "org.cryptacular:cryptacular@1.1.1", + "deps": [ + { + "nodeId": "org.bouncycastle:bcprov-jdk15on@1.70" + } + ] + }, + { + "nodeId": "org.opensaml:opensaml-core@3.3.0", + "pkgId": "org.opensaml:opensaml-core@3.3.0", + "deps": [ + { + "nodeId": "net.shibboleth.utilities:java-support@7.3.0" + }, + { + "nodeId": "joda-time:joda-time@2.9.2" + }, + { + "nodeId": "io.dropwizard.metrics:metrics-core@3.1.2" + } + ] + }, + { + "nodeId": "org.opensaml:opensaml-messaging-api@3.3.0", + "pkgId": "org.opensaml:opensaml-messaging-api@3.3.0", + "deps": [ + { + "nodeId": "net.shibboleth.utilities:java-support@7.3.0" + }, + { + "nodeId": "org.opensaml:opensaml-core@3.3.0" + }, + { + "nodeId": "joda-time:joda-time@2.9.2" + } + ] + }, + { + "nodeId": "org.opensaml:opensaml-messaging-impl@3.3.0", + "pkgId": "org.opensaml:opensaml-messaging-impl@3.3.0", + "deps": [ + { + "nodeId": "net.shibboleth.utilities:java-support@7.3.0" + }, + { + "nodeId": "org.opensaml:opensaml-messaging-api@3.3.0" + } + ] + }, + { + "nodeId": "org.opensaml:opensaml-profile-api@3.3.0", + "pkgId": "org.opensaml:opensaml-profile-api@3.3.0", + "deps": [ + { + "nodeId": "net.shibboleth.utilities:java-support@7.3.0" + }, + { + "nodeId": "org.opensaml:opensaml-messaging-api@3.3.0" + }, + { + "nodeId": "org.opensaml:opensaml-core@3.3.0" + } + ] + }, + { + "nodeId": "org.opensaml:opensaml-saml-api@3.3.0", + "pkgId": "org.opensaml:opensaml-saml-api@3.3.0", + "deps": [ + { + "nodeId": "net.shibboleth.utilities:java-support@7.3.0" + }, + { + "nodeId": "org.opensaml:opensaml-profile-api@3.3.0" + }, + { + "nodeId": "org.opensaml:opensaml-messaging-api@3.3.0" + }, + { + "nodeId": "org.opensaml:opensaml-xmlsec-api@3.3.0" + }, + { + "nodeId": "org.opensaml:opensaml-storage-api@3.3.0" + }, + { + "nodeId": "org.opensaml:opensaml-soap-api@3.3.0" + } + ] + }, + { + "nodeId": "org.opensaml:opensaml-xmlsec-api@3.3.0", + "pkgId": "org.opensaml:opensaml-xmlsec-api@3.3.0", + "deps": [ + { + "nodeId": "net.shibboleth.utilities:java-support@7.3.0" + }, + { + "nodeId": "org.opensaml:opensaml-messaging-api@3.3.0" + }, + { + "nodeId": "org.opensaml:opensaml-security-api@3.3.0" + } + ] + }, + { + "nodeId": "org.opensaml:opensaml-security-api@3.3.0", + "pkgId": "org.opensaml:opensaml-security-api@3.3.0", + "deps": [ + { + "nodeId": "org.apache.santuario:xmlsec@2.1.1" + }, + { + "nodeId": "net.shibboleth.utilities:java-support@7.3.0" + }, + { + "nodeId": "org.opensaml:opensaml-messaging-api@3.3.0" + }, + { + "nodeId": "org.opensaml:opensaml-core@3.3.0" + }, + { + "nodeId": "org.bouncycastle:bcprov-jdk15on@1.70" + }, + { + "nodeId": "org.cryptacular:cryptacular@1.1.1" + } + ] + }, + { + "nodeId": "org.apache.santuario:xmlsec@2.1.1", + "pkgId": "org.apache.santuario:xmlsec@2.1.1", + "deps": [ + { + "nodeId": "com.fasterxml.woodstox:woodstox-core@5.0.3" + } + ] + }, + { + "nodeId": "org.opensaml:opensaml-storage-api@3.3.0", + "pkgId": "org.opensaml:opensaml-storage-api@3.3.0", + "deps": [ + { + "nodeId": "joda-time:joda-time@2.9.2" + }, + { + "nodeId": "net.shibboleth.utilities:java-support@7.3.0" + } + ] + }, + { + "nodeId": "org.opensaml:opensaml-soap-api@3.3.0", + "pkgId": "org.opensaml:opensaml-soap-api@3.3.0", + "deps": [ + { + "nodeId": "net.shibboleth.utilities:java-support@7.3.0" + }, + { + "nodeId": "org.opensaml:opensaml-messaging-api@3.3.0" + }, + { + "nodeId": "org.opensaml:opensaml-xmlsec-api@3.3.0" + } + ] + }, + { + "nodeId": "org.opensaml:opensaml-saml-impl@3.3.0", + "pkgId": "org.opensaml:opensaml-saml-impl@3.3.0", + "deps": [ + { + "nodeId": "net.shibboleth.utilities:java-support@7.3.0" + }, + { + "nodeId": "org.opensaml:opensaml-profile-api@3.3.0" + }, + { + "nodeId": "org.opensaml:opensaml-soap-impl@3.3.0" + }, + { + "nodeId": "org.opensaml:opensaml-security-impl@3.3.0" + }, + { + "nodeId": "org.opensaml:opensaml-saml-api@3.3.0" + }, + { + "nodeId": "org.opensaml:opensaml-xmlsec-impl@3.3.0" + }, + { + "nodeId": "org.opensaml:opensaml-storage-api@3.3.0" + }, + { + "nodeId": "org.apache.velocity:velocity@1.7" + } + ] + }, + { + "nodeId": "org.opensaml:opensaml-soap-impl@3.3.0", + "pkgId": "org.opensaml:opensaml-soap-impl@3.3.0", + "deps": [ + { + "nodeId": "net.shibboleth.utilities:java-support@7.3.0" + }, + { + "nodeId": "org.opensaml:opensaml-profile-api@3.3.0" + }, + { + "nodeId": "org.opensaml:opensaml-soap-api@3.3.0" + } + ] + }, + { + "nodeId": "org.opensaml:opensaml-security-impl@3.3.0", + "pkgId": "org.opensaml:opensaml-security-impl@3.3.0", + "deps": [ + { + "nodeId": "net.shibboleth.utilities:java-support@7.3.0" + }, + { + "nodeId": "org.opensaml:opensaml-messaging-api@3.3.0" + }, + { + "nodeId": "org.opensaml:opensaml-security-api@3.3.0" + } + ] + }, + { + "nodeId": "org.opensaml:opensaml-xmlsec-impl@3.3.0", + "pkgId": "org.opensaml:opensaml-xmlsec-impl@3.3.0", + "deps": [ + { + "nodeId": "net.shibboleth.utilities:java-support@7.3.0" + }, + { + "nodeId": "org.opensaml:opensaml-xmlsec-api@3.3.0" + }, + { + "nodeId": "org.opensaml:opensaml-security-impl@3.3.0" + } + ] + }, + { + "nodeId": "//services/customer_data_access:main@bazel", + "pkgId": "//services/customer_data_access:main@bazel", + "deps": [ + { + "nodeId": "//services:main@bazel" + }, + { + "nodeId": "//zendesk_utils:main@bazel" + } + ] + }, + { + "nodeId": "//zendesk_utils:main@bazel", + "pkgId": "//zendesk_utils:main@bazel", + "deps": [] + }, + { + "nodeId": "//services/dbt:main@bazel", + "pkgId": "//services/dbt:main@bazel", + "deps": [ + { + "nodeId": "//dbt/manifest:main@bazel" + }, + { + "nodeId": "//dbt/runner:main@bazel" + }, + { + "nodeId": "//integrated_scheduler/dag:main@bazel" + }, + { + "nodeId": "//integrated_scheduler/pipeline:main@bazel" + }, + { + "nodeId": "//services:main@bazel" + }, + { + "nodeId": "//utils/validations:main@bazel" + }, + { + "nodeId": "org.postgresql:postgresql@42.3.3" + } + ] + }, + { + "nodeId": "//services/schema_modification:main@bazel", + "pkgId": "//services/schema_modification:main@bazel", + "deps": [ + { + "nodeId": "//logger:acmecorp_logger@bazel" + }, + { + "nodeId": "//services/setup_test_runner:main@bazel" + } + ] + }, + { + "nodeId": "//sfdc_connect:main@bazel", + "pkgId": "//sfdc_connect:main@bazel", + "deps": [ + { + "nodeId": "//events:main@bazel" + }, + { + "nodeId": "//services:main@bazel" + }, + { + "nodeId": "//slack:main@bazel" + }, + { + "nodeId": "com.opencsv:opencsv@4.1" + } + ] + }, + { + "nodeId": "//ufl_storage/client:main@bazel", + "pkgId": "//ufl_storage/client:main@bazel", + "deps": [ + { + "nodeId": "//ufl_storage/storage:main@bazel" + } + ] + }, + { + "nodeId": "//ufl_storage/storage:main@bazel", + "pkgId": "//ufl_storage/storage:main@bazel", + "deps": [] + }, + { + "nodeId": "//utils/integrated_scheduler:main@bazel", + "pkgId": "//utils/integrated_scheduler:main@bazel", + "deps": [ + { + "nodeId": "//integrated_scheduler/scheduler:messages@bazel" + }, + { + "nodeId": "//integrated_scheduler/scheduler:pubsub@bazel" + }, + { + "nodeId": "//services:exceptions@bazel" + }, + { + "nodeId": "//services:integration_control@bazel" + }, + { + "nodeId": "com.google.api.grpc:proto-google-cloud-pubsub-v1@1.101.1" + }, + { + "nodeId": "com.google.cloud:google-cloud-pubsub@1.119.1" + } + ] + }, + { + "nodeId": "com.google.cloud:google-cloud-firestore@1.10.0", + "pkgId": "com.google.cloud:google-cloud-firestore@1.10.0", + "deps": [ + { + "nodeId": "com.google.api.grpc:proto-google-cloud-firestore-v1beta1@0.63.0" + }, + { + "nodeId": "io.grpc:grpc-stub@1.32.2" + }, + { + "nodeId": "io.grpc:grpc-auth@1.32.2" + }, + { + "nodeId": "com.google.cloud:google-cloud-core-grpc@1.19.0" + }, + { + "nodeId": "io.grpc:grpc-netty-shaded@1.32.2" + }, + { + "nodeId": "io.opencensus:opencensus-contrib-grpc-util@0.21.0" + }, + { + "nodeId": "com.google.api:gax-grpc@2.3.0" + }, + { + "nodeId": "com.google.api.grpc:proto-google-cloud-firestore-admin-v1@1.10.0" + }, + { + "nodeId": "io.opencensus:opencensus-api@0.12.3" + }, + { + "nodeId": "com.google.api.grpc:proto-google-cloud-firestore-v1@1.10.0" + } + ] + }, + { + "nodeId": "com.google.api.grpc:proto-google-cloud-firestore-v1beta1@0.63.0", + "pkgId": "com.google.api.grpc:proto-google-cloud-firestore-v1beta1@0.63.0", + "deps": [ + { + "nodeId": "com.google.api.grpc:proto-google-common-protos@1.15.0" + } + ] + }, + { + "nodeId": "io.opencensus:opencensus-contrib-grpc-util@0.21.0", + "pkgId": "io.opencensus:opencensus-contrib-grpc-util@0.21.0", + "deps": [ + { + "nodeId": "io.grpc:grpc-core@1.32.2" + }, + { + "nodeId": "io.opencensus:opencensus-api@0.12.3" + } + ] + }, + { + "nodeId": "com.google.api.grpc:proto-google-cloud-firestore-admin-v1@1.10.0", + "pkgId": "com.google.api.grpc:proto-google-cloud-firestore-admin-v1@1.10.0", + "deps": [ + { + "nodeId": "com.google.api.grpc:proto-google-common-protos@1.15.0" + } + ] + }, + { + "nodeId": "com.google.api.grpc:proto-google-cloud-firestore-v1@1.10.0", + "pkgId": "com.google.api.grpc:proto-google-cloud-firestore-v1@1.10.0", + "deps": [ + { + "nodeId": "com.google.api.grpc:proto-google-common-protos@1.15.0" + } + ] + }, + { + "nodeId": "com.lambdaworks:scrypt@1.4.0", + "pkgId": "com.lambdaworks:scrypt@1.4.0", + "deps": [] + }, + { + "nodeId": "org.eclipse.jetty.websocket:javax-websocket-server-impl@9.4.40.v20210413", + "pkgId": "org.eclipse.jetty.websocket:javax-websocket-server-impl@9.4.40.v20210413", + "deps": [ + { + "nodeId": "javax.websocket:javax.websocket-api@1.1" + }, + { + "nodeId": "org.eclipse.jetty:jetty-annotations@9.4.40.v20210413" + }, + { + "nodeId": "org.eclipse.jetty.websocket:javax-websocket-client-impl@9.4.40.v20210413" + }, + { + "nodeId": "org.eclipse.jetty.websocket:websocket-server@9.4.40.v20210413" + } + ] + }, + { + "nodeId": "org.eclipse.jetty:jetty-annotations@9.4.40.v20210413", + "pkgId": "org.eclipse.jetty:jetty-annotations@9.4.40.v20210413", + "deps": [ + { + "nodeId": "org.ow2.asm:asm-commons@8.0.1" + }, + { + "nodeId": "org.ow2.asm:asm@8.0.1" + }, + { + "nodeId": "org.eclipse.jetty:jetty-webapp@9.4.40.v20210413" + }, + { + "nodeId": "org.eclipse.jetty:jetty-plus@9.4.40.v20210413" + } + ] + }, + { + "nodeId": "org.ow2.asm:asm-commons@8.0.1", + "pkgId": "org.ow2.asm:asm-commons@8.0.1", + "deps": [ + { + "nodeId": "org.ow2.asm:asm@8.0.1" + }, + { + "nodeId": "org.ow2.asm:asm-analysis@8.0.1" + }, + { + "nodeId": "org.ow2.asm:asm-tree@8.0.1" + } + ] + }, + { + "nodeId": "org.eclipse.jetty:jetty-webapp@9.4.40.v20210413", + "pkgId": "org.eclipse.jetty:jetty-webapp@9.4.40.v20210413", + "deps": [ + { + "nodeId": "org.eclipse.jetty:jetty-servlet@9.4.40.v20210413" + }, + { + "nodeId": "org.eclipse.jetty:jetty-xml@9.4.40.v20210413" + } + ] + }, + { + "nodeId": "org.eclipse.jetty:jetty-xml@9.4.40.v20210413", + "pkgId": "org.eclipse.jetty:jetty-xml@9.4.40.v20210413", + "deps": [ + { + "nodeId": "org.eclipse.jetty:jetty-util@9.4.40.v20210413" + } + ] + }, + { + "nodeId": "org.eclipse.jetty:jetty-plus@9.4.40.v20210413", + "pkgId": "org.eclipse.jetty:jetty-plus@9.4.40.v20210413", + "deps": [ + { + "nodeId": "org.eclipse.jetty:jetty-jndi@9.4.40.v20210413" + }, + { + "nodeId": "org.eclipse.jetty:jetty-webapp@9.4.40.v20210413" + } + ] + }, + { + "nodeId": "org.eclipse.jetty:jetty-jndi@9.4.40.v20210413", + "pkgId": "org.eclipse.jetty:jetty-jndi@9.4.40.v20210413", + "deps": [ + { + "nodeId": "org.eclipse.jetty:jetty-util@9.4.40.v20210413" + } + ] + }, + { + "nodeId": "org.eclipse.jetty.websocket:javax-websocket-client-impl@9.4.40.v20210413", + "pkgId": "org.eclipse.jetty.websocket:javax-websocket-client-impl@9.4.40.v20210413", + "deps": [ + { + "nodeId": "javax.websocket:javax.websocket-client-api@1.0" + }, + { + "nodeId": "org.eclipse.jetty.websocket:websocket-client@9.4.40.v20210413" + } + ] + }, + { + "nodeId": "javax.websocket:javax.websocket-client-api@1.0", + "pkgId": "javax.websocket:javax.websocket-client-api@1.0", + "deps": [] + }, + { + "nodeId": "org.eclipse.jetty.websocket:websocket-client@9.4.40.v20210413", + "pkgId": "org.eclipse.jetty.websocket:websocket-client@9.4.40.v20210413", + "deps": [ + { + "nodeId": "org.eclipse.jetty:jetty-client@9.4.40.v20210413" + }, + { + "nodeId": "org.eclipse.jetty:jetty-io@9.4.40.v20210413" + }, + { + "nodeId": "org.eclipse.jetty:jetty-util@9.4.40.v20210413" + }, + { + "nodeId": "org.eclipse.jetty.websocket:websocket-common@9.4.40.v20210413" + } + ] + }, + { + "nodeId": "org.eclipse.jetty:jetty-client@9.4.40.v20210413", + "pkgId": "org.eclipse.jetty:jetty-client@9.4.40.v20210413", + "deps": [ + { + "nodeId": "org.eclipse.jetty:jetty-http@9.4.40.v20210413" + }, + { + "nodeId": "org.eclipse.jetty:jetty-io@9.4.40.v20210413" + } + ] + }, + { + "nodeId": "org.eclipse.jetty.websocket:websocket-common@9.4.40.v20210413", + "pkgId": "org.eclipse.jetty.websocket:websocket-common@9.4.40.v20210413", + "deps": [ + { + "nodeId": "org.eclipse.jetty:jetty-io@9.4.40.v20210413" + }, + { + "nodeId": "org.eclipse.jetty:jetty-util@9.4.40.v20210413" + }, + { + "nodeId": "org.eclipse.jetty.websocket:websocket-api@9.4.40.v20210413" + } + ] + }, + { + "nodeId": "org.eclipse.jetty.websocket:websocket-api@9.4.40.v20210413", + "pkgId": "org.eclipse.jetty.websocket:websocket-api@9.4.40.v20210413", + "deps": [] + }, + { + "nodeId": "org.eclipse.jetty.websocket:websocket-server@9.4.40.v20210413", + "pkgId": "org.eclipse.jetty.websocket:websocket-server@9.4.40.v20210413", + "deps": [ + { + "nodeId": "org.eclipse.jetty.websocket:websocket-servlet@9.4.40.v20210413" + }, + { + "nodeId": "org.eclipse.jetty:jetty-servlet@9.4.40.v20210413" + }, + { + "nodeId": "org.eclipse.jetty.websocket:websocket-common@9.4.40.v20210413" + }, + { + "nodeId": "org.eclipse.jetty:jetty-http@9.4.40.v20210413" + }, + { + "nodeId": "org.eclipse.jetty.websocket:websocket-client@9.4.40.v20210413" + } + ] + }, + { + "nodeId": "org.eclipse.jetty.websocket:websocket-servlet@9.4.40.v20210413", + "pkgId": "org.eclipse.jetty.websocket:websocket-servlet@9.4.40.v20210413", + "deps": [ + { + "nodeId": "javax.servlet:javax.servlet-api@3.1.0" + }, + { + "nodeId": "org.eclipse.jetty.websocket:websocket-api@9.4.40.v20210413" + } + ] + }, + { + "nodeId": "org.glassfish.jersey.media:jersey-media-sse@2.31", + "pkgId": "org.glassfish.jersey.media:jersey-media-sse@2.31", + "deps": [ + { + "nodeId": "org.glassfish.jersey.core:jersey-server@2.31" + } + ] + }, + { + "nodeId": "meta-common-packages@meta", + "pkgId": "meta-common-packages@meta", + "deps": [ + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "commons-codec:commons-codec@1.10" + }, + { + "nodeId": "org.apache.commons:commons-lang3@3.12.0" + }, + { + "nodeId": "com.google.api:gax@2.3.0" + }, + { + "nodeId": "com.google.auth:google-auth-library-oauth2-http@0.22.0" + }, + { + "nodeId": "com.google.http-client:google-http-client@1.39.2" + }, + { + "nodeId": "org.apache.httpcomponents:httpcore@4.4.13" + }, + { + "nodeId": "org.apache.httpcomponents:httpclient@4.5.13" + }, + { + "nodeId": "com.google.api:api-common@1.9.0" + }, + { + "nodeId": "javax.annotation:javax.annotation-api@1.3.2" + }, + { + "nodeId": "com.google.protobuf:protobuf-java@3.18.2" + }, + { + "nodeId": "com.google.cloud:google-cloud-core@1.48.0" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "org.glassfish.hk2.external:jakarta.inject@2.6.1" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-core@1.12.84" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.intellij:annotations@12.0" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-common@2.31" + }, + { + "nodeId": "commons-lang:commons-lang@2.6" + }, + { + "nodeId": "org.slf4j:slf4j-api@1.7.13" + }, + { + "nodeId": "commons-io:commons-io@2.4" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-s3@1.12.84" + }, + { + "nodeId": "com.google.api-client:google-api-client@1.31.1" + }, + { + "nodeId": "com.google.oauth-client:google-oauth-client@1.23.0" + }, + { + "nodeId": "io.micrometer:micrometer-core@1.5.3" + }, + { + "nodeId": "io.projectreactor:reactor-core@3.4.11" + }, + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//crypto:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "@com_fasterxml_jackson_dataformat_jackson_dataformat_csv//:main@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "//utils/exceptions:main@bazel" + }, + { + "nodeId": "//globals:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//util:main@bazel" + }, + { + "nodeId": "//secred/util:main@bazel" + }, + { + "nodeId": "//secrets/services:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//utils/nullability:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//markdown:main@bazel" + }, + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//aws:main@bazel" + }, + { + "nodeId": "//secrets/system:main@bazel" + }, + { + "nodeId": "//google_cloud:main@bazel" + }, + { + "nodeId": "//logging:main@bazel" + }, + { + "nodeId": "//micrometer:main@bazel" + }, + { + "nodeId": "//ssh:main@bazel" + }, + { + "nodeId": "//services/resync:main@bazel" + }, + { + "nodeId": "//core_utils:main@bazel" + }, + { + "nodeId": "//integrations/db:main@bazel" + }, + { + "nodeId": "//integrations/isolated_endpoint_sync:main@bazel" + }, + { + "nodeId": "//secrets/integration:main@bazel" + }, + { + "nodeId": "//webhook/client:main@bazel" + }, + { + "nodeId": "//integrations/bidirectional_cube:main@bazel" + }, + { + "nodeId": "//integrations/priority_sync:main@bazel" + } + ] + } + ] + } + } +} diff --git a/bazel2snyk/test/fixtures/maven/maven_depgraph_pruned_all.json b/bazel2snyk/test/fixtures/maven/maven_depgraph_pruned_all.json new file mode 100644 index 0000000..33b2510 --- /dev/null +++ b/bazel2snyk/test/fixtures/maven/maven_depgraph_pruned_all.json @@ -0,0 +1,17517 @@ +{ + "depGraph": { + "schemaVersion": "1.2.0", + "pkgManager": { + "name": "maven" + }, + "pkgs": [ + { + "id": "//app:main@bazel", + "info": { + "name": "//app:main", + "version": "bazel" + } + }, + { + "id": "//app/config:main@bazel", + "info": { + "name": "//app/config:main", + "version": "bazel" + } + }, + { + "id": "//core_interfaces:main@bazel", + "info": { + "name": "//core_interfaces:main", + "version": "bazel" + } + }, + { + "id": "//crypto:pojos@bazel", + "info": { + "name": "//crypto:pojos", + "version": "bazel" + } + }, + { + "id": "//database:enums@bazel", + "info": { + "name": "//database:enums", + "version": "bazel" + } + }, + { + "id": "com.google.code.findbugs:jsr305@3.0.2", + "info": { + "name": "com.google.code.findbugs:jsr305", + "version": "3.0.2" + } + }, + { + "id": "//database:schema_migration_model@bazel", + "info": { + "name": "//database:schema_migration_model", + "version": "bazel" + } + }, + { + "id": "//schema_migration:enum_types@bazel", + "info": { + "name": "//schema_migration:enum_types", + "version": "bazel" + } + }, + { + "id": "com.fasterxml.jackson.core:jackson-databind@2.9.8", + "info": { + "name": "com.fasterxml.jackson.core:jackson-databind", + "version": "2.9.8" + } + }, + { + "id": "com.fasterxml.jackson.core:jackson-annotations@2.9.8", + "info": { + "name": "com.fasterxml.jackson.core:jackson-annotations", + "version": "2.9.8" + } + }, + { + "id": "com.fasterxml.jackson.core:jackson-core@2.9.8", + "info": { + "name": "com.fasterxml.jackson.core:jackson-core", + "version": "2.9.8" + } + }, + { + "id": "//events:event_hub@bazel", + "info": { + "name": "//events:event_hub", + "version": "bazel" + } + }, + { + "id": "//logger:main@bazel", + "info": { + "name": "//logger:main", + "version": "bazel" + } + }, + { + "id": "//crypto:main@bazel", + "info": { + "name": "//crypto:main", + "version": "bazel" + } + }, + { + "id": "//json:main@bazel", + "info": { + "name": "//json:main", + "version": "bazel" + } + }, + { + "id": "@com_fasterxml_jackson_dataformat_jackson_dataformat_csv//:main@bazel", + "info": { + "name": "@com_fasterxml_jackson_dataformat_jackson_dataformat_csv//:main", + "version": "bazel" + } + }, + { + "id": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8", + "info": { + "name": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8", + "version": "2.9.8" + } + }, + { + "id": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8", + "info": { + "name": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310", + "version": "2.9.8" + } + }, + { + "id": "com.google.guava:guava@25.1-jre", + "info": { + "name": "com.google.guava:guava", + "version": "25.1-jre" + } + }, + { + "id": "com.google.errorprone:error_prone_annotations@2.13.1", + "info": { + "name": "com.google.errorprone:error_prone_annotations", + "version": "2.13.1" + } + }, + { + "id": "com.google.j2objc:j2objc-annotations@1.3", + "info": { + "name": "com.google.j2objc:j2objc-annotations", + "version": "1.3" + } + }, + { + "id": "org.checkerframework:checker-qual@3.22.0", + "info": { + "name": "org.checkerframework:checker-qual", + "version": "3.22.0" + } + }, + { + "id": "org.codehaus.mojo:animal-sniffer-annotations@1.21", + "info": { + "name": "org.codehaus.mojo:animal-sniffer-annotations", + "version": "1.21" + } + }, + { + "id": "//jwt:main@bazel", + "info": { + "name": "//jwt:main", + "version": "bazel" + } + }, + { + "id": "commons-codec:commons-codec@1.10", + "info": { + "name": "commons-codec:commons-codec", + "version": "1.10" + } + }, + { + "id": "//logger:acmecorp_logger@bazel", + "info": { + "name": "//logger:acmecorp_logger", + "version": "bazel" + } + }, + { + "id": "//utils/time:main@bazel", + "info": { + "name": "//utils/time:main", + "version": "bazel" + } + }, + { + "id": "//utils/exceptions:main@bazel", + "info": { + "name": "//utils/exceptions:main", + "version": "bazel" + } + }, + { + "id": "com.amazonaws:aws-encryption-sdk-java@1.6.1", + "info": { + "name": "com.amazonaws:aws-encryption-sdk-java", + "version": "1.6.1" + } + }, + { + "id": "org.apache.commons:commons-lang3@3.12.0", + "info": { + "name": "org.apache.commons:commons-lang3", + "version": "3.12.0" + } + }, + { + "id": "org.bouncycastle:bcprov-ext-jdk15on@1.70", + "info": { + "name": "org.bouncycastle:bcprov-ext-jdk15on", + "version": "1.70" + } + }, + { + "id": "com.google.api:gax@2.3.0", + "info": { + "name": "com.google.api:gax", + "version": "2.3.0" + } + }, + { + "id": "com.google.auth:google-auth-library-oauth2-http@0.22.0", + "info": { + "name": "com.google.auth:google-auth-library-oauth2-http", + "version": "0.22.0" + } + }, + { + "id": "com.google.http-client:google-http-client@1.39.2", + "info": { + "name": "com.google.http-client:google-http-client", + "version": "1.39.2" + } + }, + { + "id": "org.apache.httpcomponents:httpcore@4.4.13", + "info": { + "name": "org.apache.httpcomponents:httpcore", + "version": "4.4.13" + } + }, + { + "id": "org.apache.httpcomponents:httpclient@4.5.13", + "info": { + "name": "org.apache.httpcomponents:httpclient", + "version": "4.5.13" + } + }, + { + "id": "commons-logging:commons-logging@1.2", + "info": { + "name": "commons-logging:commons-logging", + "version": "1.2" + } + }, + { + "id": "io.opencensus:opencensus-contrib-http-util@0.11.1", + "info": { + "name": "io.opencensus:opencensus-contrib-http-util", + "version": "0.11.1" + } + }, + { + "id": "io.opencensus:opencensus-api@0.12.3", + "info": { + "name": "io.opencensus:opencensus-api", + "version": "0.12.3" + } + }, + { + "id": "io.grpc:grpc-context@1.32.2", + "info": { + "name": "io.grpc:grpc-context", + "version": "1.32.2" + } + }, + { + "id": "com.google.auto.value:auto-value-annotations@1.9", + "info": { + "name": "com.google.auto.value:auto-value-annotations", + "version": "1.9" + } + }, + { + "id": "com.google.http-client:google-http-client-jackson2@1.35.0", + "info": { + "name": "com.google.http-client:google-http-client-jackson2", + "version": "1.35.0" + } + }, + { + "id": "com.google.auth:google-auth-library-credentials@0.9.1", + "info": { + "name": "com.google.auth:google-auth-library-credentials", + "version": "0.9.1" + } + }, + { + "id": "com.google.api:api-common@1.9.0", + "info": { + "name": "com.google.api:api-common", + "version": "1.9.0" + } + }, + { + "id": "javax.annotation:javax.annotation-api@1.3.2", + "info": { + "name": "javax.annotation:javax.annotation-api", + "version": "1.3.2" + } + }, + { + "id": "org.threeten:threetenbp@1.3.3", + "info": { + "name": "org.threeten:threetenbp", + "version": "1.3.3" + } + }, + { + "id": "com.google.api:gax-grpc@2.3.0", + "info": { + "name": "com.google.api:gax-grpc", + "version": "2.3.0" + } + }, + { + "id": "io.grpc:grpc-stub@1.32.2", + "info": { + "name": "io.grpc:grpc-stub", + "version": "1.32.2" + } + }, + { + "id": "io.grpc:grpc-api@1.32.2", + "info": { + "name": "io.grpc:grpc-api", + "version": "1.32.2" + } + }, + { + "id": "io.grpc:grpc-auth@1.32.2", + "info": { + "name": "io.grpc:grpc-auth", + "version": "1.32.2" + } + }, + { + "id": "com.google.api.grpc:proto-google-common-protos@1.15.0", + "info": { + "name": "com.google.api.grpc:proto-google-common-protos", + "version": "1.15.0" + } + }, + { + "id": "com.google.protobuf:protobuf-java@3.18.2", + "info": { + "name": "com.google.protobuf:protobuf-java", + "version": "3.18.2" + } + }, + { + "id": "io.grpc:grpc-alts@1.46.0", + "info": { + "name": "io.grpc:grpc-alts", + "version": "1.46.0" + } + }, + { + "id": "org.conscrypt:conscrypt-openjdk-uber@2.5.1", + "info": { + "name": "org.conscrypt:conscrypt-openjdk-uber", + "version": "2.5.1" + } + }, + { + "id": "io.grpc:grpc-netty-shaded@1.32.2", + "info": { + "name": "io.grpc:grpc-netty-shaded", + "version": "1.32.2" + } + }, + { + "id": "io.grpc:grpc-core@1.32.2", + "info": { + "name": "io.grpc:grpc-core", + "version": "1.32.2" + } + }, + { + "id": "com.google.android:annotations@4.1.1.4", + "info": { + "name": "com.google.android:annotations", + "version": "4.1.1.4" + } + }, + { + "id": "com.google.code.gson:gson@2.9.0", + "info": { + "name": "com.google.code.gson:gson", + "version": "2.9.0" + } + }, + { + "id": "io.perfmark:perfmark-api@0.25.0", + "info": { + "name": "io.perfmark:perfmark-api", + "version": "0.25.0" + } + }, + { + "id": "io.grpc:grpc-grpclb@1.46.0", + "info": { + "name": "io.grpc:grpc-grpclb", + "version": "1.46.0" + } + }, + { + "id": "com.google.protobuf:protobuf-java-util@3.18.2", + "info": { + "name": "com.google.protobuf:protobuf-java-util", + "version": "3.18.2" + } + }, + { + "id": "io.grpc:grpc-protobuf@1.32.2", + "info": { + "name": "io.grpc:grpc-protobuf", + "version": "1.32.2" + } + }, + { + "id": "io.grpc:grpc-protobuf-lite@1.32.2", + "info": { + "name": "io.grpc:grpc-protobuf-lite", + "version": "1.32.2" + } + }, + { + "id": "com.google.protobuf:protobuf-javalite@3.12.0", + "info": { + "name": "com.google.protobuf:protobuf-javalite", + "version": "3.12.0" + } + }, + { + "id": "com.google.api.grpc:proto-google-cloud-kms-v1@0.61.0", + "info": { + "name": "com.google.api.grpc:proto-google-cloud-kms-v1", + "version": "0.61.0" + } + }, + { + "id": "com.google.api.grpc:proto-google-iam-v1@0.13.0", + "info": { + "name": "com.google.api.grpc:proto-google-iam-v1", + "version": "0.13.0" + } + }, + { + "id": "com.google.cloud:google-cloud-kms@1.13.0", + "info": { + "name": "com.google.cloud:google-cloud-kms", + "version": "1.13.0" + } + }, + { + "id": "com.google.cloud:google-cloud-core-grpc@1.19.0", + "info": { + "name": "com.google.cloud:google-cloud-core-grpc", + "version": "1.19.0" + } + }, + { + "id": "com.google.cloud:google-cloud-core@1.48.0", + "info": { + "name": "com.google.cloud:google-cloud-core", + "version": "1.48.0" + } + }, + { + "id": "joda-time:joda-time@2.9.2", + "info": { + "name": "joda-time:joda-time", + "version": "2.9.2" + } + }, + { + "id": "com.sun.xml.bind:jaxb-core@2.2.11", + "info": { + "name": "com.sun.xml.bind:jaxb-core", + "version": "2.2.11" + } + }, + { + "id": "com.sun.xml.bind:jaxb-impl@2.2.11", + "info": { + "name": "com.sun.xml.bind:jaxb-impl", + "version": "2.2.11" + } + }, + { + "id": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6", + "info": { + "name": "jakarta.ws.rs:jakarta.ws.rs-api", + "version": "2.1.6" + } + }, + { + "id": "javax.xml.bind:jaxb-api@2.2.2", + "info": { + "name": "javax.xml.bind:jaxb-api", + "version": "2.2.2" + } + }, + { + "id": "javax.activation:activation@1.1", + "info": { + "name": "javax.activation:activation", + "version": "1.1" + } + }, + { + "id": "javax.xml.stream:stax-api@1.0-2", + "info": { + "name": "javax.xml.stream:stax-api", + "version": "1.0-2" + } + }, + { + "id": "org.glassfish.hk2.external:jakarta.inject@2.6.1", + "info": { + "name": "org.glassfish.hk2.external:jakarta.inject", + "version": "2.6.1" + } + }, + { + "id": "//feature_flag:details@bazel", + "info": { + "name": "//feature_flag:details", + "version": "bazel" + } + }, + { + "id": "//globals:main@bazel", + "info": { + "name": "//globals:main", + "version": "bazel" + } + }, + { + "id": "//lambda:main@bazel", + "info": { + "name": "//lambda:main", + "version": "bazel" + } + }, + { + "id": "//warehouses/common:warehouse_type@bazel", + "info": { + "name": "//warehouses/common:warehouse_type", + "version": "bazel" + } + }, + { + "id": "//secred/client:main@bazel", + "info": { + "name": "//secred/client:main", + "version": "bazel" + } + }, + { + "id": "//secred/common:main@bazel", + "info": { + "name": "//secred/common:main", + "version": "bazel" + } + }, + { + "id": "//secrets/common:main@bazel", + "info": { + "name": "//secrets/common:main", + "version": "bazel" + } + }, + { + "id": "com.amazonaws:aws-java-sdk-core@1.12.84", + "info": { + "name": "com.amazonaws:aws-java-sdk-core", + "version": "1.12.84" + } + }, + { + "id": "com.fasterxml.jackson.dataformat:jackson-dataformat-cbor@2.9.8", + "info": { + "name": "com.fasterxml.jackson.dataformat:jackson-dataformat-cbor", + "version": "2.9.8" + } + }, + { + "id": "software.amazon.ion:ion-java@1.0.2", + "info": { + "name": "software.amazon.ion:ion-java", + "version": "1.0.2" + } + }, + { + "id": "//util:main@bazel", + "info": { + "name": "//util:main", + "version": "bazel" + } + }, + { + "id": "com.fasterxml.jackson.dataformat:jackson-dataformat-yaml@2.9.8", + "info": { + "name": "com.fasterxml.jackson.dataformat:jackson-dataformat-yaml", + "version": "2.9.8" + } + }, + { + "id": "org.yaml:snakeyaml@1.23", + "info": { + "name": "org.yaml:snakeyaml", + "version": "1.23" + } + }, + { + "id": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8", + "info": { + "name": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider", + "version": "2.9.8" + } + }, + { + "id": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-base@2.9.8", + "info": { + "name": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-base", + "version": "2.9.8" + } + }, + { + "id": "com.fasterxml.jackson.module:jackson-module-jaxb-annotations@2.9.8", + "info": { + "name": "com.fasterxml.jackson.module:jackson-module-jaxb-annotations", + "version": "2.9.8" + } + }, + { + "id": "com.intellij:annotations@12.0", + "info": { + "name": "com.intellij:annotations", + "version": "12.0" + } + }, + { + "id": "io.netty:netty-buffer@4.1.50.Final", + "info": { + "name": "io.netty:netty-buffer", + "version": "4.1.50.Final" + } + }, + { + "id": "io.netty:netty-common@4.1.45.Final", + "info": { + "name": "io.netty:netty-common", + "version": "4.1.45.Final" + } + }, + { + "id": "javax.xml.soap:javax.xml.soap-api@1.4.0", + "info": { + "name": "javax.xml.soap:javax.xml.soap-api", + "version": "1.4.0" + } + }, + { + "id": "org.bouncycastle:bcpkix-jdk15on@1.70", + "info": { + "name": "org.bouncycastle:bcpkix-jdk15on", + "version": "1.70" + } + }, + { + "id": "org.bouncycastle:bcprov-jdk15on@1.70", + "info": { + "name": "org.bouncycastle:bcprov-jdk15on", + "version": "1.70" + } + }, + { + "id": "org.bouncycastle:bcutil-jdk15on:jar@1.70", + "info": { + "name": "org.bouncycastle:bcutil-jdk15on:jar", + "version": "1.70" + } + }, + { + "id": "org.bouncycastle:bcprov-jdk15to18@1.70", + "info": { + "name": "org.bouncycastle:bcprov-jdk15to18", + "version": "1.70" + } + }, + { + "id": "org.glassfish.jersey.core:jersey-client@2.31", + "info": { + "name": "org.glassfish.jersey.core:jersey-client", + "version": "2.31" + } + }, + { + "id": "org.glassfish.jersey.core:jersey-common@2.31", + "info": { + "name": "org.glassfish.jersey.core:jersey-common", + "version": "2.31" + } + }, + { + "id": "org.glassfish.hk2:osgi-resource-locator@1.0.3", + "info": { + "name": "org.glassfish.hk2:osgi-resource-locator", + "version": "1.0.3" + } + }, + { + "id": "jakarta.annotation:jakarta.annotation-api@1.3.5", + "info": { + "name": "jakarta.annotation:jakarta.annotation-api", + "version": "1.3.5" + } + }, + { + "id": "com.sun.activation:jakarta.activation@2.0.1", + "info": { + "name": "com.sun.activation:jakarta.activation", + "version": "2.0.1" + } + }, + { + "id": "org.jooq:jool-java-8@0.9.14", + "info": { + "name": "org.jooq:jool-java-8", + "version": "0.9.14" + } + }, + { + "id": "commons-configuration:commons-configuration@1.10", + "info": { + "name": "commons-configuration:commons-configuration", + "version": "1.10" + } + }, + { + "id": "commons-lang:commons-lang@2.6", + "info": { + "name": "commons-lang:commons-lang", + "version": "2.6" + } + }, + { + "id": "org.glassfish.jersey.connectors:jersey-apache-connector@2.31", + "info": { + "name": "org.glassfish.jersey.connectors:jersey-apache-connector", + "version": "2.31" + } + }, + { + "id": "//secred/util:main@bazel", + "info": { + "name": "//secred/util:main", + "version": "bazel" + } + }, + { + "id": "//database:credential_models@bazel", + "info": { + "name": "//database:credential_models", + "version": "bazel" + } + }, + { + "id": "//secrets/services:main@bazel", + "info": { + "name": "//secrets/services:main", + "version": "bazel" + } + }, + { + "id": "org.json:json@20171018", + "info": { + "name": "org.json:json", + "version": "20171018" + } + }, + { + "id": "//feature_flag:main@bazel", + "info": { + "name": "//feature_flag:main", + "version": "bazel" + } + }, + { + "id": "//database:flags@bazel", + "info": { + "name": "//database:flags", + "version": "bazel" + } + }, + { + "id": "//database:postgresql_jdbc_fix@bazel", + "info": { + "name": "//database:postgresql_jdbc_fix", + "version": "bazel" + } + }, + { + "id": "org.postgresql:postgresql@42.3.3", + "info": { + "name": "org.postgresql:postgresql", + "version": "42.3.3" + } + }, + { + "id": "//api/db:api_production_datasource@bazel", + "info": { + "name": "//api/db:api_production_datasource", + "version": "bazel" + } + }, + { + "id": "com.zaxxer:HikariCP@3.4.1", + "info": { + "name": "com.zaxxer:HikariCP", + "version": "3.4.1" + } + }, + { + "id": "org.slf4j:slf4j-api@1.7.13", + "info": { + "name": "org.slf4j:slf4j-api", + "version": "1.7.13" + } + }, + { + "id": "commons-io:commons-io@2.4", + "info": { + "name": "commons-io:commons-io", + "version": "2.4" + } + }, + { + "id": "//database:data_sources@bazel", + "info": { + "name": "//database:data_sources", + "version": "bazel" + } + }, + { + "id": "com.mchange:c3p0@0.9.5.1", + "info": { + "name": "com.mchange:c3p0", + "version": "0.9.5.1" + } + }, + { + "id": "com.mchange:mchange-commons-java@0.2.10", + "info": { + "name": "com.mchange:mchange-commons-java", + "version": "0.2.10" + } + }, + { + "id": "//database/exceptions:main@bazel", + "info": { + "name": "//database/exceptions:main", + "version": "bazel" + } + }, + { + "id": "//utils/nullability:main@bazel", + "info": { + "name": "//utils/nullability:main", + "version": "bazel" + } + }, + { + "id": "//dockerized/postgres:main@bazel", + "info": { + "name": "//dockerized/postgres:main", + "version": "bazel" + } + }, + { + "id": "//dockerized/common:main@bazel", + "info": { + "name": "//dockerized/common:main", + "version": "bazel" + } + }, + { + "id": "//metal:main@bazel", + "info": { + "name": "//metal:main", + "version": "bazel" + } + }, + { + "id": "com.amazonaws:aws-java-sdk-logs@1.12.84", + "info": { + "name": "com.amazonaws:aws-java-sdk-logs", + "version": "1.12.84" + } + }, + { + "id": "com.amazonaws:jmespath-java@1.11.91", + "info": { + "name": "com.amazonaws:jmespath-java", + "version": "1.11.91" + } + }, + { + "id": "com.amazonaws:aws-java-sdk-resourcegroupstaggingapi@1.12.84", + "info": { + "name": "com.amazonaws:aws-java-sdk-resourcegroupstaggingapi", + "version": "1.12.84" + } + }, + { + "id": "com.amazonaws:aws-java-sdk-s3@1.12.84", + "info": { + "name": "com.amazonaws:aws-java-sdk-s3", + "version": "1.12.84" + } + }, + { + "id": "com.amazonaws:aws-java-sdk-kms@1.12.84", + "info": { + "name": "com.amazonaws:aws-java-sdk-kms", + "version": "1.12.84" + } + }, + { + "id": "//newrelic_utils:donkey_logs_url_builder@bazel", + "info": { + "name": "//newrelic_utils:donkey_logs_url_builder", + "version": "bazel" + } + }, + { + "id": "//slack:main@bazel", + "info": { + "name": "//slack:main", + "version": "bazel" + } + }, + { + "id": "//http:main@bazel", + "info": { + "name": "//http:main", + "version": "bazel" + } + }, + { + "id": "javax.servlet:javax.servlet-api@3.1.0", + "info": { + "name": "javax.servlet:javax.servlet-api", + "version": "3.1.0" + } + }, + { + "id": "org.eclipse.jetty:jetty-server@9.4.40.v20210413", + "info": { + "name": "org.eclipse.jetty:jetty-server", + "version": "9.4.40.v20210413" + } + }, + { + "id": "org.eclipse.jetty:jetty-http@9.4.40.v20210413", + "info": { + "name": "org.eclipse.jetty:jetty-http", + "version": "9.4.40.v20210413" + } + }, + { + "id": "org.eclipse.jetty:jetty-io@9.4.40.v20210413", + "info": { + "name": "org.eclipse.jetty:jetty-io", + "version": "9.4.40.v20210413" + } + }, + { + "id": "org.eclipse.jetty:jetty-util@9.4.40.v20210413", + "info": { + "name": "org.eclipse.jetty:jetty-util", + "version": "9.4.40.v20210413" + } + }, + { + "id": "org.glassfish.hk2:hk2-api@2.6.1", + "info": { + "name": "org.glassfish.hk2:hk2-api", + "version": "2.6.1" + } + }, + { + "id": "org.glassfish.hk2:hk2-utils@2.6.1", + "info": { + "name": "org.glassfish.hk2:hk2-utils", + "version": "2.6.1" + } + }, + { + "id": "org.glassfish.hk2.external:aopalliance-repackaged@2.6.1", + "info": { + "name": "org.glassfish.hk2.external:aopalliance-repackaged", + "version": "2.6.1" + } + }, + { + "id": "org.glassfish.jersey.core:jersey-server@2.31", + "info": { + "name": "org.glassfish.jersey.core:jersey-server", + "version": "2.31" + } + }, + { + "id": "org.glassfish.jersey.media:jersey-media-jaxb@2.31", + "info": { + "name": "org.glassfish.jersey.media:jersey-media-jaxb", + "version": "2.31" + } + }, + { + "id": "jakarta.validation:jakarta.validation-api@2.0.2", + "info": { + "name": "jakarta.validation:jakarta.validation-api", + "version": "2.0.2" + } + }, + { + "id": "jakarta.xml.bind:jakarta.xml.bind-api@3.0.1", + "info": { + "name": "jakarta.xml.bind:jakarta.xml.bind-api", + "version": "3.0.1" + } + }, + { + "id": "org.glassfish.jersey.inject:jersey-hk2@2.31", + "info": { + "name": "org.glassfish.jersey.inject:jersey-hk2", + "version": "2.31" + } + }, + { + "id": "org.glassfish.hk2:hk2-locator@2.6.1", + "info": { + "name": "org.glassfish.hk2:hk2-locator", + "version": "2.6.1" + } + }, + { + "id": "org.javassist:javassist@3.21.0-GA", + "info": { + "name": "org.javassist:javassist", + "version": "3.21.0-GA" + } + }, + { + "id": "//forms:main@bazel", + "info": { + "name": "//forms:main", + "version": "bazel" + } + }, + { + "id": "//app:docs_deps@bazel", + "info": { + "name": "//app:docs_deps", + "version": "bazel" + } + }, + { + "id": "//heartbeat:main@bazel", + "info": { + "name": "//heartbeat:main", + "version": "bazel" + } + }, + { + "id": "//markdown:main@bazel", + "info": { + "name": "//markdown:main", + "version": "bazel" + } + }, + { + "id": "org.apache.velocity:velocity@1.7", + "info": { + "name": "org.apache.velocity:velocity", + "version": "1.7" + } + }, + { + "id": "commons-collections:commons-collections@3.2.2", + "info": { + "name": "commons-collections:commons-collections", + "version": "3.2.2" + } + }, + { + "id": "org.pegdown:pegdown@1.5.0", + "info": { + "name": "org.pegdown:pegdown", + "version": "1.5.0" + } + }, + { + "id": "org.parboiled:parboiled-java@1.2.0", + "info": { + "name": "org.parboiled:parboiled-java", + "version": "1.2.0" + } + }, + { + "id": "org.ow2.asm:asm-tree@8.0.1", + "info": { + "name": "org.ow2.asm:asm-tree", + "version": "8.0.1" + } + }, + { + "id": "org.ow2.asm:asm@8.0.1", + "info": { + "name": "org.ow2.asm:asm", + "version": "8.0.1" + } + }, + { + "id": "org.ow2.asm:asm-analysis@8.0.1", + "info": { + "name": "org.ow2.asm:asm-analysis", + "version": "8.0.1" + } + }, + { + "id": "org.ow2.asm:asm-util@8.0.1", + "info": { + "name": "org.ow2.asm:asm-util", + "version": "8.0.1" + } + }, + { + "id": "org.parboiled:parboiled-core@1.2.0", + "info": { + "name": "org.parboiled:parboiled-core", + "version": "1.2.0" + } + }, + { + "id": "//schema_migration:schema_migration_info@bazel", + "info": { + "name": "//schema_migration:schema_migration_info", + "version": "bazel" + } + }, + { + "id": "//core_interfaces:names_dep_to_avoid_cyclic_core_dep@bazel", + "info": { + "name": "//core_interfaces:names_dep_to_avoid_cyclic_core_dep", + "version": "bazel" + } + }, + { + "id": "com.ibm.icu:icu4j@62.1", + "info": { + "name": "com.ibm.icu:icu4j", + "version": "62.1" + } + }, + { + "id": "//sources/types:main@bazel", + "info": { + "name": "//sources/types:main", + "version": "bazel" + } + }, + { + "id": "//utils/validations:main@bazel", + "info": { + "name": "//utils/validations:main", + "version": "bazel" + } + }, + { + "id": "com.fasterxml.jackson.datatype:jackson-datatype-joda@2.9.8", + "info": { + "name": "com.fasterxml.jackson.datatype:jackson-datatype-joda", + "version": "2.9.8" + } + }, + { + "id": "org.glassfish.jersey.security:oauth1-client@2.31", + "info": { + "name": "org.glassfish.jersey.security:oauth1-client", + "version": "2.31" + } + }, + { + "id": "org.glassfish.jersey.security:oauth1-signature@2.31", + "info": { + "name": "org.glassfish.jersey.security:oauth1-signature", + "version": "2.31" + } + }, + { + "id": "//database:hikari@bazel", + "info": { + "name": "//database:hikari", + "version": "bazel" + } + }, + { + "id": "//database:main@bazel", + "info": { + "name": "//database:main", + "version": "bazel" + } + }, + { + "id": "//dbt/manifest:main@bazel", + "info": { + "name": "//dbt/manifest:main", + "version": "bazel" + } + }, + { + "id": "//dynamo:main@bazel", + "info": { + "name": "//dynamo:main", + "version": "bazel" + } + }, + { + "id": "//aws:main@bazel", + "info": { + "name": "//aws:main", + "version": "bazel" + } + }, + { + "id": "//cloud_storage:main@bazel", + "info": { + "name": "//cloud_storage:main", + "version": "bazel" + } + }, + { + "id": "//emails:core@bazel", + "info": { + "name": "//emails:core", + "version": "bazel" + } + }, + { + "id": "//secrets/system:main@bazel", + "info": { + "name": "//secrets/system:main", + "version": "bazel" + } + }, + { + "id": "com.amazonaws:aws-java-sdk-cloudtrail@1.12.84", + "info": { + "name": "com.amazonaws:aws-java-sdk-cloudtrail", + "version": "1.12.84" + } + }, + { + "id": "com.amazonaws:aws-java-sdk-config@1.12.84", + "info": { + "name": "com.amazonaws:aws-java-sdk-config", + "version": "1.12.84" + } + }, + { + "id": "com.amazonaws:aws-java-sdk-dynamodb@1.12.84", + "info": { + "name": "com.amazonaws:aws-java-sdk-dynamodb", + "version": "1.12.84" + } + }, + { + "id": "com.amazonaws:aws-java-sdk-ec2@1.12.84", + "info": { + "name": "com.amazonaws:aws-java-sdk-ec2", + "version": "1.12.84" + } + }, + { + "id": "com.amazonaws:aws-java-sdk-elasticloadbalancingv2@1.12.84", + "info": { + "name": "com.amazonaws:aws-java-sdk-elasticloadbalancingv2", + "version": "1.12.84" + } + }, + { + "id": "com.amazonaws:aws-java-sdk-glue@1.12.84", + "info": { + "name": "com.amazonaws:aws-java-sdk-glue", + "version": "1.12.84" + } + }, + { + "id": "com.amazonaws:aws-java-sdk-iam@1.12.84", + "info": { + "name": "com.amazonaws:aws-java-sdk-iam", + "version": "1.12.84" + } + }, + { + "id": "com.amazonaws:aws-java-sdk-route53@1.12.84", + "info": { + "name": "com.amazonaws:aws-java-sdk-route53", + "version": "1.12.84" + } + }, + { + "id": "com.amazonaws:aws-java-sdk-ses@1.12.84", + "info": { + "name": "com.amazonaws:aws-java-sdk-ses", + "version": "1.12.84" + } + }, + { + "id": "com.amazonaws:aws-java-sdk-sts@1.12.84", + "info": { + "name": "com.amazonaws:aws-java-sdk-sts", + "version": "1.12.84" + } + }, + { + "id": "//jackson_module_json_schema:main@bazel", + "info": { + "name": "//jackson_module_json_schema:main", + "version": "bazel" + } + }, + { + "id": "javax.validation:validation-api@1.1.0.Final", + "info": { + "name": "javax.validation:validation-api", + "version": "1.1.0.Final" + } + }, + { + "id": "//partners:main@bazel", + "info": { + "name": "//partners:main", + "version": "bazel" + } + }, + { + "id": "//webhook:main@bazel", + "info": { + "name": "//webhook:main", + "version": "bazel" + } + }, + { + "id": "//words:main@bazel", + "info": { + "name": "//words:main", + "version": "bazel" + } + }, + { + "id": "com.fasterxml.jackson.dataformat:jackson-dataformat-smile@2.9.8", + "info": { + "name": "com.fasterxml.jackson.dataformat:jackson-dataformat-smile", + "version": "2.9.8" + } + }, + { + "id": "com.google.api-client:google-api-client@1.31.1", + "info": { + "name": "com.google.api-client:google-api-client", + "version": "1.31.1" + } + }, + { + "id": "com.google.http-client:google-http-client-apache-v2@1.39.2", + "info": { + "name": "com.google.http-client:google-http-client-apache-v2", + "version": "1.39.2" + } + }, + { + "id": "com.google.oauth-client:google-oauth-client@1.23.0", + "info": { + "name": "com.google.oauth-client:google-oauth-client", + "version": "1.23.0" + } + }, + { + "id": "io.micrometer:micrometer-core@1.5.3", + "info": { + "name": "io.micrometer:micrometer-core", + "version": "1.5.3" + } + }, + { + "id": "org.hdrhistogram:HdrHistogram@2.1.12", + "info": { + "name": "org.hdrhistogram:HdrHistogram", + "version": "2.1.12" + } + }, + { + "id": "org.latencyutils:LatencyUtils@2.0.3", + "info": { + "name": "org.latencyutils:LatencyUtils", + "version": "2.0.3" + } + }, + { + "id": "//common:main@bazel", + "info": { + "name": "//common:main", + "version": "bazel" + } + }, + { + "id": "//utils/threading:main@bazel", + "info": { + "name": "//utils/threading:main", + "version": "bazel" + } + }, + { + "id": "//core_interfaces/cursor:main@bazel", + "info": { + "name": "//core_interfaces/cursor:main", + "version": "bazel" + } + }, + { + "id": "//database/resilience:main@bazel", + "info": { + "name": "//database/resilience:main", + "version": "bazel" + } + }, + { + "id": "//database:ssh_verify@bazel", + "info": { + "name": "//database:ssh_verify", + "version": "bazel" + } + }, + { + "id": "//database:tls_verify@bazel", + "info": { + "name": "//database:tls_verify", + "version": "bazel" + } + }, + { + "id": "//dbt/api/client:main@bazel", + "info": { + "name": "//dbt/api/client:main", + "version": "bazel" + } + }, + { + "id": "//http:basic_auth_credentials@bazel", + "info": { + "name": "//http:basic_auth_credentials", + "version": "bazel" + } + }, + { + "id": "//http:curl_request@bazel", + "info": { + "name": "//http:curl_request", + "version": "bazel" + } + }, + { + "id": "//utils/uri:main@bazel", + "info": { + "name": "//utils/uri:main", + "version": "bazel" + } + }, + { + "id": "//dbt/services:main@bazel", + "info": { + "name": "//dbt/services:main", + "version": "bazel" + } + }, + { + "id": "//dbt/git:main@bazel", + "info": { + "name": "//dbt/git:main", + "version": "bazel" + } + }, + { + "id": "org.eclipse.jgit:org.eclipse.jgit@6.2.0.202206071550-r", + "info": { + "name": "org.eclipse.jgit:org.eclipse.jgit", + "version": "6.2.0.202206071550-r" + } + }, + { + "id": "com.googlecode.javaewah:JavaEWAH@1.1.13", + "info": { + "name": "com.googlecode.javaewah:JavaEWAH", + "version": "1.1.13" + } + }, + { + "id": "org.eclipse.jgit:org.eclipse.jgit.ssh.apache@6.2.0.202206071550-r", + "info": { + "name": "org.eclipse.jgit:org.eclipse.jgit.ssh.apache", + "version": "6.2.0.202206071550-r" + } + }, + { + "id": "net.i2p.crypto:eddsa@0.3.0", + "info": { + "name": "net.i2p.crypto:eddsa", + "version": "0.3.0" + } + }, + { + "id": "org.apache.sshd:sshd-sftp@2.8.0", + "info": { + "name": "org.apache.sshd:sshd-sftp", + "version": "2.8.0" + } + }, + { + "id": "org.apache.sshd:sshd-core@2.8.0", + "info": { + "name": "org.apache.sshd:sshd-core", + "version": "2.8.0" + } + }, + { + "id": "org.apache.sshd:sshd-common@2.8.0", + "info": { + "name": "org.apache.sshd:sshd-common", + "version": "2.8.0" + } + }, + { + "id": "org.slf4j:jcl-over-slf4j@1.7.32", + "info": { + "name": "org.slf4j:jcl-over-slf4j", + "version": "1.7.32" + } + }, + { + "id": "org.apache.sshd:sshd-osgi@2.8.0", + "info": { + "name": "org.apache.sshd:sshd-osgi", + "version": "2.8.0" + } + }, + { + "id": "//emails:main@bazel", + "info": { + "name": "//emails:main", + "version": "bazel" + } + }, + { + "id": "//feature_flag:flags@bazel", + "info": { + "name": "//feature_flag:flags", + "version": "bazel" + } + }, + { + "id": "//feature_flag/service:main@bazel", + "info": { + "name": "//feature_flag/service:main", + "version": "bazel" + } + }, + { + "id": "com.hubspot.jinjava:jinjava@2.5.6", + "info": { + "name": "com.hubspot.jinjava:jinjava", + "version": "2.5.6" + } + }, + { + "id": "org.jsoup:jsoup@1.8.2", + "info": { + "name": "org.jsoup:jsoup", + "version": "1.8.2" + } + }, + { + "id": "ch.obermuhlner:big-math@2.0.0", + "info": { + "name": "ch.obermuhlner:big-math", + "version": "2.0.0" + } + }, + { + "id": "com.google.code.findbugs:annotations@3.0.1", + "info": { + "name": "com.google.code.findbugs:annotations", + "version": "3.0.1" + } + }, + { + "id": "com.google.re2j:re2j@1.5", + "info": { + "name": "com.google.re2j:re2j", + "version": "1.5" + } + }, + { + "id": "com.googlecode.java-ipv6:java-ipv6@0.17", + "info": { + "name": "com.googlecode.java-ipv6:java-ipv6", + "version": "0.17" + } + }, + { + "id": "commons-net:commons-net@3.3", + "info": { + "name": "commons-net:commons-net", + "version": "3.3" + } + }, + { + "id": "//services:main@bazel", + "info": { + "name": "//services:main", + "version": "bazel" + } + }, + { + "id": "//core_implementation:main@bazel", + "info": { + "name": "//core_implementation:main", + "version": "bazel" + } + }, + { + "id": "//core_implementation:operation_java_proto@bazel", + "info": { + "name": "//core_implementation:operation_java_proto", + "version": "bazel" + } + }, + { + "id": "//core_implementation:operation_proto@bazel", + "info": { + "name": "//core_implementation:operation_proto", + "version": "bazel" + } + }, + { + "id": "//core_implementation/proto:row_proto@bazel", + "info": { + "name": "//core_implementation/proto:row_proto", + "version": "bazel" + } + }, + { + "id": "//cloudwatch_metrics:main@bazel", + "info": { + "name": "//cloudwatch_metrics:main", + "version": "bazel" + } + }, + { + "id": "//google_cloud:main@bazel", + "info": { + "name": "//google_cloud:main", + "version": "bazel" + } + }, + { + "id": "@com_google_cloud_google_cloud_bigquerydatatransfer//:main@bazel", + "info": { + "name": "@com_google_cloud_google_cloud_bigquerydatatransfer//:main", + "version": "bazel" + } + }, + { + "id": "com.google.api.grpc:proto-google-cloud-monitoring-v3@1.75.0", + "info": { + "name": "com.google.api.grpc:proto-google-cloud-monitoring-v3", + "version": "1.75.0" + } + }, + { + "id": "com.google.api.grpc:proto-google-cloud-pubsub-v1@1.101.1", + "info": { + "name": "com.google.api.grpc:proto-google-cloud-pubsub-v1", + "version": "1.101.1" + } + }, + { + "id": "com.google.guava:listenablefuture@9999.0-empty-to-avoid-conflict-with-guava", + "info": { + "name": "com.google.guava:listenablefuture", + "version": "9999.0-empty-to-avoid-conflict-with-guava" + } + }, + { + "id": "com.google.guava:failureaccess@1.0.1", + "info": { + "name": "com.google.guava:failureaccess", + "version": "1.0.1" + } + }, + { + "id": "com.google.apis:google-api-services-bigquery@v2-rev459-1.25.0", + "info": { + "name": "com.google.apis:google-api-services-bigquery", + "version": "v2-rev459-1.25.0" + } + }, + { + "id": "com.google.apis:google-api-services-cloudresourcemanager@v1-rev495-1.23.0", + "info": { + "name": "com.google.apis:google-api-services-cloudresourcemanager", + "version": "v1-rev495-1.23.0" + } + }, + { + "id": "com.google.apis:google-api-services-iam@v1-rev193-1.22.0", + "info": { + "name": "com.google.apis:google-api-services-iam", + "version": "v1-rev193-1.22.0" + } + }, + { + "id": "com.google.apis:google-api-services-storage@v1-rev20200326-1.30.9", + "info": { + "name": "com.google.apis:google-api-services-storage", + "version": "v1-rev20200326-1.30.9" + } + }, + { + "id": "com.google.cloud:google-cloud-datastore@1.70.0", + "info": { + "name": "com.google.cloud:google-cloud-datastore", + "version": "1.70.0" + } + }, + { + "id": "com.google.cloud.datastore:datastore-v1-proto-client@1.6.0", + "info": { + "name": "com.google.cloud.datastore:datastore-v1-proto-client", + "version": "1.6.0" + } + }, + { + "id": "com.google.api.grpc:proto-google-cloud-datastore-v1@0.54.0", + "info": { + "name": "com.google.api.grpc:proto-google-cloud-datastore-v1", + "version": "0.54.0" + } + }, + { + "id": "com.google.http-client:google-http-client-protobuf@1.29.1", + "info": { + "name": "com.google.http-client:google-http-client-protobuf", + "version": "1.29.1" + } + }, + { + "id": "com.google.http-client:google-http-client-jackson@1.23.0", + "info": { + "name": "com.google.http-client:google-http-client-jackson", + "version": "1.23.0" + } + }, + { + "id": "org.codehaus.jackson:jackson-core-asl@1.9.13", + "info": { + "name": "org.codehaus.jackson:jackson-core-asl", + "version": "1.9.13" + } + }, + { + "id": "com.google.cloud:google-cloud-core-http@1.48.0", + "info": { + "name": "com.google.cloud:google-cloud-core-http", + "version": "1.48.0" + } + }, + { + "id": "com.google.http-client:google-http-client-appengine@1.23.0", + "info": { + "name": "com.google.http-client:google-http-client-appengine", + "version": "1.23.0" + } + }, + { + "id": "com.google.api:gax-httpjson@0.42.0", + "info": { + "name": "com.google.api:gax-httpjson", + "version": "0.42.0" + } + }, + { + "id": "com.google.cloud:google-cloud-monitoring@1.93.0", + "info": { + "name": "com.google.cloud:google-cloud-monitoring", + "version": "1.93.0" + } + }, + { + "id": "com.google.cloud:google-cloud-pubsub@1.119.1", + "info": { + "name": "com.google.cloud:google-cloud-pubsub", + "version": "1.119.1" + } + }, + { + "id": "io.opencensus:opencensus-proto@0.2.0", + "info": { + "name": "io.opencensus:opencensus-proto", + "version": "0.2.0" + } + }, + { + "id": "io.grpc:grpc-xds@1.46.0", + "info": { + "name": "io.grpc:grpc-xds", + "version": "1.46.0" + } + }, + { + "id": "io.grpc:grpc-services@1.46.0", + "info": { + "name": "io.grpc:grpc-services", + "version": "1.46.0" + } + }, + { + "id": "io.grpc:grpc-googleapis@1.46.0", + "info": { + "name": "io.grpc:grpc-googleapis", + "version": "1.46.0" + } + }, + { + "id": "com.google.http-client:google-http-client-gson@1.41.8", + "info": { + "name": "com.google.http-client:google-http-client-gson", + "version": "1.41.8" + } + }, + { + "id": "com.google.cloud:google-cloud-storage@1.108.0", + "info": { + "name": "com.google.cloud:google-cloud-storage", + "version": "1.108.0" + } + }, + { + "id": "io.jsonwebtoken:jjwt@0.9.0", + "info": { + "name": "io.jsonwebtoken:jjwt", + "version": "0.9.0" + } + }, + { + "id": "com.amazonaws:aws-java-sdk-cloudwatch@1.12.84", + "info": { + "name": "com.amazonaws:aws-java-sdk-cloudwatch", + "version": "1.12.84" + } + }, + { + "id": "//core_implementation/column_blocking:main@bazel", + "info": { + "name": "//core_implementation/column_blocking:main", + "version": "bazel" + } + }, + { + "id": "//core_implementation/proto:main@bazel", + "info": { + "name": "//core_implementation/proto:main", + "version": "bazel" + } + }, + { + "id": "//core_implementation/proto:row_java_proto@bazel", + "info": { + "name": "//core_implementation/proto:row_java_proto", + "version": "bazel" + } + }, + { + "id": "//utils/jdk:main@bazel", + "info": { + "name": "//utils/jdk:main", + "version": "bazel" + } + }, + { + "id": "//utils/serializers:main@bazel", + "info": { + "name": "//utils/serializers:main", + "version": "bazel" + } + }, + { + "id": "org.apache.commons:commons-pool2@2.8.0", + "info": { + "name": "org.apache.commons:commons-pool2", + "version": "2.8.0" + } + }, + { + "id": "//core_implementation/transform:main@bazel", + "info": { + "name": "//core_implementation/transform:main", + "version": "bazel" + } + }, + { + "id": "//utils/serialization:main@bazel", + "info": { + "name": "//utils/serialization:main", + "version": "bazel" + } + }, + { + "id": "//core_interfaces:warning@bazel", + "info": { + "name": "//core_interfaces:warning", + "version": "bazel" + } + }, + { + "id": "//logging:main@bazel", + "info": { + "name": "//logging:main", + "version": "bazel" + } + }, + { + "id": "//log_appender/cloudwatch:main@bazel", + "info": { + "name": "//log_appender/cloudwatch:main", + "version": "bazel" + } + }, + { + "id": "//log_appender/gcs_appender:main@bazel", + "info": { + "name": "//log_appender/gcs_appender:main", + "version": "bazel" + } + }, + { + "id": "//utils/hook:main@bazel", + "info": { + "name": "//utils/hook:main", + "version": "bazel" + } + }, + { + "id": "//log_appender/stackdriver:main@bazel", + "info": { + "name": "//log_appender/stackdriver:main", + "version": "bazel" + } + }, + { + "id": "com.google.cloud:google-cloud-logging@1.19.0", + "info": { + "name": "com.google.cloud:google-cloud-logging", + "version": "1.19.0" + } + }, + { + "id": "com.google.api.grpc:proto-google-cloud-logging-v2@0.2.1", + "info": { + "name": "com.google.api.grpc:proto-google-cloud-logging-v2", + "version": "0.2.1" + } + }, + { + "id": "//micrometer:main@bazel", + "info": { + "name": "//micrometer:main", + "version": "bazel" + } + }, + { + "id": "com.newrelic.telemetry:micrometer-registry-new-relic@0.6.0", + "info": { + "name": "com.newrelic.telemetry:micrometer-registry-new-relic", + "version": "0.6.0" + } + }, + { + "id": "com.newrelic.telemetry:telemetry@0.7.0", + "info": { + "name": "com.newrelic.telemetry:telemetry", + "version": "0.7.0" + } + }, + { + "id": "com.newrelic.telemetry:telemetry-core@0.7.0", + "info": { + "name": "com.newrelic.telemetry:telemetry-core", + "version": "0.7.0" + } + }, + { + "id": "io.micrometer:micrometer-registry-stackdriver@1.5.3", + "info": { + "name": "io.micrometer:micrometer-registry-stackdriver", + "version": "1.5.3" + } + }, + { + "id": "//pipeline_queue:main@bazel", + "info": { + "name": "//pipeline_queue:main", + "version": "bazel" + } + }, + { + "id": "//shaded_dependencies/azure:azure_identity_shaded@bazel", + "info": { + "name": "//shaded_dependencies/azure:azure_identity_shaded", + "version": "bazel" + } + }, + { + "id": "//shaded_dependencies/azure:azure_storage_blob_shaded@bazel", + "info": { + "name": "//shaded_dependencies/azure:azure_storage_blob_shaded", + "version": "bazel" + } + }, + { + "id": "//utils/network_monitor:main@bazel", + "info": { + "name": "//utils/network_monitor:main", + "version": "bazel" + } + }, + { + "id": "//utils/os:main@bazel", + "info": { + "name": "//utils/os:main", + "version": "bazel" + } + }, + { + "id": "//schema_migration:main@bazel", + "info": { + "name": "//schema_migration:main", + "version": "bazel" + } + }, + { + "id": "//schema_migration:service@bazel", + "info": { + "name": "//schema_migration:service", + "version": "bazel" + } + }, + { + "id": "//utils/sync_statistics:main@bazel", + "info": { + "name": "//utils/sync_statistics:main", + "version": "bazel" + } + }, + { + "id": "//benchmarking:stats@bazel", + "info": { + "name": "//benchmarking:stats", + "version": "bazel" + } + }, + { + "id": "com.fasterxml.jackson.dataformat:jackson-dataformat-xml@2.9.8", + "info": { + "name": "com.fasterxml.jackson.dataformat:jackson-dataformat-xml", + "version": "2.9.8" + } + }, + { + "id": "org.codehaus.woodstox:stax2-api@3.1.4", + "info": { + "name": "org.codehaus.woodstox:stax2-api", + "version": "3.1.4" + } + }, + { + "id": "com.fasterxml.woodstox:woodstox-core@5.0.3", + "info": { + "name": "com.fasterxml.woodstox:woodstox-core", + "version": "5.0.3" + } + }, + { + "id": "io.apptik.json:json-core@1.0.4", + "info": { + "name": "io.apptik.json:json-core", + "version": "1.0.4" + } + }, + { + "id": "//warehouses/common:observability@bazel", + "info": { + "name": "//warehouses/common:observability", + "version": "bazel" + } + }, + { + "id": "//warehouses/common:events@bazel", + "info": { + "name": "//warehouses/common:events", + "version": "bazel" + } + }, + { + "id": "//warehouses/common:feature_flags@bazel", + "info": { + "name": "//warehouses/common:feature_flags", + "version": "bazel" + } + }, + { + "id": "//heartbeat:lite@bazel", + "info": { + "name": "//heartbeat:lite", + "version": "bazel" + } + }, + { + "id": "com.github.alexandrnikitin:bloom-filter_2.11@0.11.0", + "info": { + "name": "com.github.alexandrnikitin:bloom-filter_2.11", + "version": "0.11.0" + } + }, + { + "id": "org.scala-lang:scala-library@2.11.1", + "info": { + "name": "org.scala-lang:scala-library", + "version": "2.11.1" + } + }, + { + "id": "io.projectreactor:reactor-core@3.4.11", + "info": { + "name": "io.projectreactor:reactor-core", + "version": "3.4.11" + } + }, + { + "id": "org.reactivestreams:reactive-streams@1.0.3", + "info": { + "name": "org.reactivestreams:reactive-streams", + "version": "1.0.3" + } + }, + { + "id": "net.agkn:hll@1.6.0", + "info": { + "name": "net.agkn:hll", + "version": "1.6.0" + } + }, + { + "id": "it.unimi.dsi:fastutil@8.1.0", + "info": { + "name": "it.unimi.dsi:fastutil", + "version": "8.1.0" + } + }, + { + "id": "org.jetbrains.kotlin:kotlin-stdlib@1.3.50", + "info": { + "name": "org.jetbrains.kotlin:kotlin-stdlib", + "version": "1.3.50" + } + }, + { + "id": "org.jetbrains:annotations@17.0.0", + "info": { + "name": "org.jetbrains:annotations", + "version": "17.0.0" + } + }, + { + "id": "org.jetbrains.kotlin:kotlin-stdlib-common@1.3.71", + "info": { + "name": "org.jetbrains.kotlin:kotlin-stdlib-common", + "version": "1.3.71" + } + }, + { + "id": "org.openjdk.jmh:jmh-core@1.19", + "info": { + "name": "org.openjdk.jmh:jmh-core", + "version": "1.19" + } + }, + { + "id": "net.sf.jopt-simple:jopt-simple@5.0.4", + "info": { + "name": "net.sf.jopt-simple:jopt-simple", + "version": "5.0.4" + } + }, + { + "id": "org.apache.commons:commons-math3@3.6.1", + "info": { + "name": "org.apache.commons:commons-math3", + "version": "3.6.1" + } + }, + { + "id": "org.rocksdb:rocksdbjni@6.8.1", + "info": { + "name": "org.rocksdb:rocksdbjni", + "version": "6.8.1" + } + }, + { + "id": "org.xerial.snappy:snappy-java@1.1.8.4", + "info": { + "name": "org.xerial.snappy:snappy-java", + "version": "1.1.8.4" + } + }, + { + "id": "//refine:main@bazel", + "info": { + "name": "//refine:main", + "version": "bazel" + } + }, + { + "id": "//schema_service:main@bazel", + "info": { + "name": "//schema_service:main", + "version": "bazel" + } + }, + { + "id": "//services/cmk_encryption:main@bazel", + "info": { + "name": "//services/cmk_encryption:main", + "version": "bazel" + } + }, + { + "id": "javax.ws.rs:javax.ws.rs-api@2.1.1", + "info": { + "name": "javax.ws.rs:javax.ws.rs-api", + "version": "2.1.1" + } + }, + { + "id": "//services/logging:main@bazel", + "info": { + "name": "//services/logging:main", + "version": "bazel" + } + }, + { + "id": "//ssh:main@bazel", + "info": { + "name": "//ssh:main", + "version": "bazel" + } + }, + { + "id": "//secrets/db:main@bazel", + "info": { + "name": "//secrets/db:main", + "version": "bazel" + } + }, + { + "id": "//kms:main@bazel", + "info": { + "name": "//kms:main", + "version": "bazel" + } + }, + { + "id": "@jsch_patched//:main@bazel", + "info": { + "name": "@jsch_patched//:main", + "version": "bazel" + } + }, + { + "id": "com.jcraft:jzlib@1.1.3", + "info": { + "name": "com.jcraft:jzlib", + "version": "1.1.3" + } + }, + { + "id": "//warehouses/big_query:main@bazel", + "info": { + "name": "//warehouses/big_query:main", + "version": "bazel" + } + }, + { + "id": "//json:default_object_mapper@bazel", + "info": { + "name": "//json:default_object_mapper", + "version": "bazel" + } + }, + { + "id": "//warehouses/common:main@bazel", + "info": { + "name": "//warehouses/common:main", + "version": "bazel" + } + }, + { + "id": "//port_forwarder:tunnel_data_source@bazel", + "info": { + "name": "//port_forwarder:tunnel_data_source", + "version": "bazel" + } + }, + { + "id": "//aws:instance_id@bazel", + "info": { + "name": "//aws:instance_id", + "version": "bazel" + } + }, + { + "id": "org.eclipse.jetty:jetty-servlet@9.4.40.v20210413", + "info": { + "name": "org.eclipse.jetty:jetty-servlet", + "version": "9.4.40.v20210413" + } + }, + { + "id": "org.eclipse.jetty:jetty-security@9.4.40.v20210413", + "info": { + "name": "org.eclipse.jetty:jetty-security", + "version": "9.4.40.v20210413" + } + }, + { + "id": "org.eclipse.jetty:jetty-util-ajax@9.4.40.v20210413", + "info": { + "name": "org.eclipse.jetty:jetty-util-ajax", + "version": "9.4.40.v20210413" + } + }, + { + "id": "org.glassfish.jersey.containers:jersey-container-servlet-core@2.31", + "info": { + "name": "org.glassfish.jersey.containers:jersey-container-servlet-core", + "version": "2.31" + } + }, + { + "id": "//warehouses/common:staging_s3@bazel", + "info": { + "name": "//warehouses/common:staging_s3", + "version": "bazel" + } + }, + { + "id": "//warehouses/common-local:writer_file@bazel", + "info": { + "name": "//warehouses/common-local:writer_file", + "version": "bazel" + } + }, + { + "id": "com.github.luben:zstd-jni@1.4.9-1", + "info": { + "name": "com.github.luben:zstd-jni", + "version": "1.4.9-1" + } + }, + { + "id": "//warehouses/common-local:writer_base@bazel", + "info": { + "name": "//warehouses/common-local:writer_base", + "version": "bazel" + } + }, + { + "id": "//warehouses/common:staging_azure@bazel", + "info": { + "name": "//warehouses/common:staging_azure", + "version": "bazel" + } + }, + { + "id": "com.microsoft.azure:azure-keyvault-cryptography@1.2.4", + "info": { + "name": "com.microsoft.azure:azure-keyvault-cryptography", + "version": "1.2.4" + } + }, + { + "id": "com.microsoft.azure:azure-keyvault-webkey@1.2.4", + "info": { + "name": "com.microsoft.azure:azure-keyvault-webkey", + "version": "1.2.4" + } + }, + { + "id": "com.microsoft.azure:azure-keyvault-core@1.2.4", + "info": { + "name": "com.microsoft.azure:azure-keyvault-core", + "version": "1.2.4" + } + }, + { + "id": "com.microsoft.azure:azure-storage@8.6.3", + "info": { + "name": "com.microsoft.azure:azure-storage", + "version": "8.6.3" + } + }, + { + "id": "//warehouses/common:staging_gcs@bazel", + "info": { + "name": "//warehouses/common:staging_gcs", + "version": "bazel" + } + }, + { + "id": "//warehouses/common-local:writer_csv@bazel", + "info": { + "name": "//warehouses/common-local:writer_csv", + "version": "bazel" + } + }, + { + "id": "//warehouses/common-local:writer_avro@bazel", + "info": { + "name": "//warehouses/common-local:writer_avro", + "version": "bazel" + } + }, + { + "id": "//warehouses/common-local:writer_avro_base@bazel", + "info": { + "name": "//warehouses/common-local:writer_avro_base", + "version": "bazel" + } + }, + { + "id": "org.apache.avro:avro@1.11.0", + "info": { + "name": "org.apache.avro:avro", + "version": "1.11.0" + } + }, + { + "id": "org.apache.commons:commons-compress@1.16", + "info": { + "name": "org.apache.commons:commons-compress", + "version": "1.16" + } + }, + { + "id": "org.objenesis:objenesis@2.6", + "info": { + "name": "org.objenesis:objenesis", + "version": "2.6" + } + }, + { + "id": "//warehouses/common-local:writer_json@bazel", + "info": { + "name": "//warehouses/common-local:writer_json", + "version": "bazel" + } + }, + { + "id": "com.google.api.grpc:proto-google-cloud-billingbudgets-v1@1.1.0", + "info": { + "name": "com.google.api.grpc:proto-google-cloud-billingbudgets-v1", + "version": "1.1.0" + } + }, + { + "id": "org.checkerframework:checker-compat-qual@2.5.5", + "info": { + "name": "org.checkerframework:checker-compat-qual", + "version": "2.5.5" + } + }, + { + "id": "com.google.apis:google-api-services-cloudbilling@v1-rev9-1.22.0", + "info": { + "name": "com.google.apis:google-api-services-cloudbilling", + "version": "v1-rev9-1.22.0" + } + }, + { + "id": "com.google.apis:google-api-services-servicemanagement@v1-rev435-1.23.0", + "info": { + "name": "com.google.apis:google-api-services-servicemanagement", + "version": "v1-rev435-1.23.0" + } + }, + { + "id": "com.google.apis:google-api-services-serviceusage@v1beta1-rev20210427-1.31.0", + "info": { + "name": "com.google.apis:google-api-services-serviceusage", + "version": "v1beta1-rev20210427-1.31.0" + } + }, + { + "id": "com.google.cloud:google-cloud-billingbudgets@1.1.0", + "info": { + "name": "com.google.cloud:google-cloud-billingbudgets", + "version": "1.1.0" + } + }, + { + "id": "com.google.api.grpc:proto-google-cloud-billingbudgets-v1beta1@0.7.0", + "info": { + "name": "com.google.api.grpc:proto-google-cloud-billingbudgets-v1beta1", + "version": "0.7.0" + } + }, + { + "id": "com.stripe:stripe-java@19.20.0", + "info": { + "name": "com.stripe:stripe-java", + "version": "19.20.0" + } + }, + { + "id": "io.swagger.core.v3:swagger-annotations@2.1.11", + "info": { + "name": "io.swagger.core.v3:swagger-annotations", + "version": "2.1.11" + } + }, + { + "id": "//utils/bootstrap:main@bazel", + "info": { + "name": "//utils/bootstrap:main", + "version": "bazel" + } + }, + { + "id": "//integrations/braze:main@bazel", + "info": { + "name": "//integrations/braze:main", + "version": "bazel" + } + }, + { + "id": "//services/resync:main@bazel", + "info": { + "name": "//services/resync:main", + "version": "bazel" + } + }, + { + "id": "//services:exceptions@bazel", + "info": { + "name": "//services:exceptions", + "version": "bazel" + } + }, + { + "id": "//services:integration_control@bazel", + "info": { + "name": "//services:integration_control", + "version": "bazel" + } + }, + { + "id": "//utils/fsort:main@bazel", + "info": { + "name": "//utils/fsort:main", + "version": "bazel" + } + }, + { + "id": "info.picocli:picocli@4.5.1", + "info": { + "name": "info.picocli:picocli", + "version": "4.5.1" + } + }, + { + "id": "com.cronutils:cron-utils@9.0.2", + "info": { + "name": "com.cronutils:cron-utils", + "version": "9.0.2" + } + }, + { + "id": "org.hibernate:hibernate-validator@5.4.3.Final", + "info": { + "name": "org.hibernate:hibernate-validator", + "version": "5.4.3.Final" + } + }, + { + "id": "com.fasterxml:classmate@1.3.4", + "info": { + "name": "com.fasterxml:classmate", + "version": "1.3.4" + } + }, + { + "id": "org.jboss.logging:jboss-logging@3.3.2.Final", + "info": { + "name": "org.jboss.logging:jboss-logging", + "version": "3.3.2.Final" + } + }, + { + "id": "//donkey:main@bazel", + "info": { + "name": "//donkey:main", + "version": "bazel" + } + }, + { + "id": "//event_bus:main@bazel", + "info": { + "name": "//event_bus:main", + "version": "bazel" + } + }, + { + "id": "com.github.f4b6a3:ulid-creator@4.0.0", + "info": { + "name": "com.github.f4b6a3:ulid-creator", + "version": "4.0.0" + } + }, + { + "id": "//integrated_scheduler/scheduler:pubsub@bazel", + "info": { + "name": "//integrated_scheduler/scheduler:pubsub", + "version": "bazel" + } + }, + { + "id": "//integrated_scheduler/scheduler:messages@bazel", + "info": { + "name": "//integrated_scheduler/scheduler:messages", + "version": "bazel" + } + }, + { + "id": "com.google.apis:google-api-services-pubsub@v1-rev452-1.25.0", + "info": { + "name": "com.google.apis:google-api-services-pubsub", + "version": "v1-rev452-1.25.0" + } + }, + { + "id": "//integrations/netsuite:main@bazel", + "info": { + "name": "//integrations/netsuite:main", + "version": "bazel" + } + }, + { + "id": "//core_utils:main@bazel", + "info": { + "name": "//core_utils:main", + "version": "bazel" + } + }, + { + "id": "//dblike:main@bazel", + "info": { + "name": "//dblike:main", + "version": "bazel" + } + }, + { + "id": "//integrations/db:main@bazel", + "info": { + "name": "//integrations/db:main", + "version": "bazel" + } + }, + { + "id": "//integrations/hvr/hvr_tool:main@bazel", + "info": { + "name": "//integrations/hvr/hvr_tool:main", + "version": "bazel" + } + }, + { + "id": "//utils/cipher_adapter:main@bazel", + "info": { + "name": "//utils/cipher_adapter:main", + "version": "bazel" + } + }, + { + "id": "//utils/run_shell:main@bazel", + "info": { + "name": "//utils/run_shell:main", + "version": "bazel" + } + }, + { + "id": "//utils/sleep_control:main@bazel", + "info": { + "name": "//utils/sleep_control:main", + "version": "bazel" + } + }, + { + "id": "//utils/segmented_input_stream:main@bazel", + "info": { + "name": "//utils/segmented_input_stream:main", + "version": "bazel" + } + }, + { + "id": "//utils/socket_receiver:main@bazel", + "info": { + "name": "//utils/socket_receiver:main", + "version": "bazel" + } + }, + { + "id": "//integrations/isolated_endpoint_sync:main@bazel", + "info": { + "name": "//integrations/isolated_endpoint_sync:main", + "version": "bazel" + } + }, + { + "id": "//integrations/speed_test:main@bazel", + "info": { + "name": "//integrations/speed_test:main", + "version": "bazel" + } + }, + { + "id": "//integrations/speed_test:utils@bazel", + "info": { + "name": "//integrations/speed_test:utils", + "version": "bazel" + } + }, + { + "id": "//ip_utils:main@bazel", + "info": { + "name": "//ip_utils:main", + "version": "bazel" + } + }, + { + "id": "//port_forwarder:main@bazel", + "info": { + "name": "//port_forwarder:main", + "version": "bazel" + } + }, + { + "id": "//:databricks_jdbc@bazel", + "info": { + "name": "//:databricks_jdbc", + "version": "bazel" + } + }, + { + "id": "//:netsuite_jdbc_connector@bazel", + "info": { + "name": "//:netsuite_jdbc_connector", + "version": "bazel" + } + }, + { + "id": "//:sap_s4hana_jdbc_connector@bazel", + "info": { + "name": "//:sap_s4hana_jdbc_connector", + "version": "bazel" + } + }, + { + "id": "//utils/oracle:main@bazel", + "info": { + "name": "//utils/oracle:main", + "version": "bazel" + } + }, + { + "id": "//verification:main@bazel", + "info": { + "name": "//verification:main", + "version": "bazel" + } + }, + { + "id": "mysql:mysql-connector-java@8.0.13", + "info": { + "name": "mysql:mysql-connector-java", + "version": "8.0.13" + } + }, + { + "id": "org.mariadb.jdbc:mariadb-java-client@2.5.4", + "info": { + "name": "org.mariadb.jdbc:mariadb-java-client", + "version": "2.5.4" + } + }, + { + "id": "@mysql_binlog_connector//:main@bazel", + "info": { + "name": "@mysql_binlog_connector//:main", + "version": "bazel" + } + }, + { + "id": "com.amazonaws:aws-java-sdk-redshift@1.12.84", + "info": { + "name": "com.amazonaws:aws-java-sdk-redshift", + "version": "1.12.84" + } + }, + { + "id": "com.ibm.db2:jcc@11.5.0.0", + "info": { + "name": "com.ibm.db2:jcc", + "version": "11.5.0.0" + } + }, + { + "id": "com.microsoft.sqlserver:mssql-jdbc@9.4.0.jre11", + "info": { + "name": "com.microsoft.sqlserver:mssql-jdbc", + "version": "9.4.0.jre11" + } + }, + { + "id": "net.snowflake:snowflake-jdbc@3.13.18", + "info": { + "name": "net.snowflake:snowflake-jdbc", + "version": "3.13.18" + } + }, + { + "id": "//testing:main@bazel", + "info": { + "name": "//testing:main", + "version": "bazel" + } + }, + { + "id": "//core_mocks:main@bazel", + "info": { + "name": "//core_mocks:main", + "version": "bazel" + } + }, + { + "id": "com.jayway.jsonpath:json-path@2.4.0", + "info": { + "name": "com.jayway.jsonpath:json-path", + "version": "2.4.0" + } + }, + { + "id": "net.minidev:json-smart@2.3", + "info": { + "name": "net.minidev:json-smart", + "version": "2.3" + } + }, + { + "id": "net.minidev:accessors-smart@1.2", + "info": { + "name": "net.minidev:accessors-smart", + "version": "1.2" + } + }, + { + "id": "com.github.tomakehurst:wiremock-jre8-standalone@2.27.2", + "info": { + "name": "com.github.tomakehurst:wiremock-jre8-standalone", + "version": "2.27.2" + } + }, + { + "id": "javax.websocket:javax.websocket-api@1.1", + "info": { + "name": "javax.websocket:javax.websocket-api", + "version": "1.1" + } + }, + { + "id": "junit:junit@4.13", + "info": { + "name": "junit:junit", + "version": "4.13" + } + }, + { + "id": "org.hamcrest:hamcrest-core@2.2", + "info": { + "name": "org.hamcrest:hamcrest-core", + "version": "2.2" + } + }, + { + "id": "org.hamcrest:hamcrest@2.2", + "info": { + "name": "org.hamcrest:hamcrest", + "version": "2.2" + } + }, + { + "id": "org.mockito:mockito-core@2.28.2", + "info": { + "name": "org.mockito:mockito-core", + "version": "2.28.2" + } + }, + { + "id": "net.bytebuddy:byte-buddy@1.10.14", + "info": { + "name": "net.bytebuddy:byte-buddy", + "version": "1.10.14" + } + }, + { + "id": "net.bytebuddy:byte-buddy-agent@1.10.14", + "info": { + "name": "net.bytebuddy:byte-buddy-agent", + "version": "1.10.14" + } + }, + { + "id": "//utils/beans:main@bazel", + "info": { + "name": "//utils/beans:main", + "version": "bazel" + } + }, + { + "id": "com.github.jsqlparser:jsqlparser@4.2", + "info": { + "name": "com.github.jsqlparser:jsqlparser", + "version": "4.2" + } + }, + { + "id": "com.walkmind.extensions:collections@1.20", + "info": { + "name": "com.walkmind.extensions:collections", + "version": "1.20" + } + }, + { + "id": "//integrations/db_like_standardization:main@bazel", + "info": { + "name": "//integrations/db_like_standardization:main", + "version": "bazel" + } + }, + { + "id": "//secrets/group:main@bazel", + "info": { + "name": "//secrets/group:main", + "version": "bazel" + } + }, + { + "id": "//services/setup_test_runner:main@bazel", + "info": { + "name": "//services/setup_test_runner:main", + "version": "bazel" + } + }, + { + "id": "//setup_test_runner:client@bazel", + "info": { + "name": "//setup_test_runner:client", + "version": "bazel" + } + }, + { + "id": "//http:exception_mappers@bazel", + "info": { + "name": "//http:exception_mappers", + "version": "bazel" + } + }, + { + "id": "//http:json@bazel", + "info": { + "name": "//http:json", + "version": "bazel" + } + }, + { + "id": "//transformation_runner:client@bazel", + "info": { + "name": "//transformation_runner:client", + "version": "bazel" + } + }, + { + "id": "org.slf4j:slf4j-jdk14@1.7.13", + "info": { + "name": "org.slf4j:slf4j-jdk14", + "version": "1.7.13" + } + }, + { + "id": "//events:main@bazel", + "info": { + "name": "//events:main", + "version": "bazel" + } + }, + { + "id": "//feature_flag/sandbox:main@bazel", + "info": { + "name": "//feature_flag/sandbox:main", + "version": "bazel" + } + }, + { + "id": "//feature_flag/json:main@bazel", + "info": { + "name": "//feature_flag/json:main", + "version": "bazel" + } + }, + { + "id": "//integrated_scheduler/dag:main@bazel", + "info": { + "name": "//integrated_scheduler/dag:main", + "version": "bazel" + } + }, + { + "id": "//integrated_scheduler/pipeline:main@bazel", + "info": { + "name": "//integrated_scheduler/pipeline:main", + "version": "bazel" + } + }, + { + "id": "//dbt/runner:main@bazel", + "info": { + "name": "//dbt/runner:main", + "version": "bazel" + } + }, + { + "id": "//dbt/agent:common@bazel", + "info": { + "name": "//dbt/agent:common", + "version": "bazel" + } + }, + { + "id": "//log_appender/datadog:main@bazel", + "info": { + "name": "//log_appender/datadog:main", + "version": "bazel" + } + }, + { + "id": "//log_appender/log_analytics:main@bazel", + "info": { + "name": "//log_appender/log_analytics:main", + "version": "bazel" + } + }, + { + "id": "//log_appender/splunk:main@bazel", + "info": { + "name": "//log_appender/splunk:main", + "version": "bazel" + } + }, + { + "id": "//logging:ufl@bazel", + "info": { + "name": "//logging:ufl", + "version": "bazel" + } + }, + { + "id": "//warehouses/big_query:locations@bazel", + "info": { + "name": "//warehouses/big_query:locations", + "version": "bazel" + } + }, + { + "id": "//warehouses/redshift:redshift_cluster_service@bazel", + "info": { + "name": "//warehouses/redshift:redshift_cluster_service", + "version": "bazel" + } + }, + { + "id": "//log_tailer:main@bazel", + "info": { + "name": "//log_tailer:main", + "version": "bazel" + } + }, + { + "id": "//integrations/zuora:main@bazel", + "info": { + "name": "//integrations/zuora:main", + "version": "bazel" + } + }, + { + "id": "//secrets/integration:main@bazel", + "info": { + "name": "//secrets/integration:main", + "version": "bazel" + } + }, + { + "id": "//logging:fluent_bit@bazel", + "info": { + "name": "//logging:fluent_bit", + "version": "bazel" + } + }, + { + "id": "//service_registry:main@bazel", + "info": { + "name": "//service_registry:main", + "version": "bazel" + } + }, + { + "id": "//coil:main@bazel", + "info": { + "name": "//coil:main", + "version": "bazel" + } + }, + { + "id": "//coil:coil_framework_java@bazel", + "info": { + "name": "//coil:coil_framework_java", + "version": "bazel" + } + }, + { + "id": "//coil:coil_framework_clojure@bazel", + "info": { + "name": "//coil:coil_framework_clojure", + "version": "bazel" + } + }, + { + "id": "//integrations/coil_connectors:main@bazel", + "info": { + "name": "//integrations/coil_connectors:main", + "version": "bazel" + } + }, + { + "id": "org.clojure:clojure@1.10.1", + "info": { + "name": "org.clojure:clojure", + "version": "1.10.1" + } + }, + { + "id": "org.clojure:core.specs.alpha@0.2.56", + "info": { + "name": "org.clojure:core.specs.alpha", + "version": "0.2.56" + } + }, + { + "id": "org.clojure:data.json@1.1.0", + "info": { + "name": "org.clojure:data.json", + "version": "1.1.0" + } + }, + { + "id": "//webhook/client:main@bazel", + "info": { + "name": "//webhook/client:main", + "version": "bazel" + } + }, + { + "id": "//webhook/storage:main@bazel", + "info": { + "name": "//webhook/storage:main", + "version": "bazel" + } + }, + { + "id": "//webhook/utils:main@bazel", + "info": { + "name": "//webhook/utils:main", + "version": "bazel" + } + }, + { + "id": "//core_interfaces:pojos@bazel", + "info": { + "name": "//core_interfaces:pojos", + "version": "bazel" + } + }, + { + "id": "io.kubernetes:client-java@3.0.0-beta2", + "info": { + "name": "io.kubernetes:client-java", + "version": "3.0.0-beta2" + } + }, + { + "id": "io.kubernetes:client-java-api@3.0.0-beta2", + "info": { + "name": "io.kubernetes:client-java-api", + "version": "3.0.0-beta2" + } + }, + { + "id": "com.squareup.okhttp:okhttp@2.7.5", + "info": { + "name": "com.squareup.okhttp:okhttp", + "version": "2.7.5" + } + }, + { + "id": "com.squareup.okio:okio@1.13.0", + "info": { + "name": "com.squareup.okio:okio", + "version": "1.13.0" + } + }, + { + "id": "org.joda:joda-convert@1.2", + "info": { + "name": "org.joda:joda-convert", + "version": "1.2" + } + }, + { + "id": "com.squareup.okhttp:logging-interceptor@2.7.5", + "info": { + "name": "com.squareup.okhttp:logging-interceptor", + "version": "2.7.5" + } + }, + { + "id": "io.sundr:builder-annotations@0.8.0", + "info": { + "name": "io.sundr:builder-annotations", + "version": "0.8.0" + } + }, + { + "id": "io.sundr:sundr-codegen@0.8.0", + "info": { + "name": "io.sundr:sundr-codegen", + "version": "0.8.0" + } + }, + { + "id": "io.sundr:sundr-core@0.8.0", + "info": { + "name": "io.sundr:sundr-core", + "version": "0.8.0" + } + }, + { + "id": "io.swagger:swagger-annotations@1.6.0", + "info": { + "name": "io.swagger:swagger-annotations", + "version": "1.6.0" + } + }, + { + "id": "com.microsoft.azure:adal4j@1.6.3", + "info": { + "name": "com.microsoft.azure:adal4j", + "version": "1.6.3" + } + }, + { + "id": "com.nimbusds:oauth2-oidc-sdk@5.64.4", + "info": { + "name": "com.nimbusds:oauth2-oidc-sdk", + "version": "5.64.4" + } + }, + { + "id": "com.github.stephenc.jcip:jcip-annotations@1.0-1", + "info": { + "name": "com.github.stephenc.jcip:jcip-annotations", + "version": "1.0-1" + } + }, + { + "id": "com.sun.mail:javax.mail@1.5.4", + "info": { + "name": "com.sun.mail:javax.mail", + "version": "1.5.4" + } + }, + { + "id": "com.nimbusds:nimbus-jose-jwt@5.5", + "info": { + "name": "com.nimbusds:nimbus-jose-jwt", + "version": "5.5" + } + }, + { + "id": "com.nimbusds:lang-tag@1.4.3", + "info": { + "name": "com.nimbusds:lang-tag", + "version": "1.4.3" + } + }, + { + "id": "com.squareup.okhttp:okhttp-ws@2.7.5", + "info": { + "name": "com.squareup.okhttp:okhttp-ws", + "version": "2.7.5" + } + }, + { + "id": "io.kubernetes:client-java-proto@3.0.0", + "info": { + "name": "io.kubernetes:client-java-proto", + "version": "3.0.0" + } + }, + { + "id": "lambdaisland:deep-diff2@2.0.108", + "info": { + "name": "lambdaisland:deep-diff2", + "version": "2.0.108" + } + }, + { + "id": "fipp:fipp@0.6.23", + "info": { + "name": "fipp:fipp", + "version": "0.6.23" + } + }, + { + "id": "org.clojure:core.rrb-vector@0.1.1", + "info": { + "name": "org.clojure:core.rrb-vector", + "version": "0.1.1" + } + }, + { + "id": "lambdaisland:clj-diff@1.1.58", + "info": { + "name": "lambdaisland:clj-diff", + "version": "1.1.58" + } + }, + { + "id": "mvxcvi:arrangement@1.2.1", + "info": { + "name": "mvxcvi:arrangement", + "version": "1.2.1" + } + }, + { + "id": "org.apache.commons:commons-collections4@4.1", + "info": { + "name": "org.apache.commons:commons-collections4", + "version": "4.1" + } + }, + { + "id": "//integrations/chartio:main@bazel", + "info": { + "name": "//integrations/chartio:main", + "version": "bazel" + } + }, + { + "id": "//integrations/google_data_studio:main@bazel", + "info": { + "name": "//integrations/google_data_studio:main", + "version": "bazel" + } + }, + { + "id": "//integrations/periscope:main@bazel", + "info": { + "name": "//integrations/periscope:main", + "version": "bazel" + } + }, + { + "id": "//warehouses/common:tasks@bazel", + "info": { + "name": "//warehouses/common:tasks", + "version": "bazel" + } + }, + { + "id": "//integrations/sigma_computing:main@bazel", + "info": { + "name": "//integrations/sigma_computing:main", + "version": "bazel" + } + }, + { + "id": "//integrations/sisense:main@bazel", + "info": { + "name": "//integrations/sisense:main", + "version": "bazel" + } + }, + { + "id": "//integrations/tableau:main@bazel", + "info": { + "name": "//integrations/tableau:main", + "version": "bazel" + } + }, + { + "id": "//integrations/looker:main@bazel", + "info": { + "name": "//integrations/looker:main", + "version": "bazel" + } + }, + { + "id": "//integrations/postgres2020:main@bazel", + "info": { + "name": "//integrations/postgres2020:main", + "version": "bazel" + } + }, + { + "id": "//geo:main@bazel", + "info": { + "name": "//geo:main", + "version": "bazel" + } + }, + { + "id": "//utils/binary:main@bazel", + "info": { + "name": "//utils/binary:main", + "version": "bazel" + } + }, + { + "id": "//integrations/configuration_tracker:main@bazel", + "info": { + "name": "//integrations/configuration_tracker:main", + "version": "bazel" + } + }, + { + "id": "com.google.cloud:google-cloud-bigquery@1.48.0", + "info": { + "name": "com.google.cloud:google-cloud-bigquery", + "version": "1.48.0" + } + }, + { + "id": "com.google.auto.value:auto-value@1.5.3", + "info": { + "name": "com.google.auto.value:auto-value", + "version": "1.5.3" + } + }, + { + "id": "org.jeasy:easy-rules-core@4.1.0", + "info": { + "name": "org.jeasy:easy-rules-core", + "version": "4.1.0" + } + }, + { + "id": "//services:ab_tests@bazel", + "info": { + "name": "//services:ab_tests", + "version": "bazel" + } + }, + { + "id": "//teleport:main@bazel", + "info": { + "name": "//teleport:main", + "version": "bazel" + } + }, + { + "id": "//utils/operations:main@bazel", + "info": { + "name": "//utils/operations:main", + "version": "bazel" + } + }, + { + "id": "//sources/bridge:main@bazel", + "info": { + "name": "//sources/bridge:main", + "version": "bazel" + } + }, + { + "id": "//api:connector_config_formatter@bazel", + "info": { + "name": "//api:connector_config_formatter", + "version": "bazel" + } + }, + { + "id": "//sources/form:main@bazel", + "info": { + "name": "//sources/form:main", + "version": "bazel" + } + }, + { + "id": "//warehouses/azure:main@bazel", + "info": { + "name": "//warehouses/azure:main", + "version": "bazel" + } + }, + { + "id": "//port_forwarder:azure@bazel", + "info": { + "name": "//port_forwarder:azure", + "version": "bazel" + } + }, + { + "id": "//warehouses/common-local:writer_parquet@bazel", + "info": { + "name": "//warehouses/common-local:writer_parquet", + "version": "bazel" + } + }, + { + "id": "org.apache.hadoop:hadoop-common@2.7.7", + "info": { + "name": "org.apache.hadoop:hadoop-common", + "version": "2.7.7" + } + }, + { + "id": "org.apache.htrace:htrace-core@3.1.0-incubating", + "info": { + "name": "org.apache.htrace:htrace-core", + "version": "3.1.0-incubating" + } + }, + { + "id": "xmlenc:xmlenc@0.52", + "info": { + "name": "xmlenc:xmlenc", + "version": "0.52" + } + }, + { + "id": "org.mortbay.jetty:jetty@6.1.26", + "info": { + "name": "org.mortbay.jetty:jetty", + "version": "6.1.26" + } + }, + { + "id": "org.mortbay.jetty:jetty-util@6.1.26", + "info": { + "name": "org.mortbay.jetty:jetty-util", + "version": "6.1.26" + } + }, + { + "id": "org.mortbay.jetty:servlet-api@2.5-20081211", + "info": { + "name": "org.mortbay.jetty:servlet-api", + "version": "2.5-20081211" + } + }, + { + "id": "net.java.dev.jets3t:jets3t@0.9.0", + "info": { + "name": "net.java.dev.jets3t:jets3t", + "version": "0.9.0" + } + }, + { + "id": "com.jamesmurty.utils:java-xmlbuilder@0.4", + "info": { + "name": "com.jamesmurty.utils:java-xmlbuilder", + "version": "0.4" + } + }, + { + "id": "org.codehaus.jackson:jackson-mapper-asl@1.9.13", + "info": { + "name": "org.codehaus.jackson:jackson-mapper-asl", + "version": "1.9.13" + } + }, + { + "id": "org.apache.curator:curator-client@2.7.1", + "info": { + "name": "org.apache.curator:curator-client", + "version": "2.7.1" + } + }, + { + "id": "org.apache.zookeeper:zookeeper@3.4.6", + "info": { + "name": "org.apache.zookeeper:zookeeper", + "version": "3.4.6" + } + }, + { + "id": "io.netty:netty@3.7.0.Final", + "info": { + "name": "io.netty:netty", + "version": "3.7.0.Final" + } + }, + { + "id": "log4j:log4j@1.2.17", + "info": { + "name": "log4j:log4j", + "version": "1.2.17" + } + }, + { + "id": "com.jcraft:jsch@0.1.54", + "info": { + "name": "com.jcraft:jsch", + "version": "0.1.54" + } + }, + { + "id": "com.sun.jersey:jersey-json@1.13", + "info": { + "name": "com.sun.jersey:jersey-json", + "version": "1.13" + } + }, + { + "id": "org.codehaus.jackson:jackson-xc@1.9.13", + "info": { + "name": "org.codehaus.jackson:jackson-xc", + "version": "1.9.13" + } + }, + { + "id": "org.codehaus.jettison:jettison@1.1", + "info": { + "name": "org.codehaus.jettison:jettison", + "version": "1.1" + } + }, + { + "id": "stax:stax-api@1.0.1", + "info": { + "name": "stax:stax-api", + "version": "1.0.1" + } + }, + { + "id": "org.codehaus.jackson:jackson-jaxrs@1.9.13", + "info": { + "name": "org.codehaus.jackson:jackson-jaxrs", + "version": "1.9.13" + } + }, + { + "id": "com.sun.jersey:jersey-core@1.13", + "info": { + "name": "com.sun.jersey:jersey-core", + "version": "1.13" + } + }, + { + "id": "org.mortbay.jetty:jetty-sslengine@6.1.26", + "info": { + "name": "org.mortbay.jetty:jetty-sslengine", + "version": "6.1.26" + } + }, + { + "id": "commons-cli:commons-cli@1.3.1", + "info": { + "name": "commons-cli:commons-cli", + "version": "1.3.1" + } + }, + { + "id": "org.apache.hadoop:hadoop-auth@2.7.7", + "info": { + "name": "org.apache.hadoop:hadoop-auth", + "version": "2.7.7" + } + }, + { + "id": "org.apache.directory.server:apacheds-kerberos-codec@2.0.0-M15", + "info": { + "name": "org.apache.directory.server:apacheds-kerberos-codec", + "version": "2.0.0-M15" + } + }, + { + "id": "org.apache.directory.api:api-asn1-api@1.0.0-M20", + "info": { + "name": "org.apache.directory.api:api-asn1-api", + "version": "1.0.0-M20" + } + }, + { + "id": "org.apache.directory.api:api-util@1.0.0-M20", + "info": { + "name": "org.apache.directory.api:api-util", + "version": "1.0.0-M20" + } + }, + { + "id": "org.apache.directory.server:apacheds-i18n@2.0.0-M15", + "info": { + "name": "org.apache.directory.server:apacheds-i18n", + "version": "2.0.0-M15" + } + }, + { + "id": "org.apache.curator:curator-framework@2.7.1", + "info": { + "name": "org.apache.curator:curator-framework", + "version": "2.7.1" + } + }, + { + "id": "javax.servlet.jsp:jsp-api@2.1", + "info": { + "name": "javax.servlet.jsp:jsp-api", + "version": "2.1" + } + }, + { + "id": "org.apache.curator:curator-recipes@2.7.1", + "info": { + "name": "org.apache.curator:curator-recipes", + "version": "2.7.1" + } + }, + { + "id": "commons-httpclient:commons-httpclient@3.1", + "info": { + "name": "commons-httpclient:commons-httpclient", + "version": "3.1" + } + }, + { + "id": "javax.servlet:servlet-api@2.5", + "info": { + "name": "javax.servlet:servlet-api", + "version": "2.5" + } + }, + { + "id": "com.sun.jersey:jersey-server@1.9", + "info": { + "name": "com.sun.jersey:jersey-server", + "version": "1.9" + } + }, + { + "id": "asm:asm@3.1", + "info": { + "name": "asm:asm", + "version": "3.1" + } + }, + { + "id": "org.apache.hadoop:hadoop-annotations@2.7.7", + "info": { + "name": "org.apache.hadoop:hadoop-annotations", + "version": "2.7.7" + } + }, + { + "id": "org.apache.hadoop:hadoop-mapreduce-client-core@2.7.7", + "info": { + "name": "org.apache.hadoop:hadoop-mapreduce-client-core", + "version": "2.7.7" + } + }, + { + "id": "com.google.inject.extensions:guice-servlet@3.0", + "info": { + "name": "com.google.inject.extensions:guice-servlet", + "version": "3.0" + } + }, + { + "id": "com.google.inject:guice@4.2.2", + "info": { + "name": "com.google.inject:guice", + "version": "4.2.2" + } + }, + { + "id": "aopalliance:aopalliance@1.0", + "info": { + "name": "aopalliance:aopalliance", + "version": "1.0" + } + }, + { + "id": "javax.inject:javax.inject@1", + "info": { + "name": "javax.inject:javax.inject", + "version": "1" + } + }, + { + "id": "org.apache.hadoop:hadoop-yarn-common@2.7.7", + "info": { + "name": "org.apache.hadoop:hadoop-yarn-common", + "version": "2.7.7" + } + }, + { + "id": "org.apache.hadoop:hadoop-yarn-api@2.7.7", + "info": { + "name": "org.apache.hadoop:hadoop-yarn-api", + "version": "2.7.7" + } + }, + { + "id": "com.sun.jersey:jersey-client@1.13", + "info": { + "name": "com.sun.jersey:jersey-client", + "version": "1.13" + } + }, + { + "id": "com.sun.jersey.contribs:jersey-guice@1.9", + "info": { + "name": "com.sun.jersey.contribs:jersey-guice", + "version": "1.9" + } + }, + { + "id": "org.apache.parquet:parquet-avro@1.12.2", + "info": { + "name": "org.apache.parquet:parquet-avro", + "version": "1.12.2" + } + }, + { + "id": "org.apache.parquet:parquet-column@1.12.2", + "info": { + "name": "org.apache.parquet:parquet-column", + "version": "1.12.2" + } + }, + { + "id": "org.apache.parquet:parquet-common@1.12.2", + "info": { + "name": "org.apache.parquet:parquet-common", + "version": "1.12.2" + } + }, + { + "id": "org.apache.parquet:parquet-format-structures@1.12.2", + "info": { + "name": "org.apache.parquet:parquet-format-structures", + "version": "1.12.2" + } + }, + { + "id": "org.apache.yetus:audience-annotations@0.12.0", + "info": { + "name": "org.apache.yetus:audience-annotations", + "version": "0.12.0" + } + }, + { + "id": "org.apache.parquet:parquet-encoding@1.12.2", + "info": { + "name": "org.apache.parquet:parquet-encoding", + "version": "1.12.2" + } + }, + { + "id": "org.apache.parquet:parquet-hadoop@1.12.2", + "info": { + "name": "org.apache.parquet:parquet-hadoop", + "version": "1.12.2" + } + }, + { + "id": "org.apache.parquet:parquet-jackson@1.12.2", + "info": { + "name": "org.apache.parquet:parquet-jackson", + "version": "1.12.2" + } + }, + { + "id": "commons-pool:commons-pool@1.6", + "info": { + "name": "commons-pool:commons-pool", + "version": "1.6" + } + }, + { + "id": "//warehouses/databricks:main@bazel", + "info": { + "name": "//warehouses/databricks:main", + "version": "bazel" + } + }, + { + "id": "//port_forwarder:databricks@bazel", + "info": { + "name": "//port_forwarder:databricks", + "version": "bazel" + } + }, + { + "id": "//warehouses/mysql:main@bazel", + "info": { + "name": "//warehouses/mysql:main", + "version": "bazel" + } + }, + { + "id": "//port_forwarder:mysql@bazel", + "info": { + "name": "//port_forwarder:mysql", + "version": "bazel" + } + }, + { + "id": "//warehouses/panoply:main@bazel", + "info": { + "name": "//warehouses/panoply:main", + "version": "bazel" + } + }, + { + "id": "//warehouses/redshift:main@bazel", + "info": { + "name": "//warehouses/redshift:main", + "version": "bazel" + } + }, + { + "id": "io.netty:netty-all@4.1.45.Final", + "info": { + "name": "io.netty:netty-all", + "version": "4.1.45.Final" + } + }, + { + "id": "@redshift_jdbc42//jar:jar@bazel", + "info": { + "name": "@redshift_jdbc42//jar:jar", + "version": "bazel" + } + }, + { + "id": "//warehouses/periscope:main@bazel", + "info": { + "name": "//warehouses/periscope:main", + "version": "bazel" + } + }, + { + "id": "//warehouses/postgres:main@bazel", + "info": { + "name": "//warehouses/postgres:main", + "version": "bazel" + } + }, + { + "id": "//integrations/db:setup_form_utils@bazel", + "info": { + "name": "//integrations/db:setup_form_utils", + "version": "bazel" + } + }, + { + "id": "//port_forwarder:postgres@bazel", + "info": { + "name": "//port_forwarder:postgres", + "version": "bazel" + } + }, + { + "id": "//warehouses/s3_data_lake:main@bazel", + "info": { + "name": "//warehouses/s3_data_lake:main", + "version": "bazel" + } + }, + { + "id": "org.apache.iceberg:iceberg-api@0.13.1", + "info": { + "name": "org.apache.iceberg:iceberg-api", + "version": "0.13.1" + } + }, + { + "id": "com.github.stephenc.findbugs:findbugs-annotations@1.3.9-1", + "info": { + "name": "com.github.stephenc.findbugs:findbugs-annotations", + "version": "1.3.9-1" + } + }, + { + "id": "org.apache.iceberg:iceberg-bundled-guava@0.13.1", + "info": { + "name": "org.apache.iceberg:iceberg-bundled-guava", + "version": "0.13.1" + } + }, + { + "id": "org.apache.iceberg:iceberg-core@0.13.1", + "info": { + "name": "org.apache.iceberg:iceberg-core", + "version": "0.13.1" + } + }, + { + "id": "org.roaringbitmap:RoaringBitmap@0.9.22", + "info": { + "name": "org.roaringbitmap:RoaringBitmap", + "version": "0.9.22" + } + }, + { + "id": "org.roaringbitmap:shims@0.9.22", + "info": { + "name": "org.roaringbitmap:shims", + "version": "0.9.22" + } + }, + { + "id": "com.github.ben-manes.caffeine:caffeine@2.8.4", + "info": { + "name": "com.github.ben-manes.caffeine:caffeine", + "version": "2.8.4" + } + }, + { + "id": "org.apache.iceberg:iceberg-common@0.13.1", + "info": { + "name": "org.apache.iceberg:iceberg-common", + "version": "0.13.1" + } + }, + { + "id": "org.apache.iceberg:iceberg-data@0.13.1", + "info": { + "name": "org.apache.iceberg:iceberg-data", + "version": "0.13.1" + } + }, + { + "id": "org.apache.orc:orc-core:jar:nohive@1.7.2", + "info": { + "name": "org.apache.orc:orc-core:jar:nohive", + "version": "1.7.2" + } + }, + { + "id": "io.airlift:aircompressor@0.9", + "info": { + "name": "io.airlift:aircompressor", + "version": "0.9" + } + }, + { + "id": "io.airlift:slice@0.10", + "info": { + "name": "io.airlift:slice", + "version": "0.10" + } + }, + { + "id": "org.apache.orc:orc-shims@1.7.2", + "info": { + "name": "org.apache.orc:orc-shims", + "version": "1.7.2" + } + }, + { + "id": "org.threeten:threeten-extra@0.9", + "info": { + "name": "org.threeten:threeten-extra", + "version": "0.9" + } + }, + { + "id": "org.apache.iceberg:iceberg-parquet@0.13.1", + "info": { + "name": "org.apache.iceberg:iceberg-parquet", + "version": "0.13.1" + } + }, + { + "id": "//warehouses/snowflake:main@bazel", + "info": { + "name": "//warehouses/snowflake:main", + "version": "bazel" + } + }, + { + "id": "//port_forwarder:snowflake@bazel", + "info": { + "name": "//port_forwarder:snowflake", + "version": "bazel" + } + }, + { + "id": "//warehouses/sql_server:main@bazel", + "info": { + "name": "//warehouses/sql_server:main", + "version": "bazel" + } + }, + { + "id": "//port_forwarder:sqlserver@bazel", + "info": { + "name": "//port_forwarder:sqlserver", + "version": "bazel" + } + }, + { + "id": "//integrations/adjust:main@bazel", + "info": { + "name": "//integrations/adjust:main", + "version": "bazel" + } + }, + { + "id": "//integrations/adobe_analytics:main@bazel", + "info": { + "name": "//integrations/adobe_analytics:main", + "version": "bazel" + } + }, + { + "id": "//integrations/bidirectional_cube:main@bazel", + "info": { + "name": "//integrations/bidirectional_cube:main", + "version": "bazel" + } + }, + { + "id": "//integrations/priority_sync:main@bazel", + "info": { + "name": "//integrations/priority_sync:main", + "version": "bazel" + } + }, + { + "id": "com.google.api-ads:ads-lib@4.4.0", + "info": { + "name": "com.google.api-ads:ads-lib", + "version": "4.4.0" + } + }, + { + "id": "com.google.inject.extensions:guice-multibindings@4.0", + "info": { + "name": "com.google.inject.extensions:guice-multibindings", + "version": "4.0" + } + }, + { + "id": "com.google.inject.extensions:guice-assistedinject@4.0", + "info": { + "name": "com.google.inject.extensions:guice-assistedinject", + "version": "4.0" + } + }, + { + "id": "net.sf.opencsv:opencsv@1.8", + "info": { + "name": "net.sf.opencsv:opencsv", + "version": "1.8" + } + }, + { + "id": "commons-beanutils:commons-beanutils@1.9.2", + "info": { + "name": "commons-beanutils:commons-beanutils", + "version": "1.9.2" + } + }, + { + "id": "com.beust:jcommander@1.82", + "info": { + "name": "com.beust:jcommander", + "version": "1.82" + } + }, + { + "id": "com.google.api-ads:adwords-axis@4.4.0", + "info": { + "name": "com.google.api-ads:adwords-axis", + "version": "4.4.0" + } + }, + { + "id": "com.google.api-ads:ads-lib-axis@4.4.0", + "info": { + "name": "com.google.api-ads:ads-lib-axis", + "version": "4.4.0" + } + }, + { + "id": "javax.xml:jaxrpc-api@1.1", + "info": { + "name": "javax.xml:jaxrpc-api", + "version": "1.1" + } + }, + { + "id": "wsdl4j:wsdl4j@1.6.2", + "info": { + "name": "wsdl4j:wsdl4j", + "version": "1.6.2" + } + }, + { + "id": "commons-discovery:commons-discovery@0.5", + "info": { + "name": "commons-discovery:commons-discovery", + "version": "0.5" + } + }, + { + "id": "org.apache.axis:axis@1.4", + "info": { + "name": "org.apache.axis:axis", + "version": "1.4" + } + }, + { + "id": "//integrations/adobe_analytics_data_feed:main@bazel", + "info": { + "name": "//integrations/adobe_analytics_data_feed:main", + "version": "bazel" + } + }, + { + "id": "//integrations/ftp:main@bazel", + "info": { + "name": "//integrations/ftp:main", + "version": "bazel" + } + }, + { + "id": "//integrations/file:main@bazel", + "info": { + "name": "//integrations/file:main", + "version": "bazel" + } + }, + { + "id": "com.fasterxml.util:java-merge-sort@1.0.0", + "info": { + "name": "com.fasterxml.util:java-merge-sort", + "version": "1.0.0" + } + }, + { + "id": "com.monitorjbl:xlsx-streamer@1.2.1", + "info": { + "name": "com.monitorjbl:xlsx-streamer", + "version": "1.2.1" + } + }, + { + "id": "org.apache.poi:ooxml-schemas@1.3", + "info": { + "name": "org.apache.poi:ooxml-schemas", + "version": "1.3" + } + }, + { + "id": "org.apache.xmlbeans:xmlbeans@2.6.0", + "info": { + "name": "org.apache.xmlbeans:xmlbeans", + "version": "2.6.0" + } + }, + { + "id": "org.apache.poi:poi-ooxml@3.17", + "info": { + "name": "org.apache.poi:poi-ooxml", + "version": "3.17" + } + }, + { + "id": "com.github.virtuald:curvesapi@1.04", + "info": { + "name": "com.github.virtuald:curvesapi", + "version": "1.04" + } + }, + { + "id": "org.apache.poi:poi@3.17", + "info": { + "name": "org.apache.poi:poi", + "version": "3.17" + } + }, + { + "id": "org.apache.poi:poi-ooxml-schemas@3.17", + "info": { + "name": "org.apache.poi:poi-ooxml-schemas", + "version": "3.17" + } + }, + { + "id": "com.rackspace.apache:xerces2-xsd11@2.11.1", + "info": { + "name": "com.rackspace.apache:xerces2-xsd11", + "version": "2.11.1" + } + }, + { + "id": "com.rackspace.eclipse.webtools.sourceediting:org.eclipse.wst.xml.xpath2.processor@2.1.100", + "info": { + "name": "com.rackspace.eclipse.webtools.sourceediting:org.eclipse.wst.xml.xpath2.processor", + "version": "2.1.100" + } + }, + { + "id": "edu.princeton.cup:java-cup@10k", + "info": { + "name": "edu.princeton.cup:java-cup", + "version": "10k" + } + }, + { + "id": "xml-resolver:xml-resolver@1.2", + "info": { + "name": "xml-resolver:xml-resolver", + "version": "1.2" + } + }, + { + "id": "xml-apis:xml-apis@1.4.01", + "info": { + "name": "xml-apis:xml-apis", + "version": "1.4.01" + } + }, + { + "id": "org.awaitility:awaitility@4.0.3", + "info": { + "name": "org.awaitility:awaitility", + "version": "4.0.3" + } + }, + { + "id": "//integrations/adp_workforce_now:main@bazel", + "info": { + "name": "//integrations/adp_workforce_now:main", + "version": "bazel" + } + }, + { + "id": "//ecomm:main@bazel", + "info": { + "name": "//ecomm:main", + "version": "bazel" + } + }, + { + "id": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-xml-provider@2.9.8", + "info": { + "name": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-xml-provider", + "version": "2.9.8" + } + }, + { + "id": "org.codehaus.woodstox:woodstox-core-asl@4.2.0", + "info": { + "name": "org.codehaus.woodstox:woodstox-core-asl", + "version": "4.2.0" + } + }, + { + "id": "//integrations/adroll:main@bazel", + "info": { + "name": "//integrations/adroll:main", + "version": "bazel" + } + }, + { + "id": "//integrations/adwords:main@bazel", + "info": { + "name": "//integrations/adwords:main", + "version": "bazel" + } + }, + { + "id": "//integrations/cube:main@bazel", + "info": { + "name": "//integrations/cube:main", + "version": "bazel" + } + }, + { + "id": "com.google.api-ads:google-ads@19.0.0", + "info": { + "name": "com.google.api-ads:google-ads", + "version": "19.0.0" + } + }, + { + "id": "com.google.auto.service:auto-service@1.0-rc2", + "info": { + "name": "com.google.auto.service:auto-service", + "version": "1.0-rc2" + } + }, + { + "id": "com.google.auto:auto-common@0.10", + "info": { + "name": "com.google.auto:auto-common", + "version": "0.10" + } + }, + { + "id": "com.google.api-ads:google-ads-codegen@19.0.0", + "info": { + "name": "com.google.api-ads:google-ads-codegen", + "version": "19.0.0" + } + }, + { + "id": "com.google.api-ads:google-ads-stubs-v11@19.0.0", + "info": { + "name": "com.google.api-ads:google-ads-stubs-v11", + "version": "19.0.0" + } + }, + { + "id": "com.google.api-ads:google-ads-stubs-lib@19.0.0", + "info": { + "name": "com.google.api-ads:google-ads-stubs-lib", + "version": "19.0.0" + } + }, + { + "id": "com.google.api-ads:google-ads-stubs-v10@19.0.0", + "info": { + "name": "com.google.api-ads:google-ads-stubs-v10", + "version": "19.0.0" + } + }, + { + "id": "com.google.api-ads:google-ads-stubs-v9@19.0.0", + "info": { + "name": "com.google.api-ads:google-ads-stubs-v9", + "version": "19.0.0" + } + }, + { + "id": "com.squareup:javapoet@1.11.1", + "info": { + "name": "com.squareup:javapoet", + "version": "1.11.1" + } + }, + { + "id": "org.reflections:reflections@0.9.12", + "info": { + "name": "org.reflections:reflections", + "version": "0.9.12" + } + }, + { + "id": "//integrations/google_ads:main@bazel", + "info": { + "name": "//integrations/google_ads:main", + "version": "bazel" + } + }, + { + "id": "//integrations/airtable:main@bazel", + "info": { + "name": "//integrations/airtable:main", + "version": "bazel" + } + }, + { + "id": "//integrations/amazon_ads:main@bazel", + "info": { + "name": "//integrations/amazon_ads:main", + "version": "bazel" + } + }, + { + "id": "//integrations/amplitude:main@bazel", + "info": { + "name": "//integrations/amplitude:main", + "version": "bazel" + } + }, + { + "id": "//integrations/anaplan:main@bazel", + "info": { + "name": "//integrations/anaplan:main", + "version": "bazel" + } + }, + { + "id": "//integrations/apple_search_ads:main@bazel", + "info": { + "name": "//integrations/apple_search_ads:main", + "version": "bazel" + } + }, + { + "id": "//integrations/appsflyer:main@bazel", + "info": { + "name": "//integrations/appsflyer:main", + "version": "bazel" + } + }, + { + "id": "//integrations/asana:main@bazel", + "info": { + "name": "//integrations/asana:main", + "version": "bazel" + } + }, + { + "id": "//integrations/aws_cloudtrail:main@bazel", + "info": { + "name": "//integrations/aws_cloudtrail:main", + "version": "bazel" + } + }, + { + "id": "//integrations/aws_inventory:main@bazel", + "info": { + "name": "//integrations/aws_inventory:main", + "version": "bazel" + } + }, + { + "id": "//integrations/azure_blob_storage:main@bazel", + "info": { + "name": "//integrations/azure_blob_storage:main", + "version": "bazel" + } + }, + { + "id": "//integrations/azure_consumer_file:main@bazel", + "info": { + "name": "//integrations/azure_consumer_file:main", + "version": "bazel" + } + }, + { + "id": "//integrations/azure_service_bus:main@bazel", + "info": { + "name": "//integrations/azure_service_bus:main", + "version": "bazel" + } + }, + { + "id": "//integrations/kafka:main@bazel", + "info": { + "name": "//integrations/kafka:main", + "version": "bazel" + } + }, + { + "id": "//shaded_dependencies/azure:azure_messaging_eventhubs_shaded@bazel", + "info": { + "name": "//shaded_dependencies/azure:azure_messaging_eventhubs_shaded", + "version": "bazel" + } + }, + { + "id": "io.confluent:kafka-protobuf-serializer@5.5.1", + "info": { + "name": "io.confluent:kafka-protobuf-serializer", + "version": "5.5.1" + } + }, + { + "id": "io.confluent:kafka-schema-serializer@5.5.1", + "info": { + "name": "io.confluent:kafka-schema-serializer", + "version": "5.5.1" + } + }, + { + "id": "io.confluent:common-config@5.5.1", + "info": { + "name": "io.confluent:common-config", + "version": "5.5.1" + } + }, + { + "id": "io.confluent:common-utils@5.5.1", + "info": { + "name": "io.confluent:common-utils", + "version": "5.5.1" + } + }, + { + "id": "io.confluent:kafka-schema-registry-client@5.5.1", + "info": { + "name": "io.confluent:kafka-schema-registry-client", + "version": "5.5.1" + } + }, + { + "id": "org.apache.kafka:kafka-clients@2.1.0", + "info": { + "name": "org.apache.kafka:kafka-clients", + "version": "2.1.0" + } + }, + { + "id": "org.lz4:lz4-java@1.8.0", + "info": { + "name": "org.lz4:lz4-java", + "version": "1.8.0" + } + }, + { + "id": "io.confluent:kafka-protobuf-provider@5.5.1", + "info": { + "name": "io.confluent:kafka-protobuf-provider", + "version": "5.5.1" + } + }, + { + "id": "com.squareup.wire:wire-schema@3.2.2", + "info": { + "name": "com.squareup.wire:wire-schema", + "version": "3.2.2" + } + }, + { + "id": "com.squareup.wire:wire-runtime@3.2.2", + "info": { + "name": "com.squareup.wire:wire-runtime", + "version": "3.2.2" + } + }, + { + "id": "org.jetbrains.kotlin:kotlin-stdlib-jdk8@1.3.71", + "info": { + "name": "org.jetbrains.kotlin:kotlin-stdlib-jdk8", + "version": "1.3.71" + } + }, + { + "id": "org.jetbrains.kotlin:kotlin-stdlib-jdk7@1.3.71", + "info": { + "name": "org.jetbrains.kotlin:kotlin-stdlib-jdk7", + "version": "1.3.71" + } + }, + { + "id": "//shaded_dependencies/azure:azure_core_shaded@bazel", + "info": { + "name": "//shaded_dependencies/azure:azure_core_shaded", + "version": "bazel" + } + }, + { + "id": "//shaded_dependencies/azure:azure_messaging_servicebus_shaded@bazel", + "info": { + "name": "//shaded_dependencies/azure:azure_messaging_servicebus_shaded", + "version": "bazel" + } + }, + { + "id": "//shaded_dependencies/azure:microsoft_azure_servicebus_shaded@bazel", + "info": { + "name": "//shaded_dependencies/azure:microsoft_azure_servicebus_shaded", + "version": "bazel" + } + }, + { + "id": "com.azure:azure-core-amqp@2.3.3", + "info": { + "name": "com.azure:azure-core-amqp", + "version": "2.3.3" + } + }, + { + "id": "com.azure:azure-core@1.21.0", + "info": { + "name": "com.azure:azure-core", + "version": "1.21.0" + } + }, + { + "id": "io.projectreactor:reactor-core@3.4.10", + "info": { + "name": "io.projectreactor:reactor-core", + "version": "3.4.10" + } + }, + { + "id": "com.fasterxml.jackson.core:jackson-annotations@2.12.5", + "info": { + "name": "com.fasterxml.jackson.core:jackson-annotations", + "version": "2.12.5" + } + }, + { + "id": "com.fasterxml.jackson.core:jackson-databind@2.12.5", + "info": { + "name": "com.fasterxml.jackson.core:jackson-databind", + "version": "2.12.5" + } + }, + { + "id": "com.fasterxml.jackson.core:jackson-core@2.12.5", + "info": { + "name": "com.fasterxml.jackson.core:jackson-core", + "version": "2.12.5" + } + }, + { + "id": "io.netty:netty-tcnative-boringssl-static@2.0.43.Final", + "info": { + "name": "io.netty:netty-tcnative-boringssl-static", + "version": "2.0.43.Final" + } + }, + { + "id": "org.slf4j:slf4j-api@1.7.32", + "info": { + "name": "org.slf4j:slf4j-api", + "version": "1.7.32" + } + }, + { + "id": "com.fasterxml.jackson.dataformat:jackson-dataformat-xml@2.12.5", + "info": { + "name": "com.fasterxml.jackson.dataformat:jackson-dataformat-xml", + "version": "2.12.5" + } + }, + { + "id": "com.fasterxml.jackson.module:jackson-module-jaxb-annotations@2.12.5", + "info": { + "name": "com.fasterxml.jackson.module:jackson-module-jaxb-annotations", + "version": "2.12.5" + } + }, + { + "id": "jakarta.activation:jakarta.activation-api@1.2.2", + "info": { + "name": "jakarta.activation:jakarta.activation-api", + "version": "1.2.2" + } + }, + { + "id": "jakarta.xml.bind:jakarta.xml.bind-api@2.3.3", + "info": { + "name": "jakarta.xml.bind:jakarta.xml.bind-api", + "version": "2.3.3" + } + }, + { + "id": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.12.5", + "info": { + "name": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310", + "version": "2.12.5" + } + }, + { + "id": "com.microsoft.azure:qpid-proton-j-extensions@1.2.4", + "info": { + "name": "com.microsoft.azure:qpid-proton-j-extensions", + "version": "1.2.4" + } + }, + { + "id": "org.apache.qpid:proton-j@0.33.8", + "info": { + "name": "org.apache.qpid:proton-j", + "version": "0.33.8" + } + }, + { + "id": "com.azure:azure-core-http-netty@1.11.1", + "info": { + "name": "com.azure:azure-core-http-netty", + "version": "1.11.1" + } + }, + { + "id": "io.netty:netty-handler-proxy@4.1.68.Final", + "info": { + "name": "io.netty:netty-handler-proxy", + "version": "4.1.68.Final" + } + }, + { + "id": "io.netty:netty-common@4.1.68.Final", + "info": { + "name": "io.netty:netty-common", + "version": "4.1.68.Final" + } + }, + { + "id": "io.netty:netty-codec@4.1.68.Final", + "info": { + "name": "io.netty:netty-codec", + "version": "4.1.68.Final" + } + }, + { + "id": "io.netty:netty-buffer@4.1.68.Final", + "info": { + "name": "io.netty:netty-buffer", + "version": "4.1.68.Final" + } + }, + { + "id": "io.netty:netty-transport@4.1.68.Final", + "info": { + "name": "io.netty:netty-transport", + "version": "4.1.68.Final" + } + }, + { + "id": "io.netty:netty-resolver@4.1.68.Final", + "info": { + "name": "io.netty:netty-resolver", + "version": "4.1.68.Final" + } + }, + { + "id": "io.netty:netty-codec-socks@4.1.68.Final", + "info": { + "name": "io.netty:netty-codec-socks", + "version": "4.1.68.Final" + } + }, + { + "id": "io.netty:netty-codec-http@4.1.68.Final", + "info": { + "name": "io.netty:netty-codec-http", + "version": "4.1.68.Final" + } + }, + { + "id": "io.netty:netty-handler@4.1.68.Final", + "info": { + "name": "io.netty:netty-handler", + "version": "4.1.68.Final" + } + }, + { + "id": "io.projectreactor.netty:reactor-netty-http@1.0.11", + "info": { + "name": "io.projectreactor.netty:reactor-netty-http", + "version": "1.0.11" + } + }, + { + "id": "io.projectreactor.netty:reactor-netty-core@1.0.11", + "info": { + "name": "io.projectreactor.netty:reactor-netty-core", + "version": "1.0.11" + } + }, + { + "id": "io.netty:netty-resolver-dns@4.1.68.Final", + "info": { + "name": "io.netty:netty-resolver-dns", + "version": "4.1.68.Final" + } + }, + { + "id": "io.netty:netty-codec-dns@4.1.68.Final", + "info": { + "name": "io.netty:netty-codec-dns", + "version": "4.1.68.Final" + } + }, + { + "id": "io.netty:netty-transport-native-epoll:jar:linux-x86_64@4.1.68.Final", + "info": { + "name": "io.netty:netty-transport-native-epoll:jar:linux-x86_64", + "version": "4.1.68.Final" + } + }, + { + "id": "io.netty:netty-transport-native-unix-common@4.1.68.Final", + "info": { + "name": "io.netty:netty-transport-native-unix-common", + "version": "4.1.68.Final" + } + }, + { + "id": "io.netty:netty-resolver-dns-native-macos:jar:osx-x86_64@4.1.68.Final", + "info": { + "name": "io.netty:netty-resolver-dns-native-macos:jar:osx-x86_64", + "version": "4.1.68.Final" + } + }, + { + "id": "io.netty:netty-codec-http2@4.1.68.Final", + "info": { + "name": "io.netty:netty-codec-http2", + "version": "4.1.68.Final" + } + }, + { + "id": "io.netty:netty-transport-native-kqueue:jar:osx-x86_64@4.1.68.Final", + "info": { + "name": "io.netty:netty-transport-native-kqueue:jar:osx-x86_64", + "version": "4.1.68.Final" + } + }, + { + "id": "//integrations/big_commerce:main@bazel", + "info": { + "name": "//integrations/big_commerce:main", + "version": "bazel" + } + }, + { + "id": "//integrations/bingads:main@bazel", + "info": { + "name": "//integrations/bingads:main", + "version": "bazel" + } + }, + { + "id": "//xml_util:main@bazel", + "info": { + "name": "//xml_util:main", + "version": "bazel" + } + }, + { + "id": "com.microsoft.bingads:microsoft.bingads@12.0.3", + "info": { + "name": "com.microsoft.bingads:microsoft.bingads", + "version": "12.0.3" + } + }, + { + "id": "com.googlecode.jcsv:jcsv@1.4.0", + "info": { + "name": "com.googlecode.jcsv:jcsv", + "version": "1.4.0" + } + }, + { + "id": "org.apache.cxf:cxf-rt-transports-http@3.2.14", + "info": { + "name": "org.apache.cxf:cxf-rt-transports-http", + "version": "3.2.14" + } + }, + { + "id": "org.apache.cxf:cxf-core@3.2.14", + "info": { + "name": "org.apache.cxf:cxf-core", + "version": "3.2.14" + } + }, + { + "id": "org.apache.ws.xmlschema:xmlschema-core@2.2.5", + "info": { + "name": "org.apache.ws.xmlschema:xmlschema-core", + "version": "2.2.5" + } + }, + { + "id": "org.apache.cxf:cxf-rt-frontend-jaxws@3.2.14", + "info": { + "name": "org.apache.cxf:cxf-rt-frontend-jaxws", + "version": "3.2.14" + } + }, + { + "id": "org.apache.cxf:cxf-rt-ws-addr@3.2.14", + "info": { + "name": "org.apache.cxf:cxf-rt-ws-addr", + "version": "3.2.14" + } + }, + { + "id": "org.apache.cxf:cxf-rt-bindings-soap@3.2.14", + "info": { + "name": "org.apache.cxf:cxf-rt-bindings-soap", + "version": "3.2.14" + } + }, + { + "id": "org.apache.cxf:cxf-rt-databinding-jaxb@3.2.14", + "info": { + "name": "org.apache.cxf:cxf-rt-databinding-jaxb", + "version": "3.2.14" + } + }, + { + "id": "org.apache.cxf:cxf-rt-wsdl@3.2.14", + "info": { + "name": "org.apache.cxf:cxf-rt-wsdl", + "version": "3.2.14" + } + }, + { + "id": "org.apache.cxf:cxf-rt-ws-policy@3.2.14", + "info": { + "name": "org.apache.cxf:cxf-rt-ws-policy", + "version": "3.2.14" + } + }, + { + "id": "org.apache.neethi:neethi@3.1.1", + "info": { + "name": "org.apache.neethi:neethi", + "version": "3.1.1" + } + }, + { + "id": "org.apache.cxf:cxf-rt-bindings-xml@3.2.14", + "info": { + "name": "org.apache.cxf:cxf-rt-bindings-xml", + "version": "3.2.14" + } + }, + { + "id": "org.apache.cxf:cxf-rt-frontend-simple@3.2.14", + "info": { + "name": "org.apache.cxf:cxf-rt-frontend-simple", + "version": "3.2.14" + } + }, + { + "id": "org.apache.httpcomponents:httpmime@4.5.13", + "info": { + "name": "org.apache.httpcomponents:httpmime", + "version": "4.5.13" + } + }, + { + "id": "//integrations/box:main@bazel", + "info": { + "name": "//integrations/box:main", + "version": "bazel" + } + }, + { + "id": "//integrations/braintree:main@bazel", + "info": { + "name": "//integrations/braintree:main", + "version": "bazel" + } + }, + { + "id": "com.braintreepayments.gateway:braintree-java@2.108.0", + "info": { + "name": "com.braintreepayments.gateway:braintree-java", + "version": "2.108.0" + } + }, + { + "id": "com.fasterxml.jackson.jr:jackson-jr-objects@2.9.9", + "info": { + "name": "com.fasterxml.jackson.jr:jackson-jr-objects", + "version": "2.9.9" + } + }, + { + "id": "org.apache.commons:commons-csv@1.8", + "info": { + "name": "org.apache.commons:commons-csv", + "version": "1.8" + } + }, + { + "id": "org.osgi:org.osgi.core@4.2.0", + "info": { + "name": "org.osgi:org.osgi.core", + "version": "4.2.0" + } + }, + { + "id": "//integrations/branch:main@bazel", + "info": { + "name": "//integrations/branch:main", + "version": "bazel" + } + }, + { + "id": "//integrations/business_central:main@bazel", + "info": { + "name": "//integrations/business_central:main", + "version": "bazel" + } + }, + { + "id": "//integrations/cloudfront:main@bazel", + "info": { + "name": "//integrations/cloudfront:main", + "version": "bazel" + } + }, + { + "id": "//integrations/s3:main@bazel", + "info": { + "name": "//integrations/s3:main", + "version": "bazel" + } + }, + { + "id": "//integrations/coupa:main@bazel", + "info": { + "name": "//integrations/coupa:main", + "version": "bazel" + } + }, + { + "id": "//integrations/criteo:main@bazel", + "info": { + "name": "//integrations/criteo:main", + "version": "bazel" + } + }, + { + "id": "//integrations/db2:main@bazel", + "info": { + "name": "//integrations/db2:main", + "version": "bazel" + } + }, + { + "id": "//utils/byte_array_list:main@bazel", + "info": { + "name": "//utils/byte_array_list:main", + "version": "bazel" + } + }, + { + "id": "//integrations/document:main@bazel", + "info": { + "name": "//integrations/document:main", + "version": "bazel" + } + }, + { + "id": "//integrations/mongo:main@bazel", + "info": { + "name": "//integrations/mongo:main", + "version": "bazel" + } + }, + { + "id": "dnsjava:dnsjava@3.0.2", + "info": { + "name": "dnsjava:dnsjava", + "version": "3.0.2" + } + }, + { + "id": "io.opentelemetry:opentelemetry-api@0.13.1", + "info": { + "name": "io.opentelemetry:opentelemetry-api", + "version": "0.13.1" + } + }, + { + "id": "io.opentelemetry:opentelemetry-api-metrics@0.13.0-alpha", + "info": { + "name": "io.opentelemetry:opentelemetry-api-metrics", + "version": "0.13.0-alpha" + } + }, + { + "id": "io.opentelemetry:opentelemetry-api-common@0.13.1", + "info": { + "name": "io.opentelemetry:opentelemetry-api-common", + "version": "0.13.1" + } + }, + { + "id": "io.opentelemetry:opentelemetry-context@0.13.1", + "info": { + "name": "io.opentelemetry:opentelemetry-context", + "version": "0.13.1" + } + }, + { + "id": "io.opentelemetry:opentelemetry-api-trace@0.13.1", + "info": { + "name": "io.opentelemetry:opentelemetry-api-trace", + "version": "0.13.1" + } + }, + { + "id": "io.opentelemetry:opentelemetry-api-baggage@0.13.1", + "info": { + "name": "io.opentelemetry:opentelemetry-api-baggage", + "version": "0.13.1" + } + }, + { + "id": "io.opentelemetry:opentelemetry-extension-annotations@0.13.1", + "info": { + "name": "io.opentelemetry:opentelemetry-extension-annotations", + "version": "0.13.1" + } + }, + { + "id": "org.mongodb:mongo-java-driver@3.12.0", + "info": { + "name": "org.mongodb:mongo-java-driver", + "version": "3.12.0" + } + }, + { + "id": "//integrations/double_click_campaign_manager:main@bazel", + "info": { + "name": "//integrations/double_click_campaign_manager:main", + "version": "bazel" + } + }, + { + "id": "//integrations/dropbox:main@bazel", + "info": { + "name": "//integrations/dropbox:main", + "version": "bazel" + } + }, + { + "id": "com.dropbox.core:dropbox-core-sdk@4.0.0", + "info": { + "name": "com.dropbox.core:dropbox-core-sdk", + "version": "4.0.0" + } + }, + { + "id": "//integrations/dummy_postgres:main@bazel", + "info": { + "name": "//integrations/dummy_postgres:main", + "version": "bazel" + } + }, + { + "id": "//integrations/dynamics365:main@bazel", + "info": { + "name": "//integrations/dynamics365:main", + "version": "bazel" + } + }, + { + "id": "//integrations/dynamodb:main@bazel", + "info": { + "name": "//integrations/dynamodb:main", + "version": "bazel" + } + }, + { + "id": "@acmecorp_amazon_kinesis_client//:main@bazel", + "info": { + "name": "@acmecorp_amazon_kinesis_client//:main", + "version": "bazel" + } + }, + { + "id": "com.amazonaws:aws-java-sdk-kinesis@1.12.84", + "info": { + "name": "com.amazonaws:aws-java-sdk-kinesis", + "version": "1.12.84" + } + }, + { + "id": "com.amazonaws:dynamodb-streams-kinesis-adapter@1.4.0", + "info": { + "name": "com.amazonaws:dynamodb-streams-kinesis-adapter", + "version": "1.4.0" + } + }, + { + "id": "com.amazonaws:amazon-kinesis-client@1.13.0", + "info": { + "name": "com.amazonaws:amazon-kinesis-client", + "version": "1.13.0" + } + }, + { + "id": "//integrations/elasticsearch:main@bazel", + "info": { + "name": "//integrations/elasticsearch:main", + "version": "bazel" + } + }, + { + "id": "org.apache.lucene:lucene-core@8.9.0", + "info": { + "name": "org.apache.lucene:lucene-core", + "version": "8.9.0" + } + }, + { + "id": "org.elasticsearch.client:elasticsearch-rest-client@7.14.0", + "info": { + "name": "org.elasticsearch.client:elasticsearch-rest-client", + "version": "7.14.0" + } + }, + { + "id": "org.apache.httpcomponents:httpcore-nio@4.4.13", + "info": { + "name": "org.apache.httpcomponents:httpcore-nio", + "version": "4.4.13" + } + }, + { + "id": "org.apache.httpcomponents:httpasyncclient@4.1.4", + "info": { + "name": "org.apache.httpcomponents:httpasyncclient", + "version": "4.1.4" + } + }, + { + "id": "org.elasticsearch.client:elasticsearch-rest-high-level-client@7.14.0", + "info": { + "name": "org.elasticsearch.client:elasticsearch-rest-high-level-client", + "version": "7.14.0" + } + }, + { + "id": "org.elasticsearch.plugin:parent-join-client@7.14.0", + "info": { + "name": "org.elasticsearch.plugin:parent-join-client", + "version": "7.14.0" + } + }, + { + "id": "org.elasticsearch.plugin:lang-mustache-client@7.14.0", + "info": { + "name": "org.elasticsearch.plugin:lang-mustache-client", + "version": "7.14.0" + } + }, + { + "id": "com.github.spullara.mustache.java:compiler@0.9.6", + "info": { + "name": "com.github.spullara.mustache.java:compiler", + "version": "0.9.6" + } + }, + { + "id": "org.elasticsearch.plugin:aggs-matrix-stats-client@7.14.0", + "info": { + "name": "org.elasticsearch.plugin:aggs-matrix-stats-client", + "version": "7.14.0" + } + }, + { + "id": "org.elasticsearch.plugin:mapper-extras-client@7.14.0", + "info": { + "name": "org.elasticsearch.plugin:mapper-extras-client", + "version": "7.14.0" + } + }, + { + "id": "org.elasticsearch:elasticsearch@7.14.0", + "info": { + "name": "org.elasticsearch:elasticsearch", + "version": "7.14.0" + } + }, + { + "id": "org.apache.lucene:lucene-suggest@8.9.0", + "info": { + "name": "org.apache.lucene:lucene-suggest", + "version": "8.9.0" + } + }, + { + "id": "org.elasticsearch:jna@5.7.0-1", + "info": { + "name": "org.elasticsearch:jna", + "version": "5.7.0-1" + } + }, + { + "id": "org.apache.lucene:lucene-highlighter@8.9.0", + "info": { + "name": "org.apache.lucene:lucene-highlighter", + "version": "8.9.0" + } + }, + { + "id": "com.tdunning:t-digest@3.2", + "info": { + "name": "com.tdunning:t-digest", + "version": "3.2" + } + }, + { + "id": "org.elasticsearch:elasticsearch-cli@7.14.0", + "info": { + "name": "org.elasticsearch:elasticsearch-cli", + "version": "7.14.0" + } + }, + { + "id": "org.elasticsearch:elasticsearch-core@7.14.0", + "info": { + "name": "org.elasticsearch:elasticsearch-core", + "version": "7.14.0" + } + }, + { + "id": "org.elasticsearch:elasticsearch-x-content@7.14.0", + "info": { + "name": "org.elasticsearch:elasticsearch-x-content", + "version": "7.14.0" + } + }, + { + "id": "org.apache.lucene:lucene-grouping@8.9.0", + "info": { + "name": "org.apache.lucene:lucene-grouping", + "version": "8.9.0" + } + }, + { + "id": "org.apache.lucene:lucene-join@8.9.0", + "info": { + "name": "org.apache.lucene:lucene-join", + "version": "8.9.0" + } + }, + { + "id": "org.apache.logging.log4j:log4j-api@2.17.1", + "info": { + "name": "org.apache.logging.log4j:log4j-api", + "version": "2.17.1" + } + }, + { + "id": "com.carrotsearch:hppc@0.8.1", + "info": { + "name": "com.carrotsearch:hppc", + "version": "0.8.1" + } + }, + { + "id": "org.apache.lucene:lucene-sandbox@8.9.0", + "info": { + "name": "org.apache.lucene:lucene-sandbox", + "version": "8.9.0" + } + }, + { + "id": "org.apache.lucene:lucene-backward-codecs@8.9.0", + "info": { + "name": "org.apache.lucene:lucene-backward-codecs", + "version": "8.9.0" + } + }, + { + "id": "org.apache.lucene:lucene-spatial-extras@8.9.0", + "info": { + "name": "org.apache.lucene:lucene-spatial-extras", + "version": "8.9.0" + } + }, + { + "id": "org.apache.lucene:lucene-spatial3d@8.9.0", + "info": { + "name": "org.apache.lucene:lucene-spatial3d", + "version": "8.9.0" + } + }, + { + "id": "org.apache.lucene:lucene-misc@8.9.0", + "info": { + "name": "org.apache.lucene:lucene-misc", + "version": "8.9.0" + } + }, + { + "id": "org.elasticsearch:elasticsearch-geo@7.14.0", + "info": { + "name": "org.elasticsearch:elasticsearch-geo", + "version": "7.14.0" + } + }, + { + "id": "org.apache.lucene:lucene-analyzers-common@8.9.0", + "info": { + "name": "org.apache.lucene:lucene-analyzers-common", + "version": "8.9.0" + } + }, + { + "id": "org.apache.lucene:lucene-memory@8.9.0", + "info": { + "name": "org.apache.lucene:lucene-memory", + "version": "8.9.0" + } + }, + { + "id": "org.apache.lucene:lucene-queries@8.9.0", + "info": { + "name": "org.apache.lucene:lucene-queries", + "version": "8.9.0" + } + }, + { + "id": "org.elasticsearch:elasticsearch-secure-sm@7.14.0", + "info": { + "name": "org.elasticsearch:elasticsearch-secure-sm", + "version": "7.14.0" + } + }, + { + "id": "org.elasticsearch:elasticsearch-plugin-classloader@7.14.0", + "info": { + "name": "org.elasticsearch:elasticsearch-plugin-classloader", + "version": "7.14.0" + } + }, + { + "id": "org.apache.lucene:lucene-queryparser@8.9.0", + "info": { + "name": "org.apache.lucene:lucene-queryparser", + "version": "8.9.0" + } + }, + { + "id": "org.elasticsearch.plugin:rank-eval-client@7.14.0", + "info": { + "name": "org.elasticsearch.plugin:rank-eval-client", + "version": "7.14.0" + } + }, + { + "id": "org.opensearch.client:opensearch-rest-client@1.1.0", + "info": { + "name": "org.opensearch.client:opensearch-rest-client", + "version": "1.1.0" + } + }, + { + "id": "org.opensearch.client:opensearch-rest-high-level-client@1.1.0", + "info": { + "name": "org.opensearch.client:opensearch-rest-high-level-client", + "version": "1.1.0" + } + }, + { + "id": "org.opensearch.plugin:aggs-matrix-stats-client@1.1.0", + "info": { + "name": "org.opensearch.plugin:aggs-matrix-stats-client", + "version": "1.1.0" + } + }, + { + "id": "org.opensearch.plugin:lang-mustache-client@1.1.0", + "info": { + "name": "org.opensearch.plugin:lang-mustache-client", + "version": "1.1.0" + } + }, + { + "id": "org.opensearch.plugin:mapper-extras-client@1.1.0", + "info": { + "name": "org.opensearch.plugin:mapper-extras-client", + "version": "1.1.0" + } + }, + { + "id": "org.opensearch:opensearch@1.1.0", + "info": { + "name": "org.opensearch:opensearch", + "version": "1.1.0" + } + }, + { + "id": "org.opensearch:opensearch-cli@1.1.0", + "info": { + "name": "org.opensearch:opensearch-cli", + "version": "1.1.0" + } + }, + { + "id": "org.opensearch:opensearch-core@1.1.0", + "info": { + "name": "org.opensearch:opensearch-core", + "version": "1.1.0" + } + }, + { + "id": "org.opensearch:opensearch-geo@1.1.0", + "info": { + "name": "org.opensearch:opensearch-geo", + "version": "1.1.0" + } + }, + { + "id": "org.opensearch:opensearch-secure-sm@1.1.0", + "info": { + "name": "org.opensearch:opensearch-secure-sm", + "version": "1.1.0" + } + }, + { + "id": "org.opensearch:opensearch-x-content@1.1.0", + "info": { + "name": "org.opensearch:opensearch-x-content", + "version": "1.1.0" + } + }, + { + "id": "org.opensearch.plugin:rank-eval-client@1.1.0", + "info": { + "name": "org.opensearch.plugin:rank-eval-client", + "version": "1.1.0" + } + }, + { + "id": "org.opensearch.plugin:parent-join-client@1.1.0", + "info": { + "name": "org.opensearch.plugin:parent-join-client", + "version": "1.1.0" + } + }, + { + "id": "//integrations/eloqua:main@bazel", + "info": { + "name": "//integrations/eloqua:main", + "version": "bazel" + } + }, + { + "id": "//integrations/email:main@bazel", + "info": { + "name": "//integrations/email:main", + "version": "bazel" + } + }, + { + "id": "javax.mail:mail@1.4.5", + "info": { + "name": "javax.mail:mail", + "version": "1.4.5" + } + }, + { + "id": "//integrations/facebook:main@bazel", + "info": { + "name": "//integrations/facebook:main", + "version": "bazel" + } + }, + { + "id": "//integrations/acmecorp_log:main@bazel", + "info": { + "name": "//integrations/acmecorp_log:main", + "version": "bazel" + } + }, + { + "id": "org.apache.logging.log4j:log4j-core@2.17.1", + "info": { + "name": "org.apache.logging.log4j:log4j-core", + "version": "2.17.1" + } + }, + { + "id": "//integrations/freshdesk:main@bazel", + "info": { + "name": "//integrations/freshdesk:main", + "version": "bazel" + } + }, + { + "id": "//integrations/freshservice_classic:main@bazel", + "info": { + "name": "//integrations/freshservice_classic:main", + "version": "bazel" + } + }, + { + "id": "//integrations/front:main@bazel", + "info": { + "name": "//integrations/front:main", + "version": "bazel" + } + }, + { + "id": "//integrations/functions/aws_lambda:main@bazel", + "info": { + "name": "//integrations/functions/aws_lambda:main", + "version": "bazel" + } + }, + { + "id": "//integrations/functions/common:main@bazel", + "info": { + "name": "//integrations/functions/common:main", + "version": "bazel" + } + }, + { + "id": "com.amazonaws:aws-java-sdk-lambda@1.12.84", + "info": { + "name": "com.amazonaws:aws-java-sdk-lambda", + "version": "1.12.84" + } + }, + { + "id": "//integrations/functions/azure_function:main@bazel", + "info": { + "name": "//integrations/functions/azure_function:main", + "version": "bazel" + } + }, + { + "id": "//integrations/functions/google_cloud_function:main@bazel", + "info": { + "name": "//integrations/functions/google_cloud_function:main", + "version": "bazel" + } + }, + { + "id": "//integrations/gcs:main@bazel", + "info": { + "name": "//integrations/gcs:main", + "version": "bazel" + } + }, + { + "id": "//integrations/gainsight_customer_success:main@bazel", + "info": { + "name": "//integrations/gainsight_customer_success:main", + "version": "bazel" + } + }, + { + "id": "//integrations/gdrive:main@bazel", + "info": { + "name": "//integrations/gdrive:main", + "version": "bazel" + } + }, + { + "id": "//integrations/gsheets:main@bazel", + "info": { + "name": "//integrations/gsheets:main", + "version": "bazel" + } + }, + { + "id": "com.google.apis:google-api-services-drive@v3-rev197-1.25.0", + "info": { + "name": "com.google.apis:google-api-services-drive", + "version": "v3-rev197-1.25.0" + } + }, + { + "id": "com.google.oauth-client:google-oauth-client-jetty@1.23.0", + "info": { + "name": "com.google.oauth-client:google-oauth-client-jetty", + "version": "1.23.0" + } + }, + { + "id": "com.google.oauth-client:google-oauth-client-java6@1.23.0", + "info": { + "name": "com.google.oauth-client:google-oauth-client-java6", + "version": "1.23.0" + } + }, + { + "id": "//integrations/github:main@bazel", + "info": { + "name": "//integrations/github:main", + "version": "bazel" + } + }, + { + "id": "//integrations/google_ad_manager:main@bazel", + "info": { + "name": "//integrations/google_ad_manager:main", + "version": "bazel" + } + }, + { + "id": "//integrations/google_analytics:main@bazel", + "info": { + "name": "//integrations/google_analytics:main", + "version": "bazel" + } + }, + { + "id": "//util:rest_api@bazel", + "info": { + "name": "//util:rest_api", + "version": "bazel" + } + }, + { + "id": "//utils/time:acmecorp_clock@bazel", + "info": { + "name": "//utils/time:acmecorp_clock", + "version": "bazel" + } + }, + { + "id": "//utils/token_api:main@bazel", + "info": { + "name": "//utils/token_api:main", + "version": "bazel" + } + }, + { + "id": "//integrations/google_analytics_4:main@bazel", + "info": { + "name": "//integrations/google_analytics_4:main", + "version": "bazel" + } + }, + { + "id": "//integrations/google_analytics_4_export:main@bazel", + "info": { + "name": "//integrations/google_analytics_4_export:main", + "version": "bazel" + } + }, + { + "id": "//integrations/google_analytics_360:main@bazel", + "info": { + "name": "//integrations/google_analytics_360:main", + "version": "bazel" + } + }, + { + "id": "//integrations/google_display_and_video_360:main@bazel", + "info": { + "name": "//integrations/google_display_and_video_360:main", + "version": "bazel" + } + }, + { + "id": "//integrations/google_search_ads_360:main@bazel", + "info": { + "name": "//integrations/google_search_ads_360:main", + "version": "bazel" + } + }, + { + "id": "//integrations/google_play:main@bazel", + "info": { + "name": "//integrations/google_play:main", + "version": "bazel" + } + }, + { + "id": "//integrations/google_search_console:main@bazel", + "info": { + "name": "//integrations/google_search_console:main", + "version": "bazel" + } + }, + { + "id": "//integrations/greenhouse:main@bazel", + "info": { + "name": "//integrations/greenhouse:main", + "version": "bazel" + } + }, + { + "id": "//integrations/heap:main@bazel", + "info": { + "name": "//integrations/heap:main", + "version": "bazel" + } + }, + { + "id": "//integrations/height:main@bazel", + "info": { + "name": "//integrations/height:main", + "version": "bazel" + } + }, + { + "id": "//integrations/helpscout:main@bazel", + "info": { + "name": "//integrations/helpscout:main", + "version": "bazel" + } + }, + { + "id": "//integrations/hubspot:main@bazel", + "info": { + "name": "//integrations/hubspot:main", + "version": "bazel" + } + }, + { + "id": "//integrations/instagram:main@bazel", + "info": { + "name": "//integrations/instagram:main", + "version": "bazel" + } + }, + { + "id": "org.assertj:assertj-core@3.14.0", + "info": { + "name": "org.assertj:assertj-core", + "version": "3.14.0" + } + }, + { + "id": "//integrations/intercom:main@bazel", + "info": { + "name": "//integrations/intercom:main", + "version": "bazel" + } + }, + { + "id": "//integrations/iterable:main@bazel", + "info": { + "name": "//integrations/iterable:main", + "version": "bazel" + } + }, + { + "id": "//integrations/itunes_connect:main@bazel", + "info": { + "name": "//integrations/itunes_connect:main", + "version": "bazel" + } + }, + { + "id": "//dockerized/google_cloud/datastore:main@bazel", + "info": { + "name": "//dockerized/google_cloud/datastore:main", + "version": "bazel" + } + }, + { + "id": "net.lingala.zip4j:zip4j@1.3.2", + "info": { + "name": "net.lingala.zip4j:zip4j", + "version": "1.3.2" + } + }, + { + "id": "//integrations/jira:main@bazel", + "info": { + "name": "//integrations/jira:main", + "version": "bazel" + } + }, + { + "id": "//core_implementation:standard_renaming_filter_2@bazel", + "info": { + "name": "//core_implementation:standard_renaming_filter_2", + "version": "bazel" + } + }, + { + "id": "//integrations/kinesis:main@bazel", + "info": { + "name": "//integrations/kinesis:main", + "version": "bazel" + } + }, + { + "id": "//integrations/klaviyo:main@bazel", + "info": { + "name": "//integrations/klaviyo:main", + "version": "bazel" + } + }, + { + "id": "//integrations/kustomer:main@bazel", + "info": { + "name": "//integrations/kustomer:main", + "version": "bazel" + } + }, + { + "id": "//integrations/lever:main@bazel", + "info": { + "name": "//integrations/lever:main", + "version": "bazel" + } + }, + { + "id": "//integrations/lightspeed_retail:main@bazel", + "info": { + "name": "//integrations/lightspeed_retail:main", + "version": "bazel" + } + }, + { + "id": "//integrations/linkedin:main@bazel", + "info": { + "name": "//integrations/linkedin:main", + "version": "bazel" + } + }, + { + "id": "//integrations/mailchimp:main@bazel", + "info": { + "name": "//integrations/mailchimp:main", + "version": "bazel" + } + }, + { + "id": "//integrations/mandrill:main@bazel", + "info": { + "name": "//integrations/mandrill:main", + "version": "bazel" + } + }, + { + "id": "//integrations/marin:main@bazel", + "info": { + "name": "//integrations/marin:main", + "version": "bazel" + } + }, + { + "id": "//integrations/sftp:main@bazel", + "info": { + "name": "//integrations/sftp:main", + "version": "bazel" + } + }, + { + "id": "//integrations/marketo:main@bazel", + "info": { + "name": "//integrations/marketo:main", + "version": "bazel" + } + }, + { + "id": "//size:main@bazel", + "info": { + "name": "//size:main", + "version": "bazel" + } + }, + { + "id": "com.sun.xml.messaging.saaj:saaj-impl@1.3.25", + "info": { + "name": "com.sun.xml.messaging.saaj:saaj-impl", + "version": "1.3.25" + } + }, + { + "id": "org.jvnet.mimepull:mimepull@1.9.6", + "info": { + "name": "org.jvnet.mimepull:mimepull", + "version": "1.9.6" + } + }, + { + "id": "org.jvnet.staxex:stax-ex@1.7.7", + "info": { + "name": "org.jvnet.staxex:stax-ex", + "version": "1.7.7" + } + }, + { + "id": "//integrations/mavenlink:main@bazel", + "info": { + "name": "//integrations/mavenlink:main", + "version": "bazel" + } + }, + { + "id": "//integrations/medallia:main@bazel", + "info": { + "name": "//integrations/medallia:main", + "version": "bazel" + } + }, + { + "id": "//http_client:main@bazel", + "info": { + "name": "//http_client:main", + "version": "bazel" + } + }, + { + "id": "io.github.resilience4j:resilience4j-core@1.7.1", + "info": { + "name": "io.github.resilience4j:resilience4j-core", + "version": "1.7.1" + } + }, + { + "id": "io.vavr:vavr@0.10.2", + "info": { + "name": "io.vavr:vavr", + "version": "0.10.2" + } + }, + { + "id": "io.vavr:vavr-match@0.10.2", + "info": { + "name": "io.vavr:vavr-match", + "version": "0.10.2" + } + }, + { + "id": "io.github.resilience4j:resilience4j-retry@1.7.1", + "info": { + "name": "io.github.resilience4j:resilience4j-retry", + "version": "1.7.1" + } + }, + { + "id": "//integrations/microsoft_lists:main@bazel", + "info": { + "name": "//integrations/microsoft_lists:main", + "version": "bazel" + } + }, + { + "id": "//integrations/mixpanel:main@bazel", + "info": { + "name": "//integrations/mixpanel:main", + "version": "bazel" + } + }, + { + "id": "//integrations/mysql:main@bazel", + "info": { + "name": "//integrations/mysql:main", + "version": "bazel" + } + }, + { + "id": "//integrations/optimizely:main@bazel", + "info": { + "name": "//integrations/optimizely:main", + "version": "bazel" + } + }, + { + "id": "//integrations/oracle_cloud_apps_cx:main@bazel", + "info": { + "name": "//integrations/oracle_cloud_apps_cx:main", + "version": "bazel" + } + }, + { + "id": "//integrations/oracle_cloud_apps:main@bazel", + "info": { + "name": "//integrations/oracle_cloud_apps:main", + "version": "bazel" + } + }, + { + "id": "//integrations/oracle_cloud_apps_erp_scm:main@bazel", + "info": { + "name": "//integrations/oracle_cloud_apps_erp_scm:main", + "version": "bazel" + } + }, + { + "id": "//integrations/oracle_fusion_cloud_apps:main@bazel", + "info": { + "name": "//integrations/oracle_fusion_cloud_apps:main", + "version": "bazel" + } + }, + { + "id": "com.opencsv:opencsv@4.1", + "info": { + "name": "com.opencsv:opencsv", + "version": "4.1" + } + }, + { + "id": "org.apache.commons:commons-text@1.1", + "info": { + "name": "org.apache.commons:commons-text", + "version": "1.1" + } + }, + { + "id": "org.glassfish.jersey.media:jersey-media-multipart@2.31", + "info": { + "name": "org.glassfish.jersey.media:jersey-media-multipart", + "version": "2.31" + } + }, + { + "id": "//integrations/oracle:main@bazel", + "info": { + "name": "//integrations/oracle:main", + "version": "bazel" + } + }, + { + "id": "//integrations/debezium_sql_parser:main@bazel", + "info": { + "name": "//integrations/debezium_sql_parser:main", + "version": "bazel" + } + }, + { + "id": "//integrations/hvr:main@bazel", + "info": { + "name": "//integrations/hvr:main", + "version": "bazel" + } + }, + { + "id": "//integrations/hvr/unserializer:main@bazel", + "info": { + "name": "//integrations/hvr/unserializer:main", + "version": "bazel" + } + }, + { + "id": "//port_forwarder:oracle@bazel", + "info": { + "name": "//port_forwarder:oracle", + "version": "bazel" + } + }, + { + "id": "//utils/byte_array_list/sync_adapter:main@bazel", + "info": { + "name": "//utils/byte_array_list/sync_adapter:main", + "version": "bazel" + } + }, + { + "id": "//integrations/oracle_hva:main@bazel", + "info": { + "name": "//integrations/oracle_hva:main", + "version": "bazel" + } + }, + { + "id": "//integrations/oracle_hva2:main@bazel", + "info": { + "name": "//integrations/oracle_hva2:main", + "version": "bazel" + } + }, + { + "id": "//integrations/outbrain:main@bazel", + "info": { + "name": "//integrations/outbrain:main", + "version": "bazel" + } + }, + { + "id": "org.eclipse.jetty:jetty-servlets@9.4.40.v20210413", + "info": { + "name": "org.eclipse.jetty:jetty-servlets", + "version": "9.4.40.v20210413" + } + }, + { + "id": "org.eclipse.jetty:jetty-continuation@9.4.40.v20210413", + "info": { + "name": "org.eclipse.jetty:jetty-continuation", + "version": "9.4.40.v20210413" + } + }, + { + "id": "org.glassfish.jersey.containers:jersey-container-servlet@2.31", + "info": { + "name": "org.glassfish.jersey.containers:jersey-container-servlet", + "version": "2.31" + } + }, + { + "id": "//integrations/outreach:main@bazel", + "info": { + "name": "//integrations/outreach:main", + "version": "bazel" + } + }, + { + "id": "//integrations/pardot:main@bazel", + "info": { + "name": "//integrations/pardot:main", + "version": "bazel" + } + }, + { + "id": "//integrations/paypal:main@bazel", + "info": { + "name": "//integrations/paypal:main", + "version": "bazel" + } + }, + { + "id": "//integrations/pendo:main@bazel", + "info": { + "name": "//integrations/pendo:main", + "version": "bazel" + } + }, + { + "id": "//integrations/pinterest:main@bazel", + "info": { + "name": "//integrations/pinterest:main", + "version": "bazel" + } + }, + { + "id": "//integrations/pipedrive:main@bazel", + "info": { + "name": "//integrations/pipedrive:main", + "version": "bazel" + } + }, + { + "id": "//integrations/postgres:main@bazel", + "info": { + "name": "//integrations/postgres:main", + "version": "bazel" + } + }, + { + "id": "//integrations/postgres:wal_java_proto@bazel", + "info": { + "name": "//integrations/postgres:wal_java_proto", + "version": "bazel" + } + }, + { + "id": "//integrations/postgres:wal_proto@bazel", + "info": { + "name": "//integrations/postgres:wal_proto", + "version": "bazel" + } + }, + { + "id": "//integrations/qualtrics:main@bazel", + "info": { + "name": "//integrations/qualtrics:main", + "version": "bazel" + } + }, + { + "id": "//integrations/quickbooks:main@bazel", + "info": { + "name": "//integrations/quickbooks:main", + "version": "bazel" + } + }, + { + "id": "//integrations/recharge:main@bazel", + "info": { + "name": "//integrations/recharge:main", + "version": "bazel" + } + }, + { + "id": "//integrations/recurly:main@bazel", + "info": { + "name": "//integrations/recurly:main", + "version": "bazel" + } + }, + { + "id": "//integrations/reddit:main@bazel", + "info": { + "name": "//integrations/reddit:main", + "version": "bazel" + } + }, + { + "id": "//integrations/sage_intacct:main@bazel", + "info": { + "name": "//integrations/sage_intacct:main", + "version": "bazel" + } + }, + { + "id": "com.alibaba:druid@1.1.16", + "info": { + "name": "com.alibaba:druid", + "version": "1.1.16" + } + }, + { + "id": "//integrations/sailthru:main@bazel", + "info": { + "name": "//integrations/sailthru:main", + "version": "bazel" + } + }, + { + "id": "//integrations/salesforce:main@bazel", + "info": { + "name": "//integrations/salesforce:main", + "version": "bazel" + } + }, + { + "id": "//integrations/salesforce_commerce_cloud:main@bazel", + "info": { + "name": "//integrations/salesforce_commerce_cloud:main", + "version": "bazel" + } + }, + { + "id": "//integrations/salesforce_marketing_cloud:main@bazel", + "info": { + "name": "//integrations/salesforce_marketing_cloud:main", + "version": "bazel" + } + }, + { + "id": "//integrations/sap_business_bydesign:main@bazel", + "info": { + "name": "//integrations/sap_business_bydesign:main", + "version": "bazel" + } + }, + { + "id": "//integrations/sap_concur:main@bazel", + "info": { + "name": "//integrations/sap_concur:main", + "version": "bazel" + } + }, + { + "id": "//integrations/sap_s4hana:main@bazel", + "info": { + "name": "//integrations/sap_s4hana:main", + "version": "bazel" + } + }, + { + "id": "//integrations/segment:main@bazel", + "info": { + "name": "//integrations/segment:main", + "version": "bazel" + } + }, + { + "id": "//maxmind:main@bazel", + "info": { + "name": "//maxmind:main", + "version": "bazel" + } + }, + { + "id": "com.maxmind.db:maxmind-db@1.2.2", + "info": { + "name": "com.maxmind.db:maxmind-db", + "version": "1.2.2" + } + }, + { + "id": "com.maxmind.geoip2:geoip2@2.9.0", + "info": { + "name": "com.maxmind.geoip2:geoip2", + "version": "2.9.0" + } + }, + { + "id": "//integrations/sendgrid:main@bazel", + "info": { + "name": "//integrations/sendgrid:main", + "version": "bazel" + } + }, + { + "id": "//integrations/service_now:main@bazel", + "info": { + "name": "//integrations/service_now:main", + "version": "bazel" + } + }, + { + "id": "//integrations/shopify:main@bazel", + "info": { + "name": "//integrations/shopify:main", + "version": "bazel" + } + }, + { + "id": "//integrations/snapchat_ads:main@bazel", + "info": { + "name": "//integrations/snapchat_ads:main", + "version": "bazel" + } + }, + { + "id": "//integrations/snowplow:main@bazel", + "info": { + "name": "//integrations/snowplow:main", + "version": "bazel" + } + }, + { + "id": "com.blueconic:browscap-java@1.2.13", + "info": { + "name": "com.blueconic:browscap-java", + "version": "1.2.13" + } + }, + { + "id": "com.github.java-json-tools:json-schema-core@1.2.14", + "info": { + "name": "com.github.java-json-tools:json-schema-core", + "version": "1.2.14" + } + }, + { + "id": "com.github.java-json-tools:jackson-coreutils@2.0", + "info": { + "name": "com.github.java-json-tools:jackson-coreutils", + "version": "2.0" + } + }, + { + "id": "com.github.java-json-tools:msg-simple@1.2", + "info": { + "name": "com.github.java-json-tools:msg-simple", + "version": "1.2" + } + }, + { + "id": "com.github.java-json-tools:btf@1.3", + "info": { + "name": "com.github.java-json-tools:btf", + "version": "1.3" + } + }, + { + "id": "com.github.java-json-tools:jackson-coreutils-equivalence@1.0", + "info": { + "name": "com.github.java-json-tools:jackson-coreutils-equivalence", + "version": "1.0" + } + }, + { + "id": "com.github.java-json-tools:uri-template@0.10", + "info": { + "name": "com.github.java-json-tools:uri-template", + "version": "0.10" + } + }, + { + "id": "org.mozilla:rhino@1.7.7.2", + "info": { + "name": "org.mozilla:rhino", + "version": "1.7.7.2" + } + }, + { + "id": "com.github.java-json-tools:json-schema-validator@2.2.14", + "info": { + "name": "com.github.java-json-tools:json-schema-validator", + "version": "2.2.14" + } + }, + { + "id": "com.sun.mail:mailapi@1.6.2", + "info": { + "name": "com.sun.mail:mailapi", + "version": "1.6.2" + } + }, + { + "id": "com.googlecode.libphonenumber:libphonenumber@8.11.1", + "info": { + "name": "com.googlecode.libphonenumber:libphonenumber", + "version": "8.11.1" + } + }, + { + "id": "com.github.ua-parser:uap-java@1.4.0", + "info": { + "name": "com.github.ua-parser:uap-java", + "version": "1.4.0" + } + }, + { + "id": "com.snowplowanalytics:referer-parser_2.11@0.3.0", + "info": { + "name": "com.snowplowanalytics:referer-parser_2.11", + "version": "0.3.0" + } + }, + { + "id": "//integrations/snowflake:main@bazel", + "info": { + "name": "//integrations/snowflake:main", + "version": "bazel" + } + }, + { + "id": "//integrations/splunk:main@bazel", + "info": { + "name": "//integrations/splunk:main", + "version": "bazel" + } + }, + { + "id": "//integrations/sql_server:main@bazel", + "info": { + "name": "//integrations/sql_server:main", + "version": "bazel" + } + }, + { + "id": "//integrations/azure/utils:main@bazel", + "info": { + "name": "//integrations/azure/utils:main", + "version": "bazel" + } + }, + { + "id": "//integrations/square:main@bazel", + "info": { + "name": "//integrations/square:main", + "version": "bazel" + } + }, + { + "id": "//integrations/stripe:main@bazel", + "info": { + "name": "//integrations/stripe:main", + "version": "bazel" + } + }, + { + "id": "//integrations/survey_monkey:main@bazel", + "info": { + "name": "//integrations/survey_monkey:main", + "version": "bazel" + } + }, + { + "id": "//integrations/spotify_ads:main@bazel", + "info": { + "name": "//integrations/spotify_ads:main", + "version": "bazel" + } + }, + { + "id": "//integrations/taboola:main@bazel", + "info": { + "name": "//integrations/taboola:main", + "version": "bazel" + } + }, + { + "id": "//integrations/the_trade_desk:main@bazel", + "info": { + "name": "//integrations/the_trade_desk:main", + "version": "bazel" + } + }, + { + "id": "//integrations/tiktok_ads:main@bazel", + "info": { + "name": "//integrations/tiktok_ads:main", + "version": "bazel" + } + }, + { + "id": "//integrations/twilio:main@bazel", + "info": { + "name": "//integrations/twilio:main", + "version": "bazel" + } + }, + { + "id": "//integrations/twitter:main@bazel", + "info": { + "name": "//integrations/twitter:main", + "version": "bazel" + } + }, + { + "id": "//integrations/typeform:main@bazel", + "info": { + "name": "//integrations/typeform:main", + "version": "bazel" + } + }, + { + "id": "//integrations/uservoice:main@bazel", + "info": { + "name": "//integrations/uservoice:main", + "version": "bazel" + } + }, + { + "id": "//integrations/webhooks:main@bazel", + "info": { + "name": "//integrations/webhooks:main", + "version": "bazel" + } + }, + { + "id": "//integrations/wordpress:main@bazel", + "info": { + "name": "//integrations/wordpress:main", + "version": "bazel" + } + }, + { + "id": "//integrations/workday:main@bazel", + "info": { + "name": "//integrations/workday:main", + "version": "bazel" + } + }, + { + "id": "//integrations/workday_hcm:main@bazel", + "info": { + "name": "//integrations/workday_hcm:main", + "version": "bazel" + } + }, + { + "id": "org.projectlombok:lombok@1.18.12", + "info": { + "name": "org.projectlombok:lombok", + "version": "1.18.12" + } + }, + { + "id": "//integrations/xero:main@bazel", + "info": { + "name": "//integrations/xero:main", + "version": "bazel" + } + }, + { + "id": "//integrations/yahoo_gemini:main@bazel", + "info": { + "name": "//integrations/yahoo_gemini:main", + "version": "bazel" + } + }, + { + "id": "//integrations/youtube_analytics:main@bazel", + "info": { + "name": "//integrations/youtube_analytics:main", + "version": "bazel" + } + }, + { + "id": "//integrations/zendesk:main@bazel", + "info": { + "name": "//integrations/zendesk:main", + "version": "bazel" + } + }, + { + "id": "//integrations/zendesk_chat:main@bazel", + "info": { + "name": "//integrations/zendesk_chat:main", + "version": "bazel" + } + }, + { + "id": "//integrations/zendesk_sell:main@bazel", + "info": { + "name": "//integrations/zendesk_sell:main", + "version": "bazel" + } + }, + { + "id": "//integrations/zendesk_sunshine:main@bazel", + "info": { + "name": "//integrations/zendesk_sunshine:main", + "version": "bazel" + } + }, + { + "id": "//integrations/zoho_crm:main@bazel", + "info": { + "name": "//integrations/zoho_crm:main", + "version": "bazel" + } + }, + { + "id": "//integrations/delighted:main@bazel", + "info": { + "name": "//integrations/delighted:main", + "version": "bazel" + } + }, + { + "id": "//sources/delighted:main@bazel", + "info": { + "name": "//sources/delighted:main", + "version": "bazel" + } + }, + { + "id": "//sources/mapper:main@bazel", + "info": { + "name": "//sources/mapper:main", + "version": "bazel" + } + }, + { + "id": "//saml:main@bazel", + "info": { + "name": "//saml:main", + "version": "bazel" + } + }, + { + "id": "io.dropwizard.metrics:metrics-core@3.1.2", + "info": { + "name": "io.dropwizard.metrics:metrics-core", + "version": "3.1.2" + } + }, + { + "id": "net.shibboleth.utilities:java-support@7.3.0", + "info": { + "name": "net.shibboleth.utilities:java-support", + "version": "7.3.0" + } + }, + { + "id": "org.cryptacular:cryptacular@1.1.1", + "info": { + "name": "org.cryptacular:cryptacular", + "version": "1.1.1" + } + }, + { + "id": "org.opensaml:opensaml-core@3.3.0", + "info": { + "name": "org.opensaml:opensaml-core", + "version": "3.3.0" + } + }, + { + "id": "org.opensaml:opensaml-messaging-api@3.3.0", + "info": { + "name": "org.opensaml:opensaml-messaging-api", + "version": "3.3.0" + } + }, + { + "id": "org.opensaml:opensaml-messaging-impl@3.3.0", + "info": { + "name": "org.opensaml:opensaml-messaging-impl", + "version": "3.3.0" + } + }, + { + "id": "org.opensaml:opensaml-profile-api@3.3.0", + "info": { + "name": "org.opensaml:opensaml-profile-api", + "version": "3.3.0" + } + }, + { + "id": "org.opensaml:opensaml-saml-api@3.3.0", + "info": { + "name": "org.opensaml:opensaml-saml-api", + "version": "3.3.0" + } + }, + { + "id": "org.opensaml:opensaml-xmlsec-api@3.3.0", + "info": { + "name": "org.opensaml:opensaml-xmlsec-api", + "version": "3.3.0" + } + }, + { + "id": "org.opensaml:opensaml-security-api@3.3.0", + "info": { + "name": "org.opensaml:opensaml-security-api", + "version": "3.3.0" + } + }, + { + "id": "org.apache.santuario:xmlsec@2.1.1", + "info": { + "name": "org.apache.santuario:xmlsec", + "version": "2.1.1" + } + }, + { + "id": "org.opensaml:opensaml-storage-api@3.3.0", + "info": { + "name": "org.opensaml:opensaml-storage-api", + "version": "3.3.0" + } + }, + { + "id": "org.opensaml:opensaml-soap-api@3.3.0", + "info": { + "name": "org.opensaml:opensaml-soap-api", + "version": "3.3.0" + } + }, + { + "id": "org.opensaml:opensaml-saml-impl@3.3.0", + "info": { + "name": "org.opensaml:opensaml-saml-impl", + "version": "3.3.0" + } + }, + { + "id": "org.opensaml:opensaml-soap-impl@3.3.0", + "info": { + "name": "org.opensaml:opensaml-soap-impl", + "version": "3.3.0" + } + }, + { + "id": "org.opensaml:opensaml-security-impl@3.3.0", + "info": { + "name": "org.opensaml:opensaml-security-impl", + "version": "3.3.0" + } + }, + { + "id": "org.opensaml:opensaml-xmlsec-impl@3.3.0", + "info": { + "name": "org.opensaml:opensaml-xmlsec-impl", + "version": "3.3.0" + } + }, + { + "id": "//services/customer_data_access:main@bazel", + "info": { + "name": "//services/customer_data_access:main", + "version": "bazel" + } + }, + { + "id": "//zendesk_utils:main@bazel", + "info": { + "name": "//zendesk_utils:main", + "version": "bazel" + } + }, + { + "id": "//services/dbt:main@bazel", + "info": { + "name": "//services/dbt:main", + "version": "bazel" + } + }, + { + "id": "//services/schema_modification:main@bazel", + "info": { + "name": "//services/schema_modification:main", + "version": "bazel" + } + }, + { + "id": "//sfdc_connect:main@bazel", + "info": { + "name": "//sfdc_connect:main", + "version": "bazel" + } + }, + { + "id": "//ufl_storage/client:main@bazel", + "info": { + "name": "//ufl_storage/client:main", + "version": "bazel" + } + }, + { + "id": "//ufl_storage/storage:main@bazel", + "info": { + "name": "//ufl_storage/storage:main", + "version": "bazel" + } + }, + { + "id": "//utils/integrated_scheduler:main@bazel", + "info": { + "name": "//utils/integrated_scheduler:main", + "version": "bazel" + } + }, + { + "id": "com.google.cloud:google-cloud-firestore@1.10.0", + "info": { + "name": "com.google.cloud:google-cloud-firestore", + "version": "1.10.0" + } + }, + { + "id": "com.google.api.grpc:proto-google-cloud-firestore-v1beta1@0.63.0", + "info": { + "name": "com.google.api.grpc:proto-google-cloud-firestore-v1beta1", + "version": "0.63.0" + } + }, + { + "id": "io.opencensus:opencensus-contrib-grpc-util@0.21.0", + "info": { + "name": "io.opencensus:opencensus-contrib-grpc-util", + "version": "0.21.0" + } + }, + { + "id": "com.google.api.grpc:proto-google-cloud-firestore-admin-v1@1.10.0", + "info": { + "name": "com.google.api.grpc:proto-google-cloud-firestore-admin-v1", + "version": "1.10.0" + } + }, + { + "id": "com.google.api.grpc:proto-google-cloud-firestore-v1@1.10.0", + "info": { + "name": "com.google.api.grpc:proto-google-cloud-firestore-v1", + "version": "1.10.0" + } + }, + { + "id": "com.lambdaworks:scrypt@1.4.0", + "info": { + "name": "com.lambdaworks:scrypt", + "version": "1.4.0" + } + }, + { + "id": "org.eclipse.jetty.websocket:javax-websocket-server-impl@9.4.40.v20210413", + "info": { + "name": "org.eclipse.jetty.websocket:javax-websocket-server-impl", + "version": "9.4.40.v20210413" + } + }, + { + "id": "org.eclipse.jetty:jetty-annotations@9.4.40.v20210413", + "info": { + "name": "org.eclipse.jetty:jetty-annotations", + "version": "9.4.40.v20210413" + } + }, + { + "id": "org.ow2.asm:asm-commons@8.0.1", + "info": { + "name": "org.ow2.asm:asm-commons", + "version": "8.0.1" + } + }, + { + "id": "org.eclipse.jetty:jetty-webapp@9.4.40.v20210413", + "info": { + "name": "org.eclipse.jetty:jetty-webapp", + "version": "9.4.40.v20210413" + } + }, + { + "id": "org.eclipse.jetty:jetty-xml@9.4.40.v20210413", + "info": { + "name": "org.eclipse.jetty:jetty-xml", + "version": "9.4.40.v20210413" + } + }, + { + "id": "org.eclipse.jetty:jetty-plus@9.4.40.v20210413", + "info": { + "name": "org.eclipse.jetty:jetty-plus", + "version": "9.4.40.v20210413" + } + }, + { + "id": "org.eclipse.jetty:jetty-jndi@9.4.40.v20210413", + "info": { + "name": "org.eclipse.jetty:jetty-jndi", + "version": "9.4.40.v20210413" + } + }, + { + "id": "org.eclipse.jetty.websocket:javax-websocket-client-impl@9.4.40.v20210413", + "info": { + "name": "org.eclipse.jetty.websocket:javax-websocket-client-impl", + "version": "9.4.40.v20210413" + } + }, + { + "id": "javax.websocket:javax.websocket-client-api@1.0", + "info": { + "name": "javax.websocket:javax.websocket-client-api", + "version": "1.0" + } + }, + { + "id": "org.eclipse.jetty.websocket:websocket-client@9.4.40.v20210413", + "info": { + "name": "org.eclipse.jetty.websocket:websocket-client", + "version": "9.4.40.v20210413" + } + }, + { + "id": "org.eclipse.jetty:jetty-client@9.4.40.v20210413", + "info": { + "name": "org.eclipse.jetty:jetty-client", + "version": "9.4.40.v20210413" + } + }, + { + "id": "org.eclipse.jetty.websocket:websocket-common@9.4.40.v20210413", + "info": { + "name": "org.eclipse.jetty.websocket:websocket-common", + "version": "9.4.40.v20210413" + } + }, + { + "id": "org.eclipse.jetty.websocket:websocket-api@9.4.40.v20210413", + "info": { + "name": "org.eclipse.jetty.websocket:websocket-api", + "version": "9.4.40.v20210413" + } + }, + { + "id": "org.eclipse.jetty.websocket:websocket-server@9.4.40.v20210413", + "info": { + "name": "org.eclipse.jetty.websocket:websocket-server", + "version": "9.4.40.v20210413" + } + }, + { + "id": "org.eclipse.jetty.websocket:websocket-servlet@9.4.40.v20210413", + "info": { + "name": "org.eclipse.jetty.websocket:websocket-servlet", + "version": "9.4.40.v20210413" + } + }, + { + "id": "org.glassfish.jersey.media:jersey-media-sse@2.31", + "info": { + "name": "org.glassfish.jersey.media:jersey-media-sse", + "version": "2.31" + } + }, + { + "id": "meta-common-packages@meta", + "info": { + "name": "meta-common-packages", + "version": "meta" + } + } + ], + "graph": { + "rootNodeId": "//app:main@bazel", + "nodes": [ + { + "nodeId": "//app:main@bazel", + "pkgId": "//app:main@bazel", + "deps": [ + { + "nodeId": "//app/config:main@bazel" + }, + { + "nodeId": "//core_interfaces/cursor:main@bazel" + }, + { + "nodeId": "//database:hikari@bazel" + }, + { + "nodeId": "//database:ssh_verify@bazel" + }, + { + "nodeId": "//dbt/api/client:main@bazel" + }, + { + "nodeId": "//dbt/manifest:main@bazel" + }, + { + "nodeId": "//dbt/services:main@bazel" + }, + { + "nodeId": "//donkey:main@bazel" + }, + { + "nodeId": "//emails:core@bazel" + }, + { + "nodeId": "//emails:main@bazel" + }, + { + "nodeId": "//events:main@bazel" + }, + { + "nodeId": "//feature_flag:flags@bazel" + }, + { + "nodeId": "//feature_flag/sandbox:main@bazel" + }, + { + "nodeId": "//feature_flag/service:main@bazel" + }, + { + "nodeId": "//heartbeat:main@bazel" + }, + { + "nodeId": "//integrated_scheduler/dag:main@bazel" + }, + { + "nodeId": "//integrated_scheduler/pipeline:main@bazel" + }, + { + "nodeId": "//integrated_scheduler/scheduler:messages@bazel" + }, + { + "nodeId": "//integrated_scheduler/scheduler:pubsub@bazel" + }, + { + "nodeId": "//jwt:main@bazel" + }, + { + "nodeId": "//kms:main@bazel" + }, + { + "nodeId": "//log_appender/gcs_appender:main@bazel" + }, + { + "nodeId": "//log_tailer:main@bazel" + }, + { + "nodeId": "//logging:fluent_bit@bazel" + }, + { + "nodeId": "//partners:main@bazel" + }, + { + "nodeId": "//saml:main@bazel" + }, + { + "nodeId": "//schema_migration:main@bazel" + }, + { + "nodeId": "//schema_service:main@bazel" + }, + { + "nodeId": "//secrets/db:main@bazel" + }, + { + "nodeId": "//service_registry:main@bazel" + }, + { + "nodeId": "//services:ab_tests@bazel" + }, + { + "nodeId": "//services:integration_control@bazel" + }, + { + "nodeId": "//services/cmk_encryption:main@bazel" + }, + { + "nodeId": "//services/customer_data_access:main@bazel" + }, + { + "nodeId": "//services/dbt:main@bazel" + }, + { + "nodeId": "//services/logging:main@bazel" + }, + { + "nodeId": "//services/schema_modification:main@bazel" + }, + { + "nodeId": "//services/setup_test_runner:main@bazel" + }, + { + "nodeId": "//setup_test_runner:client@bazel" + }, + { + "nodeId": "//sfdc_connect:main@bazel" + }, + { + "nodeId": "//transformation_runner:client@bazel" + }, + { + "nodeId": "//ufl_storage/client:main@bazel" + }, + { + "nodeId": "//ufl_storage/storage:main@bazel" + }, + { + "nodeId": "//utils/bootstrap:main@bazel" + }, + { + "nodeId": "//utils/integrated_scheduler:main@bazel" + }, + { + "nodeId": "//warehouses/big_query:main@bazel" + }, + { + "nodeId": "//warehouses/postgres:main@bazel" + }, + { + "nodeId": "//words:main@bazel" + }, + { + "nodeId": "//zendesk_utils:main@bazel" + }, + { + "nodeId": "com.cronutils:cron-utils@9.0.2" + }, + { + "nodeId": "com.google.cloud:google-cloud-firestore@1.10.0" + }, + { + "nodeId": "com.lambdaworks:scrypt@1.4.0" + }, + { + "nodeId": "com.stripe:stripe-java@19.20.0" + }, + { + "nodeId": "org.eclipse.jetty:jetty-servlets@9.4.40.v20210413" + }, + { + "nodeId": "org.eclipse.jetty.websocket:javax-websocket-server-impl@9.4.40.v20210413" + }, + { + "nodeId": "org.glassfish.jersey.containers:jersey-container-servlet@2.31" + }, + { + "nodeId": "org.glassfish.jersey.media:jersey-media-jaxb@2.31" + }, + { + "nodeId": "org.glassfish.jersey.media:jersey-media-multipart@2.31" + }, + { + "nodeId": "org.glassfish.jersey.media:jersey-media-sse@2.31" + }, + { + "nodeId": "org.jsoup:jsoup@1.8.2" + }, + { + "nodeId": "org.opensaml:opensaml-messaging-impl@3.3.0" + }, + { + "nodeId": "org.opensaml:opensaml-saml-impl@3.3.0" + }, + { + "nodeId": "meta-common-packages@meta" + } + ] + }, + { + "nodeId": "//app/config:main@bazel", + "pkgId": "//app/config:main@bazel", + "deps": [ + { + "nodeId": "//database:hikari@bazel" + } + ] + }, + { + "nodeId": "//core_interfaces:main@bazel", + "pkgId": "//core_interfaces:main@bazel", + "deps": [ + { + "nodeId": "//crypto:pojos@bazel" + }, + { + "nodeId": "//database:schema_migration_model@bazel" + }, + { + "nodeId": "//events:event_hub@bazel" + }, + { + "nodeId": "//heartbeat:main@bazel" + }, + { + "nodeId": "//schema_migration:schema_migration_info@bazel" + }, + { + "nodeId": "//sources/types:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-joda@2.9.8" + } + ] + }, + { + "nodeId": "//crypto:pojos@bazel", + "pkgId": "//crypto:pojos@bazel", + "deps": [] + }, + { + "nodeId": "//database:enums@bazel", + "pkgId": "//database:enums@bazel", + "deps": [] + }, + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2", + "pkgId": "com.google.code.findbugs:jsr305@3.0.2", + "deps": [] + }, + { + "nodeId": "//database:schema_migration_model@bazel", + "pkgId": "//database:schema_migration_model@bazel", + "deps": [ + { + "nodeId": "//schema_migration:enum_types@bazel" + } + ] + }, + { + "nodeId": "//schema_migration:enum_types@bazel", + "pkgId": "//schema_migration:enum_types@bazel", + "deps": [] + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8", + "pkgId": "com.fasterxml.jackson.core:jackson-databind@2.9.8", + "deps": [] + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8", + "pkgId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8", + "deps": [] + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8", + "pkgId": "com.fasterxml.jackson.core:jackson-core@2.9.8", + "deps": [] + }, + { + "nodeId": "//events:event_hub@bazel", + "pkgId": "//events:event_hub@bazel", + "deps": [] + }, + { + "nodeId": "//logger:main@bazel", + "pkgId": "//logger:main@bazel", + "deps": [ + { + "nodeId": "//feature_flag:details@bazel" + } + ] + }, + { + "nodeId": "//crypto:main@bazel", + "pkgId": "//crypto:main@bazel", + "deps": [ + { + "nodeId": "//jwt:main@bazel" + }, + { + "nodeId": "com.amazonaws:aws-encryption-sdk-java@1.6.1" + }, + { + "nodeId": "com.google.api.grpc:proto-google-cloud-kms-v1@0.61.0" + }, + { + "nodeId": "com.google.cloud:google-cloud-kms@1.13.0" + } + ] + }, + { + "nodeId": "//json:main@bazel", + "pkgId": "//json:main@bazel", + "deps": [] + }, + { + "nodeId": "@com_fasterxml_jackson_dataformat_jackson_dataformat_csv//:main@bazel", + "pkgId": "@com_fasterxml_jackson_dataformat_jackson_dataformat_csv//:main@bazel", + "deps": [] + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8", + "pkgId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8", + "deps": [] + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8", + "pkgId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8", + "deps": [] + }, + { + "nodeId": "com.google.guava:guava@25.1-jre", + "pkgId": "com.google.guava:guava@25.1-jre", + "deps": [] + }, + { + "nodeId": "com.google.errorprone:error_prone_annotations@2.13.1", + "pkgId": "com.google.errorprone:error_prone_annotations@2.13.1", + "deps": [] + }, + { + "nodeId": "com.google.j2objc:j2objc-annotations@1.3", + "pkgId": "com.google.j2objc:j2objc-annotations@1.3", + "deps": [] + }, + { + "nodeId": "org.checkerframework:checker-qual@3.22.0", + "pkgId": "org.checkerframework:checker-qual@3.22.0", + "deps": [] + }, + { + "nodeId": "org.codehaus.mojo:animal-sniffer-annotations@1.21", + "pkgId": "org.codehaus.mojo:animal-sniffer-annotations@1.21", + "deps": [] + }, + { + "nodeId": "//jwt:main@bazel", + "pkgId": "//jwt:main@bazel", + "deps": [] + }, + { + "nodeId": "commons-codec:commons-codec@1.10", + "pkgId": "commons-codec:commons-codec@1.10", + "deps": [] + }, + { + "nodeId": "//logger:acmecorp_logger@bazel", + "pkgId": "//logger:acmecorp_logger@bazel", + "deps": [] + }, + { + "nodeId": "//utils/time:main@bazel", + "pkgId": "//utils/time:main@bazel", + "deps": [] + }, + { + "nodeId": "//utils/exceptions:main@bazel", + "pkgId": "//utils/exceptions:main@bazel", + "deps": [] + }, + { + "nodeId": "com.amazonaws:aws-encryption-sdk-java@1.6.1", + "pkgId": "com.amazonaws:aws-encryption-sdk-java@1.6.1", + "deps": [ + { + "nodeId": "org.bouncycastle:bcprov-ext-jdk15on@1.70" + } + ] + }, + { + "nodeId": "org.apache.commons:commons-lang3@3.12.0", + "pkgId": "org.apache.commons:commons-lang3@3.12.0", + "deps": [] + }, + { + "nodeId": "org.bouncycastle:bcprov-ext-jdk15on@1.70", + "pkgId": "org.bouncycastle:bcprov-ext-jdk15on@1.70", + "deps": [] + }, + { + "nodeId": "com.google.api:gax@2.3.0", + "pkgId": "com.google.api:gax@2.3.0", + "deps": [] + }, + { + "nodeId": "com.google.auth:google-auth-library-oauth2-http@0.22.0", + "pkgId": "com.google.auth:google-auth-library-oauth2-http@0.22.0", + "deps": [] + }, + { + "nodeId": "com.google.http-client:google-http-client@1.39.2", + "pkgId": "com.google.http-client:google-http-client@1.39.2", + "deps": [] + }, + { + "nodeId": "org.apache.httpcomponents:httpcore@4.4.13", + "pkgId": "org.apache.httpcomponents:httpcore@4.4.13", + "deps": [] + }, + { + "nodeId": "org.apache.httpcomponents:httpclient@4.5.13", + "pkgId": "org.apache.httpcomponents:httpclient@4.5.13", + "deps": [] + }, + { + "nodeId": "commons-logging:commons-logging@1.2", + "pkgId": "commons-logging:commons-logging@1.2", + "deps": [] + }, + { + "nodeId": "io.opencensus:opencensus-contrib-http-util@0.11.1", + "pkgId": "io.opencensus:opencensus-contrib-http-util@0.11.1", + "deps": [] + }, + { + "nodeId": "io.opencensus:opencensus-api@0.12.3", + "pkgId": "io.opencensus:opencensus-api@0.12.3", + "deps": [] + }, + { + "nodeId": "io.grpc:grpc-context@1.32.2", + "pkgId": "io.grpc:grpc-context@1.32.2", + "deps": [] + }, + { + "nodeId": "com.google.auto.value:auto-value-annotations@1.9", + "pkgId": "com.google.auto.value:auto-value-annotations@1.9", + "deps": [] + }, + { + "nodeId": "com.google.http-client:google-http-client-jackson2@1.35.0", + "pkgId": "com.google.http-client:google-http-client-jackson2@1.35.0", + "deps": [] + }, + { + "nodeId": "com.google.auth:google-auth-library-credentials@0.9.1", + "pkgId": "com.google.auth:google-auth-library-credentials@0.9.1", + "deps": [] + }, + { + "nodeId": "com.google.api:api-common@1.9.0", + "pkgId": "com.google.api:api-common@1.9.0", + "deps": [] + }, + { + "nodeId": "javax.annotation:javax.annotation-api@1.3.2", + "pkgId": "javax.annotation:javax.annotation-api@1.3.2", + "deps": [] + }, + { + "nodeId": "org.threeten:threetenbp@1.3.3", + "pkgId": "org.threeten:threetenbp@1.3.3", + "deps": [] + }, + { + "nodeId": "com.google.api:gax-grpc@2.3.0", + "pkgId": "com.google.api:gax-grpc@2.3.0", + "deps": [] + }, + { + "nodeId": "io.grpc:grpc-stub@1.32.2", + "pkgId": "io.grpc:grpc-stub@1.32.2", + "deps": [] + }, + { + "nodeId": "io.grpc:grpc-api@1.32.2", + "pkgId": "io.grpc:grpc-api@1.32.2", + "deps": [] + }, + { + "nodeId": "io.grpc:grpc-auth@1.32.2", + "pkgId": "io.grpc:grpc-auth@1.32.2", + "deps": [] + }, + { + "nodeId": "com.google.api.grpc:proto-google-common-protos@1.15.0", + "pkgId": "com.google.api.grpc:proto-google-common-protos@1.15.0", + "deps": [] + }, + { + "nodeId": "com.google.protobuf:protobuf-java@3.18.2", + "pkgId": "com.google.protobuf:protobuf-java@3.18.2", + "deps": [] + }, + { + "nodeId": "io.grpc:grpc-alts@1.46.0", + "pkgId": "io.grpc:grpc-alts@1.46.0", + "deps": [] + }, + { + "nodeId": "org.conscrypt:conscrypt-openjdk-uber@2.5.1", + "pkgId": "org.conscrypt:conscrypt-openjdk-uber@2.5.1", + "deps": [] + }, + { + "nodeId": "io.grpc:grpc-netty-shaded@1.32.2", + "pkgId": "io.grpc:grpc-netty-shaded@1.32.2", + "deps": [] + }, + { + "nodeId": "io.grpc:grpc-core@1.32.2", + "pkgId": "io.grpc:grpc-core@1.32.2", + "deps": [] + }, + { + "nodeId": "com.google.android:annotations@4.1.1.4", + "pkgId": "com.google.android:annotations@4.1.1.4", + "deps": [] + }, + { + "nodeId": "com.google.code.gson:gson@2.9.0", + "pkgId": "com.google.code.gson:gson@2.9.0", + "deps": [] + }, + { + "nodeId": "io.perfmark:perfmark-api@0.25.0", + "pkgId": "io.perfmark:perfmark-api@0.25.0", + "deps": [] + }, + { + "nodeId": "io.grpc:grpc-grpclb@1.46.0", + "pkgId": "io.grpc:grpc-grpclb@1.46.0", + "deps": [] + }, + { + "nodeId": "com.google.protobuf:protobuf-java-util@3.18.2", + "pkgId": "com.google.protobuf:protobuf-java-util@3.18.2", + "deps": [] + }, + { + "nodeId": "io.grpc:grpc-protobuf@1.32.2", + "pkgId": "io.grpc:grpc-protobuf@1.32.2", + "deps": [] + }, + { + "nodeId": "io.grpc:grpc-protobuf-lite@1.32.2", + "pkgId": "io.grpc:grpc-protobuf-lite@1.32.2", + "deps": [ + { + "nodeId": "com.google.protobuf:protobuf-javalite@3.12.0" + } + ] + }, + { + "nodeId": "com.google.protobuf:protobuf-javalite@3.12.0", + "pkgId": "com.google.protobuf:protobuf-javalite@3.12.0", + "deps": [] + }, + { + "nodeId": "com.google.api.grpc:proto-google-cloud-kms-v1@0.61.0", + "pkgId": "com.google.api.grpc:proto-google-cloud-kms-v1@0.61.0", + "deps": [] + }, + { + "nodeId": "com.google.api.grpc:proto-google-iam-v1@0.13.0", + "pkgId": "com.google.api.grpc:proto-google-iam-v1@0.13.0", + "deps": [] + }, + { + "nodeId": "com.google.cloud:google-cloud-kms@1.13.0", + "pkgId": "com.google.cloud:google-cloud-kms@1.13.0", + "deps": [ + { + "nodeId": "com.google.api.grpc:proto-google-cloud-kms-v1@0.61.0" + } + ] + }, + { + "nodeId": "com.google.cloud:google-cloud-core-grpc@1.19.0", + "pkgId": "com.google.cloud:google-cloud-core-grpc@1.19.0", + "deps": [] + }, + { + "nodeId": "com.google.cloud:google-cloud-core@1.48.0", + "pkgId": "com.google.cloud:google-cloud-core@1.48.0", + "deps": [] + }, + { + "nodeId": "joda-time:joda-time@2.9.2", + "pkgId": "joda-time:joda-time@2.9.2", + "deps": [] + }, + { + "nodeId": "com.sun.xml.bind:jaxb-core@2.2.11", + "pkgId": "com.sun.xml.bind:jaxb-core@2.2.11", + "deps": [] + }, + { + "nodeId": "com.sun.xml.bind:jaxb-impl@2.2.11", + "pkgId": "com.sun.xml.bind:jaxb-impl@2.2.11", + "deps": [] + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6", + "pkgId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6", + "deps": [] + }, + { + "nodeId": "javax.xml.bind:jaxb-api@2.2.2", + "pkgId": "javax.xml.bind:jaxb-api@2.2.2", + "deps": [] + }, + { + "nodeId": "javax.activation:activation@1.1", + "pkgId": "javax.activation:activation@1.1", + "deps": [] + }, + { + "nodeId": "javax.xml.stream:stax-api@1.0-2", + "pkgId": "javax.xml.stream:stax-api@1.0-2", + "deps": [] + }, + { + "nodeId": "org.glassfish.hk2.external:jakarta.inject@2.6.1", + "pkgId": "org.glassfish.hk2.external:jakarta.inject@2.6.1", + "deps": [] + }, + { + "nodeId": "//feature_flag:details@bazel", + "pkgId": "//feature_flag:details@bazel", + "deps": [] + }, + { + "nodeId": "//globals:main@bazel", + "pkgId": "//globals:main@bazel", + "deps": [] + }, + { + "nodeId": "//lambda:main@bazel", + "pkgId": "//lambda:main@bazel", + "deps": [] + }, + { + "nodeId": "//warehouses/common:warehouse_type@bazel", + "pkgId": "//warehouses/common:warehouse_type@bazel", + "deps": [] + }, + { + "nodeId": "//secred/client:main@bazel", + "pkgId": "//secred/client:main@bazel", + "deps": [ + { + "nodeId": "//crypto:pojos@bazel" + }, + { + "nodeId": "org.glassfish.jersey.connectors:jersey-apache-connector@2.31" + } + ] + }, + { + "nodeId": "//secred/common:main@bazel", + "pkgId": "//secred/common:main@bazel", + "deps": [ + { + "nodeId": "//crypto:pojos@bazel" + } + ] + }, + { + "nodeId": "//secrets/common:main@bazel", + "pkgId": "//secrets/common:main@bazel", + "deps": [] + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-core@1.12.84", + "pkgId": "com.amazonaws:aws-java-sdk-core@1.12.84", + "deps": [ + { + "nodeId": "software.amazon.ion:ion-java@1.0.2" + } + ] + }, + { + "nodeId": "com.fasterxml.jackson.dataformat:jackson-dataformat-cbor@2.9.8", + "pkgId": "com.fasterxml.jackson.dataformat:jackson-dataformat-cbor@2.9.8", + "deps": [] + }, + { + "nodeId": "software.amazon.ion:ion-java@1.0.2", + "pkgId": "software.amazon.ion:ion-java@1.0.2", + "deps": [] + }, + { + "nodeId": "//util:main@bazel", + "pkgId": "//util:main@bazel", + "deps": [] + }, + { + "nodeId": "com.fasterxml.jackson.dataformat:jackson-dataformat-yaml@2.9.8", + "pkgId": "com.fasterxml.jackson.dataformat:jackson-dataformat-yaml@2.9.8", + "deps": [] + }, + { + "nodeId": "org.yaml:snakeyaml@1.23", + "pkgId": "org.yaml:snakeyaml@1.23", + "deps": [] + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8", + "pkgId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8", + "deps": [] + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-base@2.9.8", + "pkgId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-base@2.9.8", + "deps": [] + }, + { + "nodeId": "com.fasterxml.jackson.module:jackson-module-jaxb-annotations@2.9.8", + "pkgId": "com.fasterxml.jackson.module:jackson-module-jaxb-annotations@2.9.8", + "deps": [] + }, + { + "nodeId": "com.intellij:annotations@12.0", + "pkgId": "com.intellij:annotations@12.0", + "deps": [] + }, + { + "nodeId": "io.netty:netty-buffer@4.1.50.Final", + "pkgId": "io.netty:netty-buffer@4.1.50.Final", + "deps": [ + { + "nodeId": "io.netty:netty-common@4.1.45.Final" + } + ] + }, + { + "nodeId": "io.netty:netty-common@4.1.45.Final", + "pkgId": "io.netty:netty-common@4.1.45.Final", + "deps": [] + }, + { + "nodeId": "javax.xml.soap:javax.xml.soap-api@1.4.0", + "pkgId": "javax.xml.soap:javax.xml.soap-api@1.4.0", + "deps": [] + }, + { + "nodeId": "org.bouncycastle:bcpkix-jdk15on@1.70", + "pkgId": "org.bouncycastle:bcpkix-jdk15on@1.70", + "deps": [ + { + "nodeId": "org.bouncycastle:bcutil-jdk15on:jar@1.70" + } + ] + }, + { + "nodeId": "org.bouncycastle:bcprov-jdk15on@1.70", + "pkgId": "org.bouncycastle:bcprov-jdk15on@1.70", + "deps": [] + }, + { + "nodeId": "org.bouncycastle:bcutil-jdk15on:jar@1.70", + "pkgId": "org.bouncycastle:bcutil-jdk15on:jar@1.70", + "deps": [] + }, + { + "nodeId": "org.bouncycastle:bcprov-jdk15to18@1.70", + "pkgId": "org.bouncycastle:bcprov-jdk15to18@1.70", + "deps": [] + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31", + "pkgId": "org.glassfish.jersey.core:jersey-client@2.31", + "deps": [] + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-common@2.31", + "pkgId": "org.glassfish.jersey.core:jersey-common@2.31", + "deps": [ + { + "nodeId": "org.glassfish.hk2:osgi-resource-locator@1.0.3" + }, + { + "nodeId": "com.sun.activation:jakarta.activation@2.0.1" + } + ] + }, + { + "nodeId": "org.glassfish.hk2:osgi-resource-locator@1.0.3", + "pkgId": "org.glassfish.hk2:osgi-resource-locator@1.0.3", + "deps": [] + }, + { + "nodeId": "jakarta.annotation:jakarta.annotation-api@1.3.5", + "pkgId": "jakarta.annotation:jakarta.annotation-api@1.3.5", + "deps": [] + }, + { + "nodeId": "com.sun.activation:jakarta.activation@2.0.1", + "pkgId": "com.sun.activation:jakarta.activation@2.0.1", + "deps": [] + }, + { + "nodeId": "org.jooq:jool-java-8@0.9.14", + "pkgId": "org.jooq:jool-java-8@0.9.14", + "deps": [] + }, + { + "nodeId": "commons-configuration:commons-configuration@1.10", + "pkgId": "commons-configuration:commons-configuration@1.10", + "deps": [] + }, + { + "nodeId": "commons-lang:commons-lang@2.6", + "pkgId": "commons-lang:commons-lang@2.6", + "deps": [] + }, + { + "nodeId": "org.glassfish.jersey.connectors:jersey-apache-connector@2.31", + "pkgId": "org.glassfish.jersey.connectors:jersey-apache-connector@2.31", + "deps": [] + }, + { + "nodeId": "//secred/util:main@bazel", + "pkgId": "//secred/util:main@bazel", + "deps": [ + { + "nodeId": "//crypto:pojos@bazel" + }, + { + "nodeId": "//database:credential_models@bazel" + } + ] + }, + { + "nodeId": "//database:credential_models@bazel", + "pkgId": "//database:credential_models@bazel", + "deps": [] + }, + { + "nodeId": "//secrets/services:main@bazel", + "pkgId": "//secrets/services:main@bazel", + "deps": [ + { + "nodeId": "//crypto:pojos@bazel" + } + ] + }, + { + "nodeId": "org.json:json@20171018", + "pkgId": "org.json:json@20171018", + "deps": [] + }, + { + "nodeId": "//feature_flag:main@bazel", + "pkgId": "//feature_flag:main@bazel", + "deps": [ + { + "nodeId": "//feature_flag:details@bazel" + }, + { + "nodeId": "//database:flags@bazel" + }, + { + "nodeId": "//newrelic_utils:donkey_logs_url_builder@bazel" + } + ] + }, + { + "nodeId": "//database:flags@bazel", + "pkgId": "//database:flags@bazel", + "deps": [ + { + "nodeId": "//api/db:api_production_datasource@bazel" + }, + { + "nodeId": "//database:credential_models@bazel" + }, + { + "nodeId": "//database:data_sources@bazel" + }, + { + "nodeId": "//dockerized/postgres:main@bazel" + } + ] + }, + { + "nodeId": "//database:postgresql_jdbc_fix@bazel", + "pkgId": "//database:postgresql_jdbc_fix@bazel", + "deps": [] + }, + { + "nodeId": "org.postgresql:postgresql@42.3.3", + "pkgId": "org.postgresql:postgresql@42.3.3", + "deps": [] + }, + { + "nodeId": "//api/db:api_production_datasource@bazel", + "pkgId": "//api/db:api_production_datasource@bazel", + "deps": [] + }, + { + "nodeId": "com.zaxxer:HikariCP@3.4.1", + "pkgId": "com.zaxxer:HikariCP@3.4.1", + "deps": [] + }, + { + "nodeId": "org.slf4j:slf4j-api@1.7.13", + "pkgId": "org.slf4j:slf4j-api@1.7.13", + "deps": [] + }, + { + "nodeId": "commons-io:commons-io@2.4", + "pkgId": "commons-io:commons-io@2.4", + "deps": [] + }, + { + "nodeId": "//database:data_sources@bazel", + "pkgId": "//database:data_sources@bazel", + "deps": [] + }, + { + "nodeId": "com.mchange:c3p0@0.9.5.1", + "pkgId": "com.mchange:c3p0@0.9.5.1", + "deps": [ + { + "nodeId": "com.mchange:mchange-commons-java@0.2.10" + } + ] + }, + { + "nodeId": "com.mchange:mchange-commons-java@0.2.10", + "pkgId": "com.mchange:mchange-commons-java@0.2.10", + "deps": [] + }, + { + "nodeId": "//database/exceptions:main@bazel", + "pkgId": "//database/exceptions:main@bazel", + "deps": [] + }, + { + "nodeId": "//utils/nullability:main@bazel", + "pkgId": "//utils/nullability:main@bazel", + "deps": [] + }, + { + "nodeId": "//dockerized/postgres:main@bazel", + "pkgId": "//dockerized/postgres:main@bazel", + "deps": [ + { + "nodeId": "//database:credential_models@bazel" + }, + { + "nodeId": "//dockerized/common:main@bazel" + } + ] + }, + { + "nodeId": "//dockerized/common:main@bazel", + "pkgId": "//dockerized/common:main@bazel", + "deps": [ + { + "nodeId": "//metal:main@bazel" + } + ] + }, + { + "nodeId": "//metal:main@bazel", + "pkgId": "//metal:main@bazel", + "deps": [ + { + "nodeId": "com.amazonaws:aws-java-sdk-resourcegroupstaggingapi@1.12.84" + } + ] + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-logs@1.12.84", + "pkgId": "com.amazonaws:aws-java-sdk-logs@1.12.84", + "deps": [] + }, + { + "nodeId": "com.amazonaws:jmespath-java@1.11.91", + "pkgId": "com.amazonaws:jmespath-java@1.11.91", + "deps": [] + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-resourcegroupstaggingapi@1.12.84", + "pkgId": "com.amazonaws:aws-java-sdk-resourcegroupstaggingapi@1.12.84", + "deps": [] + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-s3@1.12.84", + "pkgId": "com.amazonaws:aws-java-sdk-s3@1.12.84", + "deps": [] + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-kms@1.12.84", + "pkgId": "com.amazonaws:aws-java-sdk-kms@1.12.84", + "deps": [] + }, + { + "nodeId": "//newrelic_utils:donkey_logs_url_builder@bazel", + "pkgId": "//newrelic_utils:donkey_logs_url_builder@bazel", + "deps": [] + }, + { + "nodeId": "//slack:main@bazel", + "pkgId": "//slack:main@bazel", + "deps": [] + }, + { + "nodeId": "//http:main@bazel", + "pkgId": "//http:main@bazel", + "deps": [] + }, + { + "nodeId": "javax.servlet:javax.servlet-api@3.1.0", + "pkgId": "javax.servlet:javax.servlet-api@3.1.0", + "deps": [] + }, + { + "nodeId": "org.eclipse.jetty:jetty-server@9.4.40.v20210413", + "pkgId": "org.eclipse.jetty:jetty-server@9.4.40.v20210413", + "deps": [] + }, + { + "nodeId": "org.eclipse.jetty:jetty-http@9.4.40.v20210413", + "pkgId": "org.eclipse.jetty:jetty-http@9.4.40.v20210413", + "deps": [] + }, + { + "nodeId": "org.eclipse.jetty:jetty-io@9.4.40.v20210413", + "pkgId": "org.eclipse.jetty:jetty-io@9.4.40.v20210413", + "deps": [] + }, + { + "nodeId": "org.eclipse.jetty:jetty-util@9.4.40.v20210413", + "pkgId": "org.eclipse.jetty:jetty-util@9.4.40.v20210413", + "deps": [] + }, + { + "nodeId": "org.glassfish.hk2:hk2-api@2.6.1", + "pkgId": "org.glassfish.hk2:hk2-api@2.6.1", + "deps": [ + { + "nodeId": "org.glassfish.hk2:hk2-utils@2.6.1" + }, + { + "nodeId": "org.glassfish.hk2.external:aopalliance-repackaged@2.6.1" + } + ] + }, + { + "nodeId": "org.glassfish.hk2:hk2-utils@2.6.1", + "pkgId": "org.glassfish.hk2:hk2-utils@2.6.1", + "deps": [] + }, + { + "nodeId": "org.glassfish.hk2.external:aopalliance-repackaged@2.6.1", + "pkgId": "org.glassfish.hk2.external:aopalliance-repackaged@2.6.1", + "deps": [] + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-server@2.31", + "pkgId": "org.glassfish.jersey.core:jersey-server@2.31", + "deps": [ + { + "nodeId": "org.glassfish.jersey.media:jersey-media-jaxb@2.31" + }, + { + "nodeId": "jakarta.validation:jakarta.validation-api@2.0.2" + }, + { + "nodeId": "jakarta.xml.bind:jakarta.xml.bind-api@3.0.1" + } + ] + }, + { + "nodeId": "org.glassfish.jersey.media:jersey-media-jaxb@2.31", + "pkgId": "org.glassfish.jersey.media:jersey-media-jaxb@2.31", + "deps": [ + { + "nodeId": "org.glassfish.hk2:osgi-resource-locator@1.0.3" + } + ] + }, + { + "nodeId": "jakarta.validation:jakarta.validation-api@2.0.2", + "pkgId": "jakarta.validation:jakarta.validation-api@2.0.2", + "deps": [] + }, + { + "nodeId": "jakarta.xml.bind:jakarta.xml.bind-api@3.0.1", + "pkgId": "jakarta.xml.bind:jakarta.xml.bind-api@3.0.1", + "deps": [ + { + "nodeId": "com.sun.activation:jakarta.activation@2.0.1" + } + ] + }, + { + "nodeId": "org.glassfish.jersey.inject:jersey-hk2@2.31", + "pkgId": "org.glassfish.jersey.inject:jersey-hk2@2.31", + "deps": [ + { + "nodeId": "org.glassfish.hk2:hk2-locator@2.6.1" + } + ] + }, + { + "nodeId": "org.glassfish.hk2:hk2-locator@2.6.1", + "pkgId": "org.glassfish.hk2:hk2-locator@2.6.1", + "deps": [ + { + "nodeId": "org.glassfish.hk2.external:aopalliance-repackaged@2.6.1" + }, + { + "nodeId": "org.glassfish.hk2:hk2-utils@2.6.1" + } + ] + }, + { + "nodeId": "org.javassist:javassist@3.21.0-GA", + "pkgId": "org.javassist:javassist@3.21.0-GA", + "deps": [] + }, + { + "nodeId": "//forms:main@bazel", + "pkgId": "//forms:main@bazel", + "deps": [ + { + "nodeId": "//app:docs_deps@bazel" + } + ] + }, + { + "nodeId": "//app:docs_deps@bazel", + "pkgId": "//app:docs_deps@bazel", + "deps": [] + }, + { + "nodeId": "//heartbeat:main@bazel", + "pkgId": "//heartbeat:main@bazel", + "deps": [] + }, + { + "nodeId": "//markdown:main@bazel", + "pkgId": "//markdown:main@bazel", + "deps": [ + { + "nodeId": "org.pegdown:pegdown@1.5.0" + } + ] + }, + { + "nodeId": "org.apache.velocity:velocity@1.7", + "pkgId": "org.apache.velocity:velocity@1.7", + "deps": [] + }, + { + "nodeId": "commons-collections:commons-collections@3.2.2", + "pkgId": "commons-collections:commons-collections@3.2.2", + "deps": [] + }, + { + "nodeId": "org.pegdown:pegdown@1.5.0", + "pkgId": "org.pegdown:pegdown@1.5.0", + "deps": [ + { + "nodeId": "org.parboiled:parboiled-java@1.2.0" + } + ] + }, + { + "nodeId": "org.parboiled:parboiled-java@1.2.0", + "pkgId": "org.parboiled:parboiled-java@1.2.0", + "deps": [ + { + "nodeId": "org.ow2.asm:asm-util@8.0.1" + }, + { + "nodeId": "org.parboiled:parboiled-core@1.2.0" + } + ] + }, + { + "nodeId": "org.ow2.asm:asm-tree@8.0.1", + "pkgId": "org.ow2.asm:asm-tree@8.0.1", + "deps": [] + }, + { + "nodeId": "org.ow2.asm:asm@8.0.1", + "pkgId": "org.ow2.asm:asm@8.0.1", + "deps": [] + }, + { + "nodeId": "org.ow2.asm:asm-analysis@8.0.1", + "pkgId": "org.ow2.asm:asm-analysis@8.0.1", + "deps": [] + }, + { + "nodeId": "org.ow2.asm:asm-util@8.0.1", + "pkgId": "org.ow2.asm:asm-util@8.0.1", + "deps": [] + }, + { + "nodeId": "org.parboiled:parboiled-core@1.2.0", + "pkgId": "org.parboiled:parboiled-core@1.2.0", + "deps": [] + }, + { + "nodeId": "//schema_migration:schema_migration_info@bazel", + "pkgId": "//schema_migration:schema_migration_info@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:names_dep_to_avoid_cyclic_core_dep@bazel" + } + ] + }, + { + "nodeId": "//core_interfaces:names_dep_to_avoid_cyclic_core_dep@bazel", + "pkgId": "//core_interfaces:names_dep_to_avoid_cyclic_core_dep@bazel", + "deps": [] + }, + { + "nodeId": "com.ibm.icu:icu4j@62.1", + "pkgId": "com.ibm.icu:icu4j@62.1", + "deps": [] + }, + { + "nodeId": "//sources/types:main@bazel", + "pkgId": "//sources/types:main@bazel", + "deps": [] + }, + { + "nodeId": "//utils/validations:main@bazel", + "pkgId": "//utils/validations:main@bazel", + "deps": [] + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-joda@2.9.8", + "pkgId": "com.fasterxml.jackson.datatype:jackson-datatype-joda@2.9.8", + "deps": [] + }, + { + "nodeId": "org.glassfish.jersey.security:oauth1-client@2.31", + "pkgId": "org.glassfish.jersey.security:oauth1-client@2.31", + "deps": [] + }, + { + "nodeId": "org.glassfish.jersey.security:oauth1-signature@2.31", + "pkgId": "org.glassfish.jersey.security:oauth1-signature@2.31", + "deps": [] + }, + { + "nodeId": "//database:hikari@bazel", + "pkgId": "//database:hikari@bazel", + "deps": [] + }, + { + "nodeId": "//database:main@bazel", + "pkgId": "//database:main@bazel", + "deps": [ + { + "nodeId": "//api/db:api_production_datasource@bazel" + }, + { + "nodeId": "//database:credential_models@bazel" + }, + { + "nodeId": "//dbt/manifest:main@bazel" + }, + { + "nodeId": "//dockerized/postgres:main@bazel" + }, + { + "nodeId": "//jwt:main@bazel" + }, + { + "nodeId": "//partners:main@bazel" + }, + { + "nodeId": "//schema_migration:enum_types@bazel" + }, + { + "nodeId": "//webhook:main@bazel" + }, + { + "nodeId": "//words:main@bazel" + } + ] + }, + { + "nodeId": "//dbt/manifest:main@bazel", + "pkgId": "//dbt/manifest:main@bazel", + "deps": [] + }, + { + "nodeId": "//dynamo:main@bazel", + "pkgId": "//dynamo:main@bazel", + "deps": [ + { + "nodeId": "//jackson_module_json_schema:main@bazel" + } + ] + }, + { + "nodeId": "//aws:main@bazel", + "pkgId": "//aws:main@bazel", + "deps": [ + { + "nodeId": "//cloud_storage:main@bazel" + }, + { + "nodeId": "//emails:core@bazel" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-cloudtrail@1.12.84" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-config@1.12.84" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-elasticloadbalancingv2@1.12.84" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-glue@1.12.84" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-iam@1.12.84" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-route53@1.12.84" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-ses@1.12.84" + } + ] + }, + { + "nodeId": "//cloud_storage:main@bazel", + "pkgId": "//cloud_storage:main@bazel", + "deps": [] + }, + { + "nodeId": "//emails:core@bazel", + "pkgId": "//emails:core@bazel", + "deps": [] + }, + { + "nodeId": "//secrets/system:main@bazel", + "pkgId": "//secrets/system:main@bazel", + "deps": [] + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-cloudtrail@1.12.84", + "pkgId": "com.amazonaws:aws-java-sdk-cloudtrail@1.12.84", + "deps": [] + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-config@1.12.84", + "pkgId": "com.amazonaws:aws-java-sdk-config@1.12.84", + "deps": [] + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-dynamodb@1.12.84", + "pkgId": "com.amazonaws:aws-java-sdk-dynamodb@1.12.84", + "deps": [] + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-ec2@1.12.84", + "pkgId": "com.amazonaws:aws-java-sdk-ec2@1.12.84", + "deps": [] + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-elasticloadbalancingv2@1.12.84", + "pkgId": "com.amazonaws:aws-java-sdk-elasticloadbalancingv2@1.12.84", + "deps": [] + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-glue@1.12.84", + "pkgId": "com.amazonaws:aws-java-sdk-glue@1.12.84", + "deps": [] + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-iam@1.12.84", + "pkgId": "com.amazonaws:aws-java-sdk-iam@1.12.84", + "deps": [] + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-route53@1.12.84", + "pkgId": "com.amazonaws:aws-java-sdk-route53@1.12.84", + "deps": [] + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-ses@1.12.84", + "pkgId": "com.amazonaws:aws-java-sdk-ses@1.12.84", + "deps": [] + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-sts@1.12.84", + "pkgId": "com.amazonaws:aws-java-sdk-sts@1.12.84", + "deps": [] + }, + { + "nodeId": "//jackson_module_json_schema:main@bazel", + "pkgId": "//jackson_module_json_schema:main@bazel", + "deps": [] + }, + { + "nodeId": "javax.validation:validation-api@1.1.0.Final", + "pkgId": "javax.validation:validation-api@1.1.0.Final", + "deps": [] + }, + { + "nodeId": "//partners:main@bazel", + "pkgId": "//partners:main@bazel", + "deps": [] + }, + { + "nodeId": "//webhook:main@bazel", + "pkgId": "//webhook:main@bazel", + "deps": [] + }, + { + "nodeId": "//words:main@bazel", + "pkgId": "//words:main@bazel", + "deps": [] + }, + { + "nodeId": "com.fasterxml.jackson.dataformat:jackson-dataformat-smile@2.9.8", + "pkgId": "com.fasterxml.jackson.dataformat:jackson-dataformat-smile@2.9.8", + "deps": [] + }, + { + "nodeId": "com.google.api-client:google-api-client@1.31.1", + "pkgId": "com.google.api-client:google-api-client@1.31.1", + "deps": [ + { + "nodeId": "com.google.http-client:google-http-client-apache-v2@1.39.2" + } + ] + }, + { + "nodeId": "com.google.http-client:google-http-client-apache-v2@1.39.2", + "pkgId": "com.google.http-client:google-http-client-apache-v2@1.39.2", + "deps": [] + }, + { + "nodeId": "com.google.oauth-client:google-oauth-client@1.23.0", + "pkgId": "com.google.oauth-client:google-oauth-client@1.23.0", + "deps": [] + }, + { + "nodeId": "io.micrometer:micrometer-core@1.5.3", + "pkgId": "io.micrometer:micrometer-core@1.5.3", + "deps": [ + { + "nodeId": "org.latencyutils:LatencyUtils@2.0.3" + } + ] + }, + { + "nodeId": "org.hdrhistogram:HdrHistogram@2.1.12", + "pkgId": "org.hdrhistogram:HdrHistogram@2.1.12", + "deps": [] + }, + { + "nodeId": "org.latencyutils:LatencyUtils@2.0.3", + "pkgId": "org.latencyutils:LatencyUtils@2.0.3", + "deps": [] + }, + { + "nodeId": "//common:main@bazel", + "pkgId": "//common:main@bazel", + "deps": [ + { + "nodeId": "//utils/threading:main@bazel" + } + ] + }, + { + "nodeId": "//utils/threading:main@bazel", + "pkgId": "//utils/threading:main@bazel", + "deps": [] + }, + { + "nodeId": "//core_interfaces/cursor:main@bazel", + "pkgId": "//core_interfaces/cursor:main@bazel", + "deps": [ + { + "nodeId": "//database/resilience:main@bazel" + } + ] + }, + { + "nodeId": "//database/resilience:main@bazel", + "pkgId": "//database/resilience:main@bazel", + "deps": [] + }, + { + "nodeId": "//database:ssh_verify@bazel", + "pkgId": "//database:ssh_verify@bazel", + "deps": [] + }, + { + "nodeId": "//database:tls_verify@bazel", + "pkgId": "//database:tls_verify@bazel", + "deps": [] + }, + { + "nodeId": "//dbt/api/client:main@bazel", + "pkgId": "//dbt/api/client:main@bazel", + "deps": [ + { + "nodeId": "//http:basic_auth_credentials@bazel" + }, + { + "nodeId": "//http:curl_request@bazel" + }, + { + "nodeId": "//utils/uri:main@bazel" + } + ] + }, + { + "nodeId": "//http:basic_auth_credentials@bazel", + "pkgId": "//http:basic_auth_credentials@bazel", + "deps": [] + }, + { + "nodeId": "//http:curl_request@bazel", + "pkgId": "//http:curl_request@bazel", + "deps": [] + }, + { + "nodeId": "//utils/uri:main@bazel", + "pkgId": "//utils/uri:main@bazel", + "deps": [] + }, + { + "nodeId": "//dbt/services:main@bazel", + "pkgId": "//dbt/services:main@bazel", + "deps": [ + { + "nodeId": "//database:hikari@bazel" + }, + { + "nodeId": "//dbt/git:main@bazel" + }, + { + "nodeId": "//emails:core@bazel" + }, + { + "nodeId": "//emails:main@bazel" + }, + { + "nodeId": "//feature_flag/service:main@bazel" + }, + { + "nodeId": "//utils/bootstrap:main@bazel" + }, + { + "nodeId": "com.cronutils:cron-utils@9.0.2" + }, + { + "nodeId": "org.hibernate:hibernate-validator@5.4.3.Final" + } + ] + }, + { + "nodeId": "//dbt/git:main@bazel", + "pkgId": "//dbt/git:main@bazel", + "deps": [ + { + "nodeId": "org.eclipse.jgit:org.eclipse.jgit@6.2.0.202206071550-r" + }, + { + "nodeId": "org.eclipse.jgit:org.eclipse.jgit.ssh.apache@6.2.0.202206071550-r" + } + ] + }, + { + "nodeId": "org.eclipse.jgit:org.eclipse.jgit@6.2.0.202206071550-r", + "pkgId": "org.eclipse.jgit:org.eclipse.jgit@6.2.0.202206071550-r", + "deps": [ + { + "nodeId": "com.googlecode.javaewah:JavaEWAH@1.1.13" + } + ] + }, + { + "nodeId": "com.googlecode.javaewah:JavaEWAH@1.1.13", + "pkgId": "com.googlecode.javaewah:JavaEWAH@1.1.13", + "deps": [] + }, + { + "nodeId": "org.eclipse.jgit:org.eclipse.jgit.ssh.apache@6.2.0.202206071550-r", + "pkgId": "org.eclipse.jgit:org.eclipse.jgit.ssh.apache@6.2.0.202206071550-r", + "deps": [ + { + "nodeId": "net.i2p.crypto:eddsa@0.3.0" + }, + { + "nodeId": "org.eclipse.jgit:org.eclipse.jgit@6.2.0.202206071550-r" + }, + { + "nodeId": "org.apache.sshd:sshd-sftp@2.8.0" + }, + { + "nodeId": "org.apache.sshd:sshd-osgi@2.8.0" + } + ] + }, + { + "nodeId": "net.i2p.crypto:eddsa@0.3.0", + "pkgId": "net.i2p.crypto:eddsa@0.3.0", + "deps": [] + }, + { + "nodeId": "org.apache.sshd:sshd-sftp@2.8.0", + "pkgId": "org.apache.sshd:sshd-sftp@2.8.0", + "deps": [ + { + "nodeId": "org.apache.sshd:sshd-core@2.8.0" + } + ] + }, + { + "nodeId": "org.apache.sshd:sshd-core@2.8.0", + "pkgId": "org.apache.sshd:sshd-core@2.8.0", + "deps": [ + { + "nodeId": "org.apache.sshd:sshd-common@2.8.0" + } + ] + }, + { + "nodeId": "org.apache.sshd:sshd-common@2.8.0", + "pkgId": "org.apache.sshd:sshd-common@2.8.0", + "deps": [] + }, + { + "nodeId": "org.slf4j:jcl-over-slf4j@1.7.32", + "pkgId": "org.slf4j:jcl-over-slf4j@1.7.32", + "deps": [] + }, + { + "nodeId": "org.apache.sshd:sshd-osgi@2.8.0", + "pkgId": "org.apache.sshd:sshd-osgi@2.8.0", + "deps": [] + }, + { + "nodeId": "//emails:main@bazel", + "pkgId": "//emails:main@bazel", + "deps": [ + { + "nodeId": "//emails:core@bazel" + }, + { + "nodeId": "//feature_flag:flags@bazel" + }, + { + "nodeId": "//feature_flag/service:main@bazel" + }, + { + "nodeId": "com.hubspot.jinjava:jinjava@2.5.6" + } + ] + }, + { + "nodeId": "//feature_flag:flags@bazel", + "pkgId": "//feature_flag:flags@bazel", + "deps": [ + { + "nodeId": "//feature_flag:details@bazel" + }, + { + "nodeId": "//database:flags@bazel" + }, + { + "nodeId": "//newrelic_utils:donkey_logs_url_builder@bazel" + } + ] + }, + { + "nodeId": "//feature_flag/service:main@bazel", + "pkgId": "//feature_flag/service:main@bazel", + "deps": [] + }, + { + "nodeId": "com.hubspot.jinjava:jinjava@2.5.6", + "pkgId": "com.hubspot.jinjava:jinjava@2.5.6", + "deps": [ + { + "nodeId": "org.jsoup:jsoup@1.8.2" + }, + { + "nodeId": "ch.obermuhlner:big-math@2.0.0" + }, + { + "nodeId": "com.google.code.findbugs:annotations@3.0.1" + }, + { + "nodeId": "com.google.re2j:re2j@1.5" + }, + { + "nodeId": "com.googlecode.java-ipv6:java-ipv6@0.17" + } + ] + }, + { + "nodeId": "org.jsoup:jsoup@1.8.2", + "pkgId": "org.jsoup:jsoup@1.8.2", + "deps": [] + }, + { + "nodeId": "ch.obermuhlner:big-math@2.0.0", + "pkgId": "ch.obermuhlner:big-math@2.0.0", + "deps": [] + }, + { + "nodeId": "com.google.code.findbugs:annotations@3.0.1", + "pkgId": "com.google.code.findbugs:annotations@3.0.1", + "deps": [] + }, + { + "nodeId": "com.google.re2j:re2j@1.5", + "pkgId": "com.google.re2j:re2j@1.5", + "deps": [] + }, + { + "nodeId": "com.googlecode.java-ipv6:java-ipv6@0.17", + "pkgId": "com.googlecode.java-ipv6:java-ipv6@0.17", + "deps": [] + }, + { + "nodeId": "commons-net:commons-net@3.3", + "pkgId": "commons-net:commons-net@3.3", + "deps": [] + }, + { + "nodeId": "//services:main@bazel", + "pkgId": "//services:main@bazel", + "deps": [ + { + "nodeId": "//core_implementation:main@bazel" + }, + { + "nodeId": "//core_interfaces/cursor:main@bazel" + }, + { + "nodeId": "//database:ssh_verify@bazel" + }, + { + "nodeId": "//emails:core@bazel" + }, + { + "nodeId": "//emails:main@bazel" + }, + { + "nodeId": "//feature_flag:flags@bazel" + }, + { + "nodeId": "//feature_flag/service:main@bazel" + }, + { + "nodeId": "//heartbeat:main@bazel" + }, + { + "nodeId": "//partners:main@bazel" + }, + { + "nodeId": "//refine:main@bazel" + }, + { + "nodeId": "//schema_service:main@bazel" + }, + { + "nodeId": "//services/cmk_encryption:main@bazel" + }, + { + "nodeId": "//services/logging:main@bazel" + }, + { + "nodeId": "//warehouses/big_query:main@bazel" + }, + { + "nodeId": "//words:main@bazel" + }, + { + "nodeId": "com.stripe:stripe-java@19.20.0" + }, + { + "nodeId": "io.swagger.core.v3:swagger-annotations@2.1.11" + }, + { + "nodeId": "net.agkn:hll@1.6.0" + } + ] + }, + { + "nodeId": "//core_implementation:main@bazel", + "pkgId": "//core_implementation:main@bazel", + "deps": [ + { + "nodeId": "//core_implementation:operation_java_proto@bazel" + }, + { + "nodeId": "//cloudwatch_metrics:main@bazel" + }, + { + "nodeId": "//core_implementation/column_blocking:main@bazel" + }, + { + "nodeId": "//core_implementation/proto:main@bazel" + }, + { + "nodeId": "//core_implementation/proto:row_java_proto@bazel" + }, + { + "nodeId": "//core_implementation/transform:main@bazel" + }, + { + "nodeId": "//core_interfaces:warning@bazel" + }, + { + "nodeId": "//core_interfaces/cursor:main@bazel" + }, + { + "nodeId": "//heartbeat:main@bazel" + }, + { + "nodeId": "//pipeline_queue:main@bazel" + }, + { + "nodeId": "//schema_migration:main@bazel" + }, + { + "nodeId": "//schema_migration:service@bazel" + }, + { + "nodeId": "//utils/network_monitor:main@bazel" + }, + { + "nodeId": "//utils/os:main@bazel" + }, + { + "nodeId": "//utils/threading:main@bazel" + }, + { + "nodeId": "//warehouses/common:observability@bazel" + }, + { + "nodeId": "com.github.alexandrnikitin:bloom-filter_2.11@0.11.0" + }, + { + "nodeId": "net.agkn:hll@1.6.0" + }, + { + "nodeId": "org.openjdk.jmh:jmh-core@1.19" + } + ] + }, + { + "nodeId": "//core_implementation:operation_java_proto@bazel", + "pkgId": "//core_implementation:operation_java_proto@bazel", + "deps": [ + { + "nodeId": "//core_implementation:operation_proto@bazel" + } + ] + }, + { + "nodeId": "//core_implementation:operation_proto@bazel", + "pkgId": "//core_implementation:operation_proto@bazel", + "deps": [ + { + "nodeId": "//core_implementation/proto:row_proto@bazel" + } + ] + }, + { + "nodeId": "//core_implementation/proto:row_proto@bazel", + "pkgId": "//core_implementation/proto:row_proto@bazel", + "deps": [] + }, + { + "nodeId": "//cloudwatch_metrics:main@bazel", + "pkgId": "//cloudwatch_metrics:main@bazel", + "deps": [] + }, + { + "nodeId": "//google_cloud:main@bazel", + "pkgId": "//google_cloud:main@bazel", + "deps": [ + { + "nodeId": "//cloud_storage:main@bazel" + }, + { + "nodeId": "@com_google_cloud_google_cloud_bigquerydatatransfer//:main@bazel" + } + ] + }, + { + "nodeId": "@com_google_cloud_google_cloud_bigquerydatatransfer//:main@bazel", + "pkgId": "@com_google_cloud_google_cloud_bigquerydatatransfer//:main@bazel", + "deps": [] + }, + { + "nodeId": "com.google.api.grpc:proto-google-cloud-monitoring-v3@1.75.0", + "pkgId": "com.google.api.grpc:proto-google-cloud-monitoring-v3@1.75.0", + "deps": [] + }, + { + "nodeId": "com.google.api.grpc:proto-google-cloud-pubsub-v1@1.101.1", + "pkgId": "com.google.api.grpc:proto-google-cloud-pubsub-v1@1.101.1", + "deps": [] + }, + { + "nodeId": "com.google.guava:listenablefuture@9999.0-empty-to-avoid-conflict-with-guava", + "pkgId": "com.google.guava:listenablefuture@9999.0-empty-to-avoid-conflict-with-guava", + "deps": [] + }, + { + "nodeId": "com.google.guava:failureaccess@1.0.1", + "pkgId": "com.google.guava:failureaccess@1.0.1", + "deps": [] + }, + { + "nodeId": "com.google.apis:google-api-services-bigquery@v2-rev459-1.25.0", + "pkgId": "com.google.apis:google-api-services-bigquery@v2-rev459-1.25.0", + "deps": [] + }, + { + "nodeId": "com.google.apis:google-api-services-cloudresourcemanager@v1-rev495-1.23.0", + "pkgId": "com.google.apis:google-api-services-cloudresourcemanager@v1-rev495-1.23.0", + "deps": [] + }, + { + "nodeId": "com.google.apis:google-api-services-iam@v1-rev193-1.22.0", + "pkgId": "com.google.apis:google-api-services-iam@v1-rev193-1.22.0", + "deps": [] + }, + { + "nodeId": "com.google.apis:google-api-services-storage@v1-rev20200326-1.30.9", + "pkgId": "com.google.apis:google-api-services-storage@v1-rev20200326-1.30.9", + "deps": [] + }, + { + "nodeId": "com.google.cloud:google-cloud-datastore@1.70.0", + "pkgId": "com.google.cloud:google-cloud-datastore@1.70.0", + "deps": [ + { + "nodeId": "com.google.cloud.datastore:datastore-v1-proto-client@1.6.0" + }, + { + "nodeId": "com.google.api.grpc:proto-google-cloud-datastore-v1@0.54.0" + } + ] + }, + { + "nodeId": "com.google.cloud.datastore:datastore-v1-proto-client@1.6.0", + "pkgId": "com.google.cloud.datastore:datastore-v1-proto-client@1.6.0", + "deps": [ + { + "nodeId": "com.google.api.grpc:proto-google-cloud-datastore-v1@0.54.0" + }, + { + "nodeId": "com.google.http-client:google-http-client-protobuf@1.29.1" + }, + { + "nodeId": "com.google.http-client:google-http-client-jackson@1.23.0" + } + ] + }, + { + "nodeId": "com.google.api.grpc:proto-google-cloud-datastore-v1@0.54.0", + "pkgId": "com.google.api.grpc:proto-google-cloud-datastore-v1@0.54.0", + "deps": [] + }, + { + "nodeId": "com.google.http-client:google-http-client-protobuf@1.29.1", + "pkgId": "com.google.http-client:google-http-client-protobuf@1.29.1", + "deps": [] + }, + { + "nodeId": "com.google.http-client:google-http-client-jackson@1.23.0", + "pkgId": "com.google.http-client:google-http-client-jackson@1.23.0", + "deps": [] + }, + { + "nodeId": "org.codehaus.jackson:jackson-core-asl@1.9.13", + "pkgId": "org.codehaus.jackson:jackson-core-asl@1.9.13", + "deps": [] + }, + { + "nodeId": "com.google.cloud:google-cloud-core-http@1.48.0", + "pkgId": "com.google.cloud:google-cloud-core-http@1.48.0", + "deps": [ + { + "nodeId": "com.google.http-client:google-http-client-appengine@1.23.0" + }, + { + "nodeId": "com.google.api:gax-httpjson@0.42.0" + } + ] + }, + { + "nodeId": "com.google.http-client:google-http-client-appengine@1.23.0", + "pkgId": "com.google.http-client:google-http-client-appengine@1.23.0", + "deps": [] + }, + { + "nodeId": "com.google.api:gax-httpjson@0.42.0", + "pkgId": "com.google.api:gax-httpjson@0.42.0", + "deps": [] + }, + { + "nodeId": "com.google.cloud:google-cloud-monitoring@1.93.0", + "pkgId": "com.google.cloud:google-cloud-monitoring@1.93.0", + "deps": [] + }, + { + "nodeId": "com.google.cloud:google-cloud-pubsub@1.119.1", + "pkgId": "com.google.cloud:google-cloud-pubsub@1.119.1", + "deps": [ + { + "nodeId": "io.opencensus:opencensus-proto@0.2.0" + }, + { + "nodeId": "io.grpc:grpc-xds@1.46.0" + }, + { + "nodeId": "io.grpc:grpc-services@1.46.0" + }, + { + "nodeId": "io.grpc:grpc-googleapis@1.46.0" + }, + { + "nodeId": "com.google.http-client:google-http-client-gson@1.41.8" + }, + { + "nodeId": "com.google.re2j:re2j@1.5" + } + ] + }, + { + "nodeId": "io.opencensus:opencensus-proto@0.2.0", + "pkgId": "io.opencensus:opencensus-proto@0.2.0", + "deps": [] + }, + { + "nodeId": "io.grpc:grpc-xds@1.46.0", + "pkgId": "io.grpc:grpc-xds@1.46.0", + "deps": [] + }, + { + "nodeId": "io.grpc:grpc-services@1.46.0", + "pkgId": "io.grpc:grpc-services@1.46.0", + "deps": [] + }, + { + "nodeId": "io.grpc:grpc-googleapis@1.46.0", + "pkgId": "io.grpc:grpc-googleapis@1.46.0", + "deps": [] + }, + { + "nodeId": "com.google.http-client:google-http-client-gson@1.41.8", + "pkgId": "com.google.http-client:google-http-client-gson@1.41.8", + "deps": [] + }, + { + "nodeId": "com.google.cloud:google-cloud-storage@1.108.0", + "pkgId": "com.google.cloud:google-cloud-storage@1.108.0", + "deps": [] + }, + { + "nodeId": "io.jsonwebtoken:jjwt@0.9.0", + "pkgId": "io.jsonwebtoken:jjwt@0.9.0", + "deps": [] + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-cloudwatch@1.12.84", + "pkgId": "com.amazonaws:aws-java-sdk-cloudwatch@1.12.84", + "deps": [] + }, + { + "nodeId": "//core_implementation/column_blocking:main@bazel", + "pkgId": "//core_implementation/column_blocking:main@bazel", + "deps": [] + }, + { + "nodeId": "//core_implementation/proto:main@bazel", + "pkgId": "//core_implementation/proto:main@bazel", + "deps": [ + { + "nodeId": "//core_implementation/proto:row_java_proto@bazel" + }, + { + "nodeId": "//core_implementation/column_blocking:main@bazel" + }, + { + "nodeId": "//utils/jdk:main@bazel" + } + ] + }, + { + "nodeId": "//core_implementation/proto:row_java_proto@bazel", + "pkgId": "//core_implementation/proto:row_java_proto@bazel", + "deps": [ + { + "nodeId": "//core_implementation/proto:row_proto@bazel" + } + ] + }, + { + "nodeId": "//utils/jdk:main@bazel", + "pkgId": "//utils/jdk:main@bazel", + "deps": [] + }, + { + "nodeId": "//utils/serializers:main@bazel", + "pkgId": "//utils/serializers:main@bazel", + "deps": [ + { + "nodeId": "org.apache.commons:commons-pool2@2.8.0" + } + ] + }, + { + "nodeId": "org.apache.commons:commons-pool2@2.8.0", + "pkgId": "org.apache.commons:commons-pool2@2.8.0", + "deps": [] + }, + { + "nodeId": "//core_implementation/transform:main@bazel", + "pkgId": "//core_implementation/transform:main@bazel", + "deps": [ + { + "nodeId": "//core_implementation/proto:main@bazel" + }, + { + "nodeId": "//core_implementation/proto:row_java_proto@bazel" + }, + { + "nodeId": "//utils/serialization:main@bazel" + } + ] + }, + { + "nodeId": "//utils/serialization:main@bazel", + "pkgId": "//utils/serialization:main@bazel", + "deps": [] + }, + { + "nodeId": "//core_interfaces:warning@bazel", + "pkgId": "//core_interfaces:warning@bazel", + "deps": [] + }, + { + "nodeId": "//logging:main@bazel", + "pkgId": "//logging:main@bazel", + "deps": [ + { + "nodeId": "//log_appender/cloudwatch:main@bazel" + }, + { + "nodeId": "//log_appender/gcs_appender:main@bazel" + }, + { + "nodeId": "//log_appender/stackdriver:main@bazel" + } + ] + }, + { + "nodeId": "//log_appender/cloudwatch:main@bazel", + "pkgId": "//log_appender/cloudwatch:main@bazel", + "deps": [] + }, + { + "nodeId": "//log_appender/gcs_appender:main@bazel", + "pkgId": "//log_appender/gcs_appender:main@bazel", + "deps": [ + { + "nodeId": "//utils/hook:main@bazel" + } + ] + }, + { + "nodeId": "//utils/hook:main@bazel", + "pkgId": "//utils/hook:main@bazel", + "deps": [] + }, + { + "nodeId": "//log_appender/stackdriver:main@bazel", + "pkgId": "//log_appender/stackdriver:main@bazel", + "deps": [ + { + "nodeId": "com.google.cloud:google-cloud-logging@1.19.0" + } + ] + }, + { + "nodeId": "com.google.cloud:google-cloud-logging@1.19.0", + "pkgId": "com.google.cloud:google-cloud-logging@1.19.0", + "deps": [ + { + "nodeId": "com.google.api.grpc:proto-google-cloud-logging-v2@0.2.1" + } + ] + }, + { + "nodeId": "com.google.api.grpc:proto-google-cloud-logging-v2@0.2.1", + "pkgId": "com.google.api.grpc:proto-google-cloud-logging-v2@0.2.1", + "deps": [] + }, + { + "nodeId": "//micrometer:main@bazel", + "pkgId": "//micrometer:main@bazel", + "deps": [ + { + "nodeId": "com.newrelic.telemetry:micrometer-registry-new-relic@0.6.0" + }, + { + "nodeId": "com.newrelic.telemetry:telemetry@0.7.0" + }, + { + "nodeId": "com.newrelic.telemetry:telemetry-core@0.7.0" + }, + { + "nodeId": "io.micrometer:micrometer-registry-stackdriver@1.5.3" + } + ] + }, + { + "nodeId": "com.newrelic.telemetry:micrometer-registry-new-relic@0.6.0", + "pkgId": "com.newrelic.telemetry:micrometer-registry-new-relic@0.6.0", + "deps": [ + { + "nodeId": "com.newrelic.telemetry:telemetry@0.7.0" + } + ] + }, + { + "nodeId": "com.newrelic.telemetry:telemetry@0.7.0", + "pkgId": "com.newrelic.telemetry:telemetry@0.7.0", + "deps": [ + { + "nodeId": "com.newrelic.telemetry:telemetry-core@0.7.0" + } + ] + }, + { + "nodeId": "com.newrelic.telemetry:telemetry-core@0.7.0", + "pkgId": "com.newrelic.telemetry:telemetry-core@0.7.0", + "deps": [] + }, + { + "nodeId": "io.micrometer:micrometer-registry-stackdriver@1.5.3", + "pkgId": "io.micrometer:micrometer-registry-stackdriver@1.5.3", + "deps": [] + }, + { + "nodeId": "//pipeline_queue:main@bazel", + "pkgId": "//pipeline_queue:main@bazel", + "deps": [ + { + "nodeId": "//database/resilience:main@bazel" + }, + { + "nodeId": "//shaded_dependencies/azure:azure_identity_shaded@bazel" + }, + { + "nodeId": "//shaded_dependencies/azure:azure_storage_blob_shaded@bazel" + }, + { + "nodeId": "//cloud_storage:main@bazel" + }, + { + "nodeId": "//utils/network_monitor:main@bazel" + }, + { + "nodeId": "//utils/os:main@bazel" + }, + { + "nodeId": "//utils/serialization:main@bazel" + }, + { + "nodeId": "//utils/threading:main@bazel" + } + ] + }, + { + "nodeId": "//shaded_dependencies/azure:azure_identity_shaded@bazel", + "pkgId": "//shaded_dependencies/azure:azure_identity_shaded@bazel", + "deps": [] + }, + { + "nodeId": "//shaded_dependencies/azure:azure_storage_blob_shaded@bazel", + "pkgId": "//shaded_dependencies/azure:azure_storage_blob_shaded@bazel", + "deps": [] + }, + { + "nodeId": "//utils/network_monitor:main@bazel", + "pkgId": "//utils/network_monitor:main@bazel", + "deps": [ + { + "nodeId": "//utils/os:main@bazel" + } + ] + }, + { + "nodeId": "//utils/os:main@bazel", + "pkgId": "//utils/os:main@bazel", + "deps": [] + }, + { + "nodeId": "//schema_migration:main@bazel", + "pkgId": "//schema_migration:main@bazel", + "deps": [] + }, + { + "nodeId": "//schema_migration:service@bazel", + "pkgId": "//schema_migration:service@bazel", + "deps": [ + { + "nodeId": "//schema_migration:main@bazel" + }, + { + "nodeId": "//database:schema_migration_model@bazel" + } + ] + }, + { + "nodeId": "//utils/sync_statistics:main@bazel", + "pkgId": "//utils/sync_statistics:main@bazel", + "deps": [ + { + "nodeId": "//benchmarking:stats@bazel" + } + ] + }, + { + "nodeId": "//benchmarking:stats@bazel", + "pkgId": "//benchmarking:stats@bazel", + "deps": [ + { + "nodeId": "io.apptik.json:json-core@1.0.4" + } + ] + }, + { + "nodeId": "com.fasterxml.jackson.dataformat:jackson-dataformat-xml@2.9.8", + "pkgId": "com.fasterxml.jackson.dataformat:jackson-dataformat-xml@2.9.8", + "deps": [] + }, + { + "nodeId": "org.codehaus.woodstox:stax2-api@3.1.4", + "pkgId": "org.codehaus.woodstox:stax2-api@3.1.4", + "deps": [] + }, + { + "nodeId": "com.fasterxml.woodstox:woodstox-core@5.0.3", + "pkgId": "com.fasterxml.woodstox:woodstox-core@5.0.3", + "deps": [] + }, + { + "nodeId": "io.apptik.json:json-core@1.0.4", + "pkgId": "io.apptik.json:json-core@1.0.4", + "deps": [] + }, + { + "nodeId": "//warehouses/common:observability@bazel", + "pkgId": "//warehouses/common:observability@bazel", + "deps": [ + { + "nodeId": "//warehouses/common:events@bazel" + }, + { + "nodeId": "//database:schema_migration_model@bazel" + }, + { + "nodeId": "//events:event_hub@bazel" + }, + { + "nodeId": "//schema_migration:main@bazel" + } + ] + }, + { + "nodeId": "//warehouses/common:events@bazel", + "pkgId": "//warehouses/common:events@bazel", + "deps": [ + { + "nodeId": "//events:event_hub@bazel" + } + ] + }, + { + "nodeId": "//warehouses/common:feature_flags@bazel", + "pkgId": "//warehouses/common:feature_flags@bazel", + "deps": [] + }, + { + "nodeId": "//heartbeat:lite@bazel", + "pkgId": "//heartbeat:lite@bazel", + "deps": [] + }, + { + "nodeId": "com.github.alexandrnikitin:bloom-filter_2.11@0.11.0", + "pkgId": "com.github.alexandrnikitin:bloom-filter_2.11@0.11.0", + "deps": [ + { + "nodeId": "org.scala-lang:scala-library@2.11.1" + } + ] + }, + { + "nodeId": "org.scala-lang:scala-library@2.11.1", + "pkgId": "org.scala-lang:scala-library@2.11.1", + "deps": [] + }, + { + "nodeId": "io.projectreactor:reactor-core@3.4.11", + "pkgId": "io.projectreactor:reactor-core@3.4.11", + "deps": [ + { + "nodeId": "org.reactivestreams:reactive-streams@1.0.3" + } + ] + }, + { + "nodeId": "org.reactivestreams:reactive-streams@1.0.3", + "pkgId": "org.reactivestreams:reactive-streams@1.0.3", + "deps": [] + }, + { + "nodeId": "net.agkn:hll@1.6.0", + "pkgId": "net.agkn:hll@1.6.0", + "deps": [ + { + "nodeId": "it.unimi.dsi:fastutil@8.1.0" + } + ] + }, + { + "nodeId": "it.unimi.dsi:fastutil@8.1.0", + "pkgId": "it.unimi.dsi:fastutil@8.1.0", + "deps": [] + }, + { + "nodeId": "org.jetbrains.kotlin:kotlin-stdlib@1.3.50", + "pkgId": "org.jetbrains.kotlin:kotlin-stdlib@1.3.50", + "deps": [] + }, + { + "nodeId": "org.jetbrains:annotations@17.0.0", + "pkgId": "org.jetbrains:annotations@17.0.0", + "deps": [] + }, + { + "nodeId": "org.jetbrains.kotlin:kotlin-stdlib-common@1.3.71", + "pkgId": "org.jetbrains.kotlin:kotlin-stdlib-common@1.3.71", + "deps": [] + }, + { + "nodeId": "org.openjdk.jmh:jmh-core@1.19", + "pkgId": "org.openjdk.jmh:jmh-core@1.19", + "deps": [ + { + "nodeId": "org.apache.commons:commons-math3@3.6.1" + } + ] + }, + { + "nodeId": "net.sf.jopt-simple:jopt-simple@5.0.4", + "pkgId": "net.sf.jopt-simple:jopt-simple@5.0.4", + "deps": [] + }, + { + "nodeId": "org.apache.commons:commons-math3@3.6.1", + "pkgId": "org.apache.commons:commons-math3@3.6.1", + "deps": [] + }, + { + "nodeId": "org.rocksdb:rocksdbjni@6.8.1", + "pkgId": "org.rocksdb:rocksdbjni@6.8.1", + "deps": [] + }, + { + "nodeId": "org.xerial.snappy:snappy-java@1.1.8.4", + "pkgId": "org.xerial.snappy:snappy-java@1.1.8.4", + "deps": [] + }, + { + "nodeId": "//refine:main@bazel", + "pkgId": "//refine:main@bazel", + "deps": [] + }, + { + "nodeId": "//schema_service:main@bazel", + "pkgId": "//schema_service:main@bazel", + "deps": [ + { + "nodeId": "//core_implementation:main@bazel" + }, + { + "nodeId": "//core_implementation/column_blocking:main@bazel" + }, + { + "nodeId": "//core_implementation/proto:main@bazel" + }, + { + "nodeId": "//core_implementation/proto:row_java_proto@bazel" + }, + { + "nodeId": "//core_implementation/transform:main@bazel" + }, + { + "nodeId": "//emails:core@bazel" + }, + { + "nodeId": "//emails:main@bazel" + } + ] + }, + { + "nodeId": "//services/cmk_encryption:main@bazel", + "pkgId": "//services/cmk_encryption:main@bazel", + "deps": [ + { + "nodeId": "javax.ws.rs:javax.ws.rs-api@2.1.1" + } + ] + }, + { + "nodeId": "javax.ws.rs:javax.ws.rs-api@2.1.1", + "pkgId": "javax.ws.rs:javax.ws.rs-api@2.1.1", + "deps": [] + }, + { + "nodeId": "//services/logging:main@bazel", + "pkgId": "//services/logging:main@bazel", + "deps": [] + }, + { + "nodeId": "//ssh:main@bazel", + "pkgId": "//ssh:main@bazel", + "deps": [ + { + "nodeId": "//database:ssh_verify@bazel" + }, + { + "nodeId": "//secrets/db:main@bazel" + }, + { + "nodeId": "//utils/hook:main@bazel" + } + ] + }, + { + "nodeId": "//secrets/db:main@bazel", + "pkgId": "//secrets/db:main@bazel", + "deps": [ + { + "nodeId": "//kms:main@bazel" + } + ] + }, + { + "nodeId": "//kms:main@bazel", + "pkgId": "//kms:main@bazel", + "deps": [] + }, + { + "nodeId": "@jsch_patched//:main@bazel", + "pkgId": "@jsch_patched//:main@bazel", + "deps": [ + { + "nodeId": "com.jcraft:jzlib@1.1.3" + } + ] + }, + { + "nodeId": "com.jcraft:jzlib@1.1.3", + "pkgId": "com.jcraft:jzlib@1.1.3", + "deps": [] + }, + { + "nodeId": "//warehouses/big_query:main@bazel", + "pkgId": "//warehouses/big_query:main@bazel", + "deps": [ + { + "nodeId": "//emails:main@bazel" + }, + { + "nodeId": "//json:default_object_mapper@bazel" + }, + { + "nodeId": "//schema_migration:main@bazel" + }, + { + "nodeId": "//utils/hook:main@bazel" + }, + { + "nodeId": "//warehouses/common:events@bazel" + }, + { + "nodeId": "//warehouses/common:observability@bazel" + }, + { + "nodeId": "//warehouses/common:staging_gcs@bazel" + }, + { + "nodeId": "//warehouses/common-local:writer_avro@bazel" + }, + { + "nodeId": "//warehouses/common-local:writer_avro_base@bazel" + }, + { + "nodeId": "//warehouses/common-local:writer_json@bazel" + }, + { + "nodeId": "@com_google_cloud_google_cloud_bigquerydatatransfer//:main@bazel" + }, + { + "nodeId": "com.google.api.grpc:proto-google-cloud-billingbudgets-v1@1.1.0" + }, + { + "nodeId": "com.google.apis:google-api-services-cloudbilling@v1-rev9-1.22.0" + }, + { + "nodeId": "com.google.apis:google-api-services-servicemanagement@v1-rev435-1.23.0" + }, + { + "nodeId": "com.google.apis:google-api-services-serviceusage@v1beta1-rev20210427-1.31.0" + }, + { + "nodeId": "com.google.cloud:google-cloud-billingbudgets@1.1.0" + } + ] + }, + { + "nodeId": "//json:default_object_mapper@bazel", + "pkgId": "//json:default_object_mapper@bazel", + "deps": [] + }, + { + "nodeId": "//warehouses/common:main@bazel", + "pkgId": "//warehouses/common:main@bazel", + "deps": [ + { + "nodeId": "//warehouses/common:observability@bazel" + }, + { + "nodeId": "//events:event_hub@bazel" + }, + { + "nodeId": "//json:default_object_mapper@bazel" + }, + { + "nodeId": "//port_forwarder:tunnel_data_source@bazel" + }, + { + "nodeId": "//schema_migration:main@bazel" + }, + { + "nodeId": "//warehouses/common:staging_s3@bazel" + }, + { + "nodeId": "//warehouses/common-local:writer_csv@bazel" + } + ] + }, + { + "nodeId": "//port_forwarder:tunnel_data_source@bazel", + "pkgId": "//port_forwarder:tunnel_data_source@bazel", + "deps": [ + { + "nodeId": "//aws:instance_id@bazel" + } + ] + }, + { + "nodeId": "//aws:instance_id@bazel", + "pkgId": "//aws:instance_id@bazel", + "deps": [] + }, + { + "nodeId": "org.eclipse.jetty:jetty-servlet@9.4.40.v20210413", + "pkgId": "org.eclipse.jetty:jetty-servlet@9.4.40.v20210413", + "deps": [ + { + "nodeId": "org.eclipse.jetty:jetty-security@9.4.40.v20210413" + }, + { + "nodeId": "org.eclipse.jetty:jetty-util-ajax@9.4.40.v20210413" + } + ] + }, + { + "nodeId": "org.eclipse.jetty:jetty-security@9.4.40.v20210413", + "pkgId": "org.eclipse.jetty:jetty-security@9.4.40.v20210413", + "deps": [] + }, + { + "nodeId": "org.eclipse.jetty:jetty-util-ajax@9.4.40.v20210413", + "pkgId": "org.eclipse.jetty:jetty-util-ajax@9.4.40.v20210413", + "deps": [] + }, + { + "nodeId": "org.glassfish.jersey.containers:jersey-container-servlet-core@2.31", + "pkgId": "org.glassfish.jersey.containers:jersey-container-servlet-core@2.31", + "deps": [] + }, + { + "nodeId": "//warehouses/common:staging_s3@bazel", + "pkgId": "//warehouses/common:staging_s3@bazel", + "deps": [ + { + "nodeId": "//warehouses/common-local:writer_file@bazel" + } + ] + }, + { + "nodeId": "//warehouses/common-local:writer_file@bazel", + "pkgId": "//warehouses/common-local:writer_file@bazel", + "deps": [] + }, + { + "nodeId": "com.github.luben:zstd-jni@1.4.9-1", + "pkgId": "com.github.luben:zstd-jni@1.4.9-1", + "deps": [] + }, + { + "nodeId": "//warehouses/common-local:writer_base@bazel", + "pkgId": "//warehouses/common-local:writer_base@bazel", + "deps": [ + { + "nodeId": "//json:default_object_mapper@bazel" + }, + { + "nodeId": "//utils/serialization:main@bazel" + }, + { + "nodeId": "//warehouses/common:staging_azure@bazel" + }, + { + "nodeId": "//warehouses/common:staging_gcs@bazel" + }, + { + "nodeId": "//warehouses/common:staging_s3@bazel" + } + ] + }, + { + "nodeId": "//warehouses/common:staging_azure@bazel", + "pkgId": "//warehouses/common:staging_azure@bazel", + "deps": [ + { + "nodeId": "//warehouses/common-local:writer_file@bazel" + }, + { + "nodeId": "com.microsoft.azure:azure-keyvault-cryptography@1.2.4" + } + ] + }, + { + "nodeId": "com.microsoft.azure:azure-keyvault-cryptography@1.2.4", + "pkgId": "com.microsoft.azure:azure-keyvault-cryptography@1.2.4", + "deps": [ + { + "nodeId": "com.microsoft.azure:azure-keyvault-webkey@1.2.4" + }, + { + "nodeId": "com.microsoft.azure:azure-keyvault-core@1.2.4" + } + ] + }, + { + "nodeId": "com.microsoft.azure:azure-keyvault-webkey@1.2.4", + "pkgId": "com.microsoft.azure:azure-keyvault-webkey@1.2.4", + "deps": [] + }, + { + "nodeId": "com.microsoft.azure:azure-keyvault-core@1.2.4", + "pkgId": "com.microsoft.azure:azure-keyvault-core@1.2.4", + "deps": [] + }, + { + "nodeId": "com.microsoft.azure:azure-storage@8.6.3", + "pkgId": "com.microsoft.azure:azure-storage@8.6.3", + "deps": [ + { + "nodeId": "com.microsoft.azure:azure-keyvault-core@1.2.4" + } + ] + }, + { + "nodeId": "//warehouses/common:staging_gcs@bazel", + "pkgId": "//warehouses/common:staging_gcs@bazel", + "deps": [ + { + "nodeId": "//warehouses/common-local:writer_file@bazel" + } + ] + }, + { + "nodeId": "//warehouses/common-local:writer_csv@bazel", + "pkgId": "//warehouses/common-local:writer_csv@bazel", + "deps": [] + }, + { + "nodeId": "//warehouses/common-local:writer_avro@bazel", + "pkgId": "//warehouses/common-local:writer_avro@bazel", + "deps": [ + { + "nodeId": "//warehouses/common-local:writer_avro_base@bazel" + } + ] + }, + { + "nodeId": "//warehouses/common-local:writer_avro_base@bazel", + "pkgId": "//warehouses/common-local:writer_avro_base@bazel", + "deps": [] + }, + { + "nodeId": "org.apache.avro:avro@1.11.0", + "pkgId": "org.apache.avro:avro@1.11.0", + "deps": [] + }, + { + "nodeId": "org.apache.commons:commons-compress@1.16", + "pkgId": "org.apache.commons:commons-compress@1.16", + "deps": [ + { + "nodeId": "org.objenesis:objenesis@2.6" + } + ] + }, + { + "nodeId": "org.objenesis:objenesis@2.6", + "pkgId": "org.objenesis:objenesis@2.6", + "deps": [] + }, + { + "nodeId": "//warehouses/common-local:writer_json@bazel", + "pkgId": "//warehouses/common-local:writer_json@bazel", + "deps": [ + { + "nodeId": "//json:default_object_mapper@bazel" + } + ] + }, + { + "nodeId": "com.google.api.grpc:proto-google-cloud-billingbudgets-v1@1.1.0", + "pkgId": "com.google.api.grpc:proto-google-cloud-billingbudgets-v1@1.1.0", + "deps": [] + }, + { + "nodeId": "org.checkerframework:checker-compat-qual@2.5.5", + "pkgId": "org.checkerframework:checker-compat-qual@2.5.5", + "deps": [] + }, + { + "nodeId": "com.google.apis:google-api-services-cloudbilling@v1-rev9-1.22.0", + "pkgId": "com.google.apis:google-api-services-cloudbilling@v1-rev9-1.22.0", + "deps": [] + }, + { + "nodeId": "com.google.apis:google-api-services-servicemanagement@v1-rev435-1.23.0", + "pkgId": "com.google.apis:google-api-services-servicemanagement@v1-rev435-1.23.0", + "deps": [] + }, + { + "nodeId": "com.google.apis:google-api-services-serviceusage@v1beta1-rev20210427-1.31.0", + "pkgId": "com.google.apis:google-api-services-serviceusage@v1beta1-rev20210427-1.31.0", + "deps": [] + }, + { + "nodeId": "com.google.cloud:google-cloud-billingbudgets@1.1.0", + "pkgId": "com.google.cloud:google-cloud-billingbudgets@1.1.0", + "deps": [ + { + "nodeId": "com.google.api.grpc:proto-google-cloud-billingbudgets-v1@1.1.0" + }, + { + "nodeId": "com.google.http-client:google-http-client-gson@1.41.8" + }, + { + "nodeId": "com.google.api.grpc:proto-google-cloud-billingbudgets-v1beta1@0.7.0" + } + ] + }, + { + "nodeId": "com.google.api.grpc:proto-google-cloud-billingbudgets-v1beta1@0.7.0", + "pkgId": "com.google.api.grpc:proto-google-cloud-billingbudgets-v1beta1@0.7.0", + "deps": [] + }, + { + "nodeId": "com.stripe:stripe-java@19.20.0", + "pkgId": "com.stripe:stripe-java@19.20.0", + "deps": [] + }, + { + "nodeId": "io.swagger.core.v3:swagger-annotations@2.1.11", + "pkgId": "io.swagger.core.v3:swagger-annotations@2.1.11", + "deps": [] + }, + { + "nodeId": "//utils/bootstrap:main@bazel", + "pkgId": "//utils/bootstrap:main@bazel", + "deps": [ + { + "nodeId": "//integrations/braze:main@bazel" + } + ] + }, + { + "nodeId": "//integrations/braze:main@bazel", + "pkgId": "//integrations/braze:main@bazel", + "deps": [ + { + "nodeId": "//utils/fsort:main@bazel" + } + ] + }, + { + "nodeId": "//services/resync:main@bazel", + "pkgId": "//services/resync:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces/cursor:main@bazel" + }, + { + "nodeId": "//services:exceptions@bazel" + }, + { + "nodeId": "//services:integration_control@bazel" + }, + { + "nodeId": "//services/logging:main@bazel" + } + ] + }, + { + "nodeId": "//services:exceptions@bazel", + "pkgId": "//services:exceptions@bazel", + "deps": [] + }, + { + "nodeId": "//services:integration_control@bazel", + "pkgId": "//services:integration_control@bazel", + "deps": [ + { + "nodeId": "//services:exceptions@bazel" + } + ] + }, + { + "nodeId": "//utils/fsort:main@bazel", + "pkgId": "//utils/fsort:main@bazel", + "deps": [] + }, + { + "nodeId": "info.picocli:picocli@4.5.1", + "pkgId": "info.picocli:picocli@4.5.1", + "deps": [] + }, + { + "nodeId": "com.cronutils:cron-utils@9.0.2", + "pkgId": "com.cronutils:cron-utils@9.0.2", + "deps": [] + }, + { + "nodeId": "org.hibernate:hibernate-validator@5.4.3.Final", + "pkgId": "org.hibernate:hibernate-validator@5.4.3.Final", + "deps": [ + { + "nodeId": "com.fasterxml:classmate@1.3.4" + }, + { + "nodeId": "org.jboss.logging:jboss-logging@3.3.2.Final" + } + ] + }, + { + "nodeId": "com.fasterxml:classmate@1.3.4", + "pkgId": "com.fasterxml:classmate@1.3.4", + "deps": [] + }, + { + "nodeId": "org.jboss.logging:jboss-logging@3.3.2.Final", + "pkgId": "org.jboss.logging:jboss-logging@3.3.2.Final", + "deps": [] + }, + { + "nodeId": "//donkey:main@bazel", + "pkgId": "//donkey:main@bazel", + "deps": [ + { + "nodeId": "//core_implementation:main@bazel" + }, + { + "nodeId": "//core_implementation/column_blocking:main@bazel" + }, + { + "nodeId": "//core_interfaces/cursor:main@bazel" + }, + { + "nodeId": "//database/resilience:main@bazel" + }, + { + "nodeId": "//event_bus:main@bazel" + }, + { + "nodeId": "//feature_flag:flags@bazel" + }, + { + "nodeId": "//feature_flag/service:main@bazel" + }, + { + "nodeId": "//heartbeat:main@bazel" + }, + { + "nodeId": "//integrated_scheduler/scheduler:pubsub@bazel" + }, + { + "nodeId": "//integrations/netsuite:main@bazel" + }, + { + "nodeId": "//pipeline_queue:main@bazel" + }, + { + "nodeId": "//schema_migration:schema_migration_info@bazel" + }, + { + "nodeId": "//schema_migration:service@bazel" + }, + { + "nodeId": "//schema_service:main@bazel" + }, + { + "nodeId": "//secrets/group:main@bazel" + }, + { + "nodeId": "//services/setup_test_runner:main@bazel" + }, + { + "nodeId": "//transformation_runner:client@bazel" + }, + { + "nodeId": "//utils/hook:main@bazel" + }, + { + "nodeId": "//utils/network_monitor:main@bazel" + }, + { + "nodeId": "//utils/threading:main@bazel" + }, + { + "nodeId": "@com_google_cloud_google_cloud_bigquerydatatransfer//:main@bazel" + }, + { + "nodeId": "org.slf4j:slf4j-jdk14@1.7.13" + } + ] + }, + { + "nodeId": "//event_bus:main@bazel", + "pkgId": "//event_bus:main@bazel", + "deps": [] + }, + { + "nodeId": "com.github.f4b6a3:ulid-creator@4.0.0", + "pkgId": "com.github.f4b6a3:ulid-creator@4.0.0", + "deps": [] + }, + { + "nodeId": "//integrated_scheduler/scheduler:pubsub@bazel", + "pkgId": "//integrated_scheduler/scheduler:pubsub@bazel", + "deps": [ + { + "nodeId": "//integrated_scheduler/scheduler:messages@bazel" + }, + { + "nodeId": "com.google.apis:google-api-services-pubsub@v1-rev452-1.25.0" + } + ] + }, + { + "nodeId": "//integrated_scheduler/scheduler:messages@bazel", + "pkgId": "//integrated_scheduler/scheduler:messages@bazel", + "deps": [] + }, + { + "nodeId": "com.google.apis:google-api-services-pubsub@v1-rev452-1.25.0", + "pkgId": "com.google.apis:google-api-services-pubsub@v1-rev452-1.25.0", + "deps": [] + }, + { + "nodeId": "//integrations/netsuite:main@bazel", + "pkgId": "//integrations/netsuite:main@bazel", + "deps": [ + { + "nodeId": "//dblike:main@bazel" + }, + { + "nodeId": "//integrations/db_like_standardization:main@bazel" + } + ] + }, + { + "nodeId": "//core_utils:main@bazel", + "pkgId": "//core_utils:main@bazel", + "deps": [ + { + "nodeId": "//core_implementation/column_blocking:main@bazel" + }, + { + "nodeId": "//core_implementation/proto:main@bazel" + }, + { + "nodeId": "//core_implementation/proto:row_java_proto@bazel" + }, + { + "nodeId": "//core_implementation/transform:main@bazel" + } + ] + }, + { + "nodeId": "//dblike:main@bazel", + "pkgId": "//dblike:main@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/db:main@bazel", + "pkgId": "//integrations/db:main@bazel", + "deps": [ + { + "nodeId": "//cloud_storage:main@bazel" + }, + { + "nodeId": "//integrations/hvr/hvr_tool:main@bazel" + }, + { + "nodeId": "//integrations/speed_test:utils@bazel" + }, + { + "nodeId": "//ip_utils:main@bazel" + }, + { + "nodeId": "//kms:main@bazel" + }, + { + "nodeId": "//schema_migration:schema_migration_info@bazel" + }, + { + "nodeId": "//testing:main@bazel" + }, + { + "nodeId": "//utils/beans:main@bazel" + }, + { + "nodeId": "//utils/os:main@bazel" + }, + { + "nodeId": "//utils/run_shell:main@bazel" + }, + { + "nodeId": "//utils/segmented_input_stream:main@bazel" + }, + { + "nodeId": "//utils/threading:main@bazel" + } + ] + }, + { + "nodeId": "//integrations/hvr/hvr_tool:main@bazel", + "pkgId": "//integrations/hvr/hvr_tool:main@bazel", + "deps": [ + { + "nodeId": "//utils/cipher_adapter:main@bazel" + }, + { + "nodeId": "//utils/run_shell:main@bazel" + }, + { + "nodeId": "//utils/segmented_input_stream:main@bazel" + }, + { + "nodeId": "//utils/sleep_control:main@bazel" + }, + { + "nodeId": "//utils/socket_receiver:main@bazel" + } + ] + }, + { + "nodeId": "//utils/cipher_adapter:main@bazel", + "pkgId": "//utils/cipher_adapter:main@bazel", + "deps": [] + }, + { + "nodeId": "//utils/run_shell:main@bazel", + "pkgId": "//utils/run_shell:main@bazel", + "deps": [ + { + "nodeId": "//utils/sleep_control:main@bazel" + } + ] + }, + { + "nodeId": "//utils/sleep_control:main@bazel", + "pkgId": "//utils/sleep_control:main@bazel", + "deps": [] + }, + { + "nodeId": "//utils/segmented_input_stream:main@bazel", + "pkgId": "//utils/segmented_input_stream:main@bazel", + "deps": [] + }, + { + "nodeId": "//utils/socket_receiver:main@bazel", + "pkgId": "//utils/socket_receiver:main@bazel", + "deps": [ + { + "nodeId": "//utils/sleep_control:main@bazel" + } + ] + }, + { + "nodeId": "//integrations/isolated_endpoint_sync:main@bazel", + "pkgId": "//integrations/isolated_endpoint_sync:main@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/speed_test:main@bazel", + "pkgId": "//integrations/speed_test:main@bazel", + "deps": [ + { + "nodeId": "//integrations/speed_test:utils@bazel" + } + ] + }, + { + "nodeId": "//integrations/speed_test:utils@bazel", + "pkgId": "//integrations/speed_test:utils@bazel", + "deps": [] + }, + { + "nodeId": "//ip_utils:main@bazel", + "pkgId": "//ip_utils:main@bazel", + "deps": [] + }, + { + "nodeId": "//port_forwarder:main@bazel", + "pkgId": "//port_forwarder:main@bazel", + "deps": [ + { + "nodeId": "//:databricks_jdbc@bazel" + }, + { + "nodeId": "//:netsuite_jdbc_connector@bazel" + }, + { + "nodeId": "//:sap_s4hana_jdbc_connector@bazel" + }, + { + "nodeId": "//utils/oracle:main@bazel" + }, + { + "nodeId": "com.ibm.db2:jcc@11.5.0.0" + } + ] + }, + { + "nodeId": "//:databricks_jdbc@bazel", + "pkgId": "//:databricks_jdbc@bazel", + "deps": [] + }, + { + "nodeId": "//:netsuite_jdbc_connector@bazel", + "pkgId": "//:netsuite_jdbc_connector@bazel", + "deps": [] + }, + { + "nodeId": "//:sap_s4hana_jdbc_connector@bazel", + "pkgId": "//:sap_s4hana_jdbc_connector@bazel", + "deps": [] + }, + { + "nodeId": "//utils/oracle:main@bazel", + "pkgId": "//utils/oracle:main@bazel", + "deps": [] + }, + { + "nodeId": "//verification:main@bazel", + "pkgId": "//verification:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:warning@bazel" + }, + { + "nodeId": "@mysql_binlog_connector//:main@bazel" + } + ] + }, + { + "nodeId": "mysql:mysql-connector-java@8.0.13", + "pkgId": "mysql:mysql-connector-java@8.0.13", + "deps": [] + }, + { + "nodeId": "org.mariadb.jdbc:mariadb-java-client@2.5.4", + "pkgId": "org.mariadb.jdbc:mariadb-java-client@2.5.4", + "deps": [] + }, + { + "nodeId": "@mysql_binlog_connector//:main@bazel", + "pkgId": "@mysql_binlog_connector//:main@bazel", + "deps": [] + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-redshift@1.12.84", + "pkgId": "com.amazonaws:aws-java-sdk-redshift@1.12.84", + "deps": [] + }, + { + "nodeId": "com.ibm.db2:jcc@11.5.0.0", + "pkgId": "com.ibm.db2:jcc@11.5.0.0", + "deps": [] + }, + { + "nodeId": "com.microsoft.sqlserver:mssql-jdbc@9.4.0.jre11", + "pkgId": "com.microsoft.sqlserver:mssql-jdbc@9.4.0.jre11", + "deps": [] + }, + { + "nodeId": "net.snowflake:snowflake-jdbc@3.13.18", + "pkgId": "net.snowflake:snowflake-jdbc@3.13.18", + "deps": [] + }, + { + "nodeId": "//testing:main@bazel", + "pkgId": "//testing:main@bazel", + "deps": [ + { + "nodeId": "//core_implementation/transform:main@bazel" + }, + { + "nodeId": "//core_mocks:main@bazel" + }, + { + "nodeId": "com.github.tomakehurst:wiremock-jre8-standalone@2.27.2" + } + ] + }, + { + "nodeId": "//core_mocks:main@bazel", + "pkgId": "//core_mocks:main@bazel", + "deps": [ + { + "nodeId": "//core_implementation:main@bazel" + }, + { + "nodeId": "//core_implementation/column_blocking:main@bazel" + }, + { + "nodeId": "//core_implementation/proto:main@bazel" + }, + { + "nodeId": "//core_implementation/proto:row_java_proto@bazel" + }, + { + "nodeId": "//core_implementation/transform:main@bazel" + }, + { + "nodeId": "com.jayway.jsonpath:json-path@2.4.0" + } + ] + }, + { + "nodeId": "com.jayway.jsonpath:json-path@2.4.0", + "pkgId": "com.jayway.jsonpath:json-path@2.4.0", + "deps": [] + }, + { + "nodeId": "net.minidev:json-smart@2.3", + "pkgId": "net.minidev:json-smart@2.3", + "deps": [ + { + "nodeId": "net.minidev:accessors-smart@1.2" + } + ] + }, + { + "nodeId": "net.minidev:accessors-smart@1.2", + "pkgId": "net.minidev:accessors-smart@1.2", + "deps": [] + }, + { + "nodeId": "com.github.tomakehurst:wiremock-jre8-standalone@2.27.2", + "pkgId": "com.github.tomakehurst:wiremock-jre8-standalone@2.27.2", + "deps": [] + }, + { + "nodeId": "javax.websocket:javax.websocket-api@1.1", + "pkgId": "javax.websocket:javax.websocket-api@1.1", + "deps": [] + }, + { + "nodeId": "junit:junit@4.13", + "pkgId": "junit:junit@4.13", + "deps": [ + { + "nodeId": "org.hamcrest:hamcrest-core@2.2" + } + ] + }, + { + "nodeId": "org.hamcrest:hamcrest-core@2.2", + "pkgId": "org.hamcrest:hamcrest-core@2.2", + "deps": [] + }, + { + "nodeId": "org.hamcrest:hamcrest@2.2", + "pkgId": "org.hamcrest:hamcrest@2.2", + "deps": [] + }, + { + "nodeId": "org.mockito:mockito-core@2.28.2", + "pkgId": "org.mockito:mockito-core@2.28.2", + "deps": [ + { + "nodeId": "net.bytebuddy:byte-buddy@1.10.14" + }, + { + "nodeId": "net.bytebuddy:byte-buddy-agent@1.10.14" + }, + { + "nodeId": "org.objenesis:objenesis@2.6" + } + ] + }, + { + "nodeId": "net.bytebuddy:byte-buddy@1.10.14", + "pkgId": "net.bytebuddy:byte-buddy@1.10.14", + "deps": [] + }, + { + "nodeId": "net.bytebuddy:byte-buddy-agent@1.10.14", + "pkgId": "net.bytebuddy:byte-buddy-agent@1.10.14", + "deps": [] + }, + { + "nodeId": "//utils/beans:main@bazel", + "pkgId": "//utils/beans:main@bazel", + "deps": [] + }, + { + "nodeId": "com.github.jsqlparser:jsqlparser@4.2", + "pkgId": "com.github.jsqlparser:jsqlparser@4.2", + "deps": [] + }, + { + "nodeId": "com.walkmind.extensions:collections@1.20", + "pkgId": "com.walkmind.extensions:collections@1.20", + "deps": [] + }, + { + "nodeId": "//integrations/db_like_standardization:main@bazel", + "pkgId": "//integrations/db_like_standardization:main@bazel", + "deps": [] + }, + { + "nodeId": "//secrets/group:main@bazel", + "pkgId": "//secrets/group:main@bazel", + "deps": [] + }, + { + "nodeId": "//services/setup_test_runner:main@bazel", + "pkgId": "//services/setup_test_runner:main@bazel", + "deps": [ + { + "nodeId": "//partners:main@bazel" + }, + { + "nodeId": "//services/logging:main@bazel" + }, + { + "nodeId": "//setup_test_runner:client@bazel" + }, + { + "nodeId": "//warehouses/big_query:main@bazel" + } + ] + }, + { + "nodeId": "//setup_test_runner:client@bazel", + "pkgId": "//setup_test_runner:client@bazel", + "deps": [ + { + "nodeId": "//http:basic_auth_credentials@bazel" + }, + { + "nodeId": "//http:curl_request@bazel" + }, + { + "nodeId": "//http:exception_mappers@bazel" + }, + { + "nodeId": "//http:json@bazel" + }, + { + "nodeId": "//utils/uri:main@bazel" + } + ] + }, + { + "nodeId": "//http:exception_mappers@bazel", + "pkgId": "//http:exception_mappers@bazel", + "deps": [] + }, + { + "nodeId": "//http:json@bazel", + "pkgId": "//http:json@bazel", + "deps": [] + }, + { + "nodeId": "//transformation_runner:client@bazel", + "pkgId": "//transformation_runner:client@bazel", + "deps": [ + { + "nodeId": "//http:basic_auth_credentials@bazel" + }, + { + "nodeId": "//http:curl_request@bazel" + }, + { + "nodeId": "//utils/uri:main@bazel" + } + ] + }, + { + "nodeId": "org.slf4j:slf4j-jdk14@1.7.13", + "pkgId": "org.slf4j:slf4j-jdk14@1.7.13", + "deps": [] + }, + { + "nodeId": "//events:main@bazel", + "pkgId": "//events:main@bazel", + "deps": [] + }, + { + "nodeId": "//feature_flag/sandbox:main@bazel", + "pkgId": "//feature_flag/sandbox:main@bazel", + "deps": [ + { + "nodeId": "//feature_flag:flags@bazel" + }, + { + "nodeId": "//feature_flag/json:main@bazel" + }, + { + "nodeId": "//feature_flag/service:main@bazel" + } + ] + }, + { + "nodeId": "//feature_flag/json:main@bazel", + "pkgId": "//feature_flag/json:main@bazel", + "deps": [] + }, + { + "nodeId": "//integrated_scheduler/dag:main@bazel", + "pkgId": "//integrated_scheduler/dag:main@bazel", + "deps": [ + { + "nodeId": "//dbt/manifest:main@bazel" + } + ] + }, + { + "nodeId": "//integrated_scheduler/pipeline:main@bazel", + "pkgId": "//integrated_scheduler/pipeline:main@bazel", + "deps": [ + { + "nodeId": "//dbt/manifest:main@bazel" + }, + { + "nodeId": "//dbt/runner:main@bazel" + }, + { + "nodeId": "//integrated_scheduler/dag:main@bazel" + } + ] + }, + { + "nodeId": "//dbt/runner:main@bazel", + "pkgId": "//dbt/runner:main@bazel", + "deps": [ + { + "nodeId": "//database:hikari@bazel" + }, + { + "nodeId": "//dbt/agent:common@bazel" + }, + { + "nodeId": "//dbt/git:main@bazel" + }, + { + "nodeId": "//dbt/manifest:main@bazel" + }, + { + "nodeId": "//dbt/services:main@bazel" + }, + { + "nodeId": "//emails:core@bazel" + }, + { + "nodeId": "//emails:main@bazel" + }, + { + "nodeId": "//event_bus:main@bazel" + }, + { + "nodeId": "//feature_flag/service:main@bazel" + }, + { + "nodeId": "//http:curl_request@bazel" + }, + { + "nodeId": "//http:json@bazel" + }, + { + "nodeId": "//integrated_scheduler/scheduler:messages@bazel" + }, + { + "nodeId": "//integrated_scheduler/scheduler:pubsub@bazel" + }, + { + "nodeId": "//log_appender/cloudwatch:main@bazel" + }, + { + "nodeId": "//log_appender/datadog:main@bazel" + }, + { + "nodeId": "//log_appender/log_analytics:main@bazel" + }, + { + "nodeId": "//log_appender/splunk:main@bazel" + }, + { + "nodeId": "//log_appender/stackdriver:main@bazel" + }, + { + "nodeId": "//logging:ufl@bazel" + }, + { + "nodeId": "//utils/bootstrap:main@bazel" + }, + { + "nodeId": "//utils/threading:main@bazel" + }, + { + "nodeId": "//warehouses/big_query:locations@bazel" + }, + { + "nodeId": "//warehouses/redshift:redshift_cluster_service@bazel" + } + ] + }, + { + "nodeId": "//dbt/agent:common@bazel", + "pkgId": "//dbt/agent:common@bazel", + "deps": [] + }, + { + "nodeId": "//log_appender/datadog:main@bazel", + "pkgId": "//log_appender/datadog:main@bazel", + "deps": [] + }, + { + "nodeId": "//log_appender/log_analytics:main@bazel", + "pkgId": "//log_appender/log_analytics:main@bazel", + "deps": [] + }, + { + "nodeId": "//log_appender/splunk:main@bazel", + "pkgId": "//log_appender/splunk:main@bazel", + "deps": [ + { + "nodeId": "//utils/hook:main@bazel" + } + ] + }, + { + "nodeId": "//logging:ufl@bazel", + "pkgId": "//logging:ufl@bazel", + "deps": [] + }, + { + "nodeId": "//warehouses/big_query:locations@bazel", + "pkgId": "//warehouses/big_query:locations@bazel", + "deps": [] + }, + { + "nodeId": "//warehouses/redshift:redshift_cluster_service@bazel", + "pkgId": "//warehouses/redshift:redshift_cluster_service@bazel", + "deps": [] + }, + { + "nodeId": "//log_tailer:main@bazel", + "pkgId": "//log_tailer:main@bazel", + "deps": [ + { + "nodeId": "//heartbeat:main@bazel" + }, + { + "nodeId": "//integrations/zuora:main@bazel" + }, + { + "nodeId": "//log_appender/cloudwatch:main@bazel" + }, + { + "nodeId": "//logging:fluent_bit@bazel" + }, + { + "nodeId": "//secrets/db:main@bazel" + }, + { + "nodeId": "//service_registry:main@bazel" + }, + { + "nodeId": "//utils/bootstrap:main@bazel" + }, + { + "nodeId": "org.apache.axis:axis@1.4" + } + ] + }, + { + "nodeId": "//integrations/zuora:main@bazel", + "pkgId": "//integrations/zuora:main@bazel", + "deps": [ + { + "nodeId": "//dblike:main@bazel" + }, + { + "nodeId": "//integrations/db_like_standardization:main@bazel" + } + ] + }, + { + "nodeId": "//secrets/integration:main@bazel", + "pkgId": "//secrets/integration:main@bazel", + "deps": [] + }, + { + "nodeId": "//logging:fluent_bit@bazel", + "pkgId": "//logging:fluent_bit@bazel", + "deps": [ + { + "nodeId": "//logging:ufl@bazel" + } + ] + }, + { + "nodeId": "//service_registry:main@bazel", + "pkgId": "//service_registry:main@bazel", + "deps": [ + { + "nodeId": "//coil:main@bazel" + }, + { + "nodeId": "//integrations/chartio:main@bazel" + }, + { + "nodeId": "//integrations/google_data_studio:main@bazel" + }, + { + "nodeId": "//integrations/periscope:main@bazel" + }, + { + "nodeId": "//integrations/sigma_computing:main@bazel" + }, + { + "nodeId": "//integrations/sisense:main@bazel" + }, + { + "nodeId": "//integrations/tableau:main@bazel" + }, + { + "nodeId": "//integrations/looker:main@bazel" + }, + { + "nodeId": "//integrations/postgres2020:main@bazel" + }, + { + "nodeId": "//log_appender/cloudwatch:main@bazel" + }, + { + "nodeId": "//log_appender/datadog:main@bazel" + }, + { + "nodeId": "//log_appender/log_analytics:main@bazel" + }, + { + "nodeId": "//log_appender/splunk:main@bazel" + }, + { + "nodeId": "//log_appender/stackdriver:main@bazel" + }, + { + "nodeId": "//secrets/db:main@bazel" + }, + { + "nodeId": "//sources/bridge:main@bazel" + }, + { + "nodeId": "//warehouses/azure:main@bazel" + }, + { + "nodeId": "//warehouses/big_query:main@bazel" + }, + { + "nodeId": "//warehouses/databricks:main@bazel" + }, + { + "nodeId": "//warehouses/mysql:main@bazel" + }, + { + "nodeId": "//warehouses/panoply:main@bazel" + }, + { + "nodeId": "//warehouses/periscope:main@bazel" + }, + { + "nodeId": "//warehouses/postgres:main@bazel" + }, + { + "nodeId": "//warehouses/redshift:main@bazel" + }, + { + "nodeId": "//warehouses/s3_data_lake:main@bazel" + }, + { + "nodeId": "//warehouses/snowflake:main@bazel" + }, + { + "nodeId": "//warehouses/sql_server:main@bazel" + }, + { + "nodeId": "//integrations/adjust:main@bazel" + }, + { + "nodeId": "//integrations/adobe_analytics:main@bazel" + }, + { + "nodeId": "//integrations/adobe_analytics_data_feed:main@bazel" + }, + { + "nodeId": "//integrations/adp_workforce_now:main@bazel" + }, + { + "nodeId": "//integrations/adroll:main@bazel" + }, + { + "nodeId": "//integrations/adwords:main@bazel" + }, + { + "nodeId": "//integrations/google_ads:main@bazel" + }, + { + "nodeId": "//integrations/airtable:main@bazel" + }, + { + "nodeId": "//integrations/amazon_ads:main@bazel" + }, + { + "nodeId": "//integrations/amplitude:main@bazel" + }, + { + "nodeId": "//integrations/anaplan:main@bazel" + }, + { + "nodeId": "//integrations/apple_search_ads:main@bazel" + }, + { + "nodeId": "//integrations/appsflyer:main@bazel" + }, + { + "nodeId": "//integrations/asana:main@bazel" + }, + { + "nodeId": "//integrations/aws_cloudtrail:main@bazel" + }, + { + "nodeId": "//integrations/aws_inventory:main@bazel" + }, + { + "nodeId": "//integrations/azure_blob_storage:main@bazel" + }, + { + "nodeId": "//integrations/azure_consumer_file:main@bazel" + }, + { + "nodeId": "//integrations/azure_service_bus:main@bazel" + }, + { + "nodeId": "//integrations/big_commerce:main@bazel" + }, + { + "nodeId": "//integrations/bingads:main@bazel" + }, + { + "nodeId": "//integrations/box:main@bazel" + }, + { + "nodeId": "//integrations/braintree:main@bazel" + }, + { + "nodeId": "//integrations/branch:main@bazel" + }, + { + "nodeId": "//integrations/braze:main@bazel" + }, + { + "nodeId": "//integrations/business_central:main@bazel" + }, + { + "nodeId": "//integrations/cloudfront:main@bazel" + }, + { + "nodeId": "//integrations/coupa:main@bazel" + }, + { + "nodeId": "//integrations/criteo:main@bazel" + }, + { + "nodeId": "//integrations/db2:main@bazel" + }, + { + "nodeId": "//integrations/document:main@bazel" + }, + { + "nodeId": "//integrations/double_click_campaign_manager:main@bazel" + }, + { + "nodeId": "//integrations/dropbox:main@bazel" + }, + { + "nodeId": "//integrations/dummy_postgres:main@bazel" + }, + { + "nodeId": "//integrations/dynamics365:main@bazel" + }, + { + "nodeId": "//integrations/dynamodb:main@bazel" + }, + { + "nodeId": "//integrations/elasticsearch:main@bazel" + }, + { + "nodeId": "//integrations/eloqua:main@bazel" + }, + { + "nodeId": "//integrations/email:main@bazel" + }, + { + "nodeId": "//integrations/facebook:main@bazel" + }, + { + "nodeId": "//integrations/acmecorp_log:main@bazel" + }, + { + "nodeId": "//integrations/freshdesk:main@bazel" + }, + { + "nodeId": "//integrations/freshservice_classic:main@bazel" + }, + { + "nodeId": "//integrations/front:main@bazel" + }, + { + "nodeId": "//integrations/ftp:main@bazel" + }, + { + "nodeId": "//integrations/functions/aws_lambda:main@bazel" + }, + { + "nodeId": "//integrations/functions/azure_function:main@bazel" + }, + { + "nodeId": "//integrations/functions/google_cloud_function:main@bazel" + }, + { + "nodeId": "//integrations/gcs:main@bazel" + }, + { + "nodeId": "//integrations/gainsight_customer_success:main@bazel" + }, + { + "nodeId": "//integrations/gdrive:main@bazel" + }, + { + "nodeId": "//integrations/github:main@bazel" + }, + { + "nodeId": "//integrations/google_ad_manager:main@bazel" + }, + { + "nodeId": "//integrations/google_analytics:main@bazel" + }, + { + "nodeId": "//integrations/google_analytics_4:main@bazel" + }, + { + "nodeId": "//integrations/google_analytics_4_export:main@bazel" + }, + { + "nodeId": "//integrations/google_analytics_360:main@bazel" + }, + { + "nodeId": "//integrations/google_display_and_video_360:main@bazel" + }, + { + "nodeId": "//integrations/google_search_ads_360:main@bazel" + }, + { + "nodeId": "//integrations/google_play:main@bazel" + }, + { + "nodeId": "//integrations/google_search_console:main@bazel" + }, + { + "nodeId": "//integrations/greenhouse:main@bazel" + }, + { + "nodeId": "//integrations/gsheets:main@bazel" + }, + { + "nodeId": "//integrations/heap:main@bazel" + }, + { + "nodeId": "//integrations/height:main@bazel" + }, + { + "nodeId": "//integrations/helpscout:main@bazel" + }, + { + "nodeId": "//integrations/hubspot:main@bazel" + }, + { + "nodeId": "//integrations/instagram:main@bazel" + }, + { + "nodeId": "//integrations/intercom:main@bazel" + }, + { + "nodeId": "//integrations/iterable:main@bazel" + }, + { + "nodeId": "//integrations/itunes_connect:main@bazel" + }, + { + "nodeId": "//integrations/jira:main@bazel" + }, + { + "nodeId": "//integrations/kafka:main@bazel" + }, + { + "nodeId": "//integrations/kinesis:main@bazel" + }, + { + "nodeId": "//integrations/klaviyo:main@bazel" + }, + { + "nodeId": "//integrations/kustomer:main@bazel" + }, + { + "nodeId": "//integrations/lever:main@bazel" + }, + { + "nodeId": "//integrations/lightspeed_retail:main@bazel" + }, + { + "nodeId": "//integrations/linkedin:main@bazel" + }, + { + "nodeId": "//integrations/mailchimp:main@bazel" + }, + { + "nodeId": "//integrations/mandrill:main@bazel" + }, + { + "nodeId": "//integrations/marin:main@bazel" + }, + { + "nodeId": "//integrations/marketo:main@bazel" + }, + { + "nodeId": "//integrations/mavenlink:main@bazel" + }, + { + "nodeId": "//integrations/medallia:main@bazel" + }, + { + "nodeId": "//integrations/microsoft_lists:main@bazel" + }, + { + "nodeId": "//integrations/mixpanel:main@bazel" + }, + { + "nodeId": "//integrations/mongo:main@bazel" + }, + { + "nodeId": "//integrations/mysql:main@bazel" + }, + { + "nodeId": "//integrations/netsuite:main@bazel" + }, + { + "nodeId": "//integrations/optimizely:main@bazel" + }, + { + "nodeId": "//integrations/oracle_cloud_apps_cx:main@bazel" + }, + { + "nodeId": "//integrations/oracle_cloud_apps_erp_scm:main@bazel" + }, + { + "nodeId": "//integrations/oracle_fusion_cloud_apps:main@bazel" + }, + { + "nodeId": "//integrations/oracle:main@bazel" + }, + { + "nodeId": "//integrations/oracle_hva:main@bazel" + }, + { + "nodeId": "//integrations/oracle_hva2:main@bazel" + }, + { + "nodeId": "//integrations/outbrain:main@bazel" + }, + { + "nodeId": "//integrations/outreach:main@bazel" + }, + { + "nodeId": "//integrations/pardot:main@bazel" + }, + { + "nodeId": "//integrations/paypal:main@bazel" + }, + { + "nodeId": "//integrations/pendo:main@bazel" + }, + { + "nodeId": "//integrations/pinterest:main@bazel" + }, + { + "nodeId": "//integrations/pipedrive:main@bazel" + }, + { + "nodeId": "//integrations/postgres:main@bazel" + }, + { + "nodeId": "//integrations/qualtrics:main@bazel" + }, + { + "nodeId": "//integrations/quickbooks:main@bazel" + }, + { + "nodeId": "//integrations/recharge:main@bazel" + }, + { + "nodeId": "//integrations/recurly:main@bazel" + }, + { + "nodeId": "//integrations/reddit:main@bazel" + }, + { + "nodeId": "//integrations/s3:main@bazel" + }, + { + "nodeId": "//integrations/sage_intacct:main@bazel" + }, + { + "nodeId": "//integrations/sailthru:main@bazel" + }, + { + "nodeId": "//integrations/salesforce:main@bazel" + }, + { + "nodeId": "//integrations/salesforce_commerce_cloud:main@bazel" + }, + { + "nodeId": "//integrations/salesforce_marketing_cloud:main@bazel" + }, + { + "nodeId": "//integrations/sap_business_bydesign:main@bazel" + }, + { + "nodeId": "//integrations/sap_concur:main@bazel" + }, + { + "nodeId": "//integrations/sap_s4hana:main@bazel" + }, + { + "nodeId": "//integrations/segment:main@bazel" + }, + { + "nodeId": "//integrations/sendgrid:main@bazel" + }, + { + "nodeId": "//integrations/service_now:main@bazel" + }, + { + "nodeId": "//integrations/sftp:main@bazel" + }, + { + "nodeId": "//integrations/shopify:main@bazel" + }, + { + "nodeId": "//integrations/snapchat_ads:main@bazel" + }, + { + "nodeId": "//integrations/snowplow:main@bazel" + }, + { + "nodeId": "//integrations/snowflake:main@bazel" + }, + { + "nodeId": "//integrations/splunk:main@bazel" + }, + { + "nodeId": "//integrations/sql_server:main@bazel" + }, + { + "nodeId": "//integrations/square:main@bazel" + }, + { + "nodeId": "//integrations/stripe:main@bazel" + }, + { + "nodeId": "//integrations/survey_monkey:main@bazel" + }, + { + "nodeId": "//integrations/spotify_ads:main@bazel" + }, + { + "nodeId": "//integrations/taboola:main@bazel" + }, + { + "nodeId": "//integrations/the_trade_desk:main@bazel" + }, + { + "nodeId": "//integrations/tiktok_ads:main@bazel" + }, + { + "nodeId": "//integrations/twilio:main@bazel" + }, + { + "nodeId": "//integrations/twitter:main@bazel" + }, + { + "nodeId": "//integrations/typeform:main@bazel" + }, + { + "nodeId": "//integrations/uservoice:main@bazel" + }, + { + "nodeId": "//integrations/webhooks:main@bazel" + }, + { + "nodeId": "//integrations/wordpress:main@bazel" + }, + { + "nodeId": "//integrations/workday:main@bazel" + }, + { + "nodeId": "//integrations/workday_hcm:main@bazel" + }, + { + "nodeId": "//integrations/xero:main@bazel" + }, + { + "nodeId": "//integrations/yahoo_gemini:main@bazel" + }, + { + "nodeId": "//integrations/youtube_analytics:main@bazel" + }, + { + "nodeId": "//integrations/zendesk:main@bazel" + }, + { + "nodeId": "//integrations/zendesk_chat:main@bazel" + }, + { + "nodeId": "//integrations/zendesk_sell:main@bazel" + }, + { + "nodeId": "//integrations/zendesk_sunshine:main@bazel" + }, + { + "nodeId": "//integrations/zoho_crm:main@bazel" + }, + { + "nodeId": "//integrations/zuora:main@bazel" + }, + { + "nodeId": "//integrations/coil_connectors:main@bazel" + }, + { + "nodeId": "//integrations/delighted:main@bazel" + }, + { + "nodeId": "//sources/delighted:main@bazel" + } + ] + }, + { + "nodeId": "//coil:main@bazel", + "pkgId": "//coil:main@bazel", + "deps": [ + { + "nodeId": "//coil:coil_framework_java@bazel" + }, + { + "nodeId": "//core_implementation:main@bazel" + }, + { + "nodeId": "//core_mocks:main@bazel" + }, + { + "nodeId": "//integrations/coil_connectors:main@bazel" + }, + { + "nodeId": "//sources/types:main@bazel" + }, + { + "nodeId": "com.jayway.jsonpath:json-path@2.4.0" + }, + { + "nodeId": "lambdaisland:deep-diff2@2.0.108" + } + ] + }, + { + "nodeId": "//coil:coil_framework_java@bazel", + "pkgId": "//coil:coil_framework_java@bazel", + "deps": [ + { + "nodeId": "//coil:coil_framework_clojure@bazel" + }, + { + "nodeId": "//integrations/coil_connectors:main@bazel" + } + ] + }, + { + "nodeId": "//coil:coil_framework_clojure@bazel", + "pkgId": "//coil:coil_framework_clojure@bazel", + "deps": [ + { + "nodeId": "//integrations/coil_connectors:main@bazel" + }, + { + "nodeId": "org.clojure:core.specs.alpha@0.2.56" + }, + { + "nodeId": "org.clojure:data.json@1.1.0" + } + ] + }, + { + "nodeId": "//integrations/coil_connectors:main@bazel", + "pkgId": "//integrations/coil_connectors:main@bazel", + "deps": [] + }, + { + "nodeId": "org.clojure:clojure@1.10.1", + "pkgId": "org.clojure:clojure@1.10.1", + "deps": [] + }, + { + "nodeId": "org.clojure:core.specs.alpha@0.2.56", + "pkgId": "org.clojure:core.specs.alpha@0.2.56", + "deps": [] + }, + { + "nodeId": "org.clojure:data.json@1.1.0", + "pkgId": "org.clojure:data.json@1.1.0", + "deps": [] + }, + { + "nodeId": "//webhook/client:main@bazel", + "pkgId": "//webhook/client:main@bazel", + "deps": [ + { + "nodeId": "//cloud_storage:main@bazel" + }, + { + "nodeId": "//webhook/storage:main@bazel" + }, + { + "nodeId": "//webhook/utils:main@bazel" + } + ] + }, + { + "nodeId": "//webhook/storage:main@bazel", + "pkgId": "//webhook/storage:main@bazel", + "deps": [ + { + "nodeId": "//cloud_storage:main@bazel" + }, + { + "nodeId": "//shaded_dependencies/azure:azure_identity_shaded@bazel" + }, + { + "nodeId": "//shaded_dependencies/azure:azure_storage_blob_shaded@bazel" + }, + { + "nodeId": "//utils/os:main@bazel" + } + ] + }, + { + "nodeId": "//webhook/utils:main@bazel", + "pkgId": "//webhook/utils:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:pojos@bazel" + }, + { + "nodeId": "//dockerized/postgres:main@bazel" + }, + { + "nodeId": "io.kubernetes:client-java@3.0.0-beta2" + }, + { + "nodeId": "io.kubernetes:client-java-api@3.0.0-beta2" + } + ] + }, + { + "nodeId": "//core_interfaces:pojos@bazel", + "pkgId": "//core_interfaces:pojos@bazel", + "deps": [ + { + "nodeId": "//database:credential_models@bazel" + } + ] + }, + { + "nodeId": "io.kubernetes:client-java@3.0.0-beta2", + "pkgId": "io.kubernetes:client-java@3.0.0-beta2", + "deps": [ + { + "nodeId": "io.kubernetes:client-java-api@3.0.0-beta2" + }, + { + "nodeId": "com.microsoft.azure:adal4j@1.6.3" + }, + { + "nodeId": "com.squareup.okhttp:okhttp-ws@2.7.5" + }, + { + "nodeId": "org.bouncycastle:bcprov-ext-jdk15on@1.70" + }, + { + "nodeId": "io.kubernetes:client-java-proto@3.0.0" + } + ] + }, + { + "nodeId": "io.kubernetes:client-java-api@3.0.0-beta2", + "pkgId": "io.kubernetes:client-java-api@3.0.0-beta2", + "deps": [ + { + "nodeId": "org.joda:joda-convert@1.2" + }, + { + "nodeId": "com.squareup.okhttp:logging-interceptor@2.7.5" + }, + { + "nodeId": "io.sundr:builder-annotations@0.8.0" + }, + { + "nodeId": "io.swagger:swagger-annotations@1.6.0" + } + ] + }, + { + "nodeId": "com.squareup.okhttp:okhttp@2.7.5", + "pkgId": "com.squareup.okhttp:okhttp@2.7.5", + "deps": [] + }, + { + "nodeId": "com.squareup.okio:okio@1.13.0", + "pkgId": "com.squareup.okio:okio@1.13.0", + "deps": [] + }, + { + "nodeId": "org.joda:joda-convert@1.2", + "pkgId": "org.joda:joda-convert@1.2", + "deps": [] + }, + { + "nodeId": "com.squareup.okhttp:logging-interceptor@2.7.5", + "pkgId": "com.squareup.okhttp:logging-interceptor@2.7.5", + "deps": [] + }, + { + "nodeId": "io.sundr:builder-annotations@0.8.0", + "pkgId": "io.sundr:builder-annotations@0.8.0", + "deps": [ + { + "nodeId": "io.sundr:sundr-codegen@0.8.0" + }, + { + "nodeId": "io.sundr:sundr-core@0.8.0" + } + ] + }, + { + "nodeId": "io.sundr:sundr-codegen@0.8.0", + "pkgId": "io.sundr:sundr-codegen@0.8.0", + "deps": [] + }, + { + "nodeId": "io.sundr:sundr-core@0.8.0", + "pkgId": "io.sundr:sundr-core@0.8.0", + "deps": [] + }, + { + "nodeId": "io.swagger:swagger-annotations@1.6.0", + "pkgId": "io.swagger:swagger-annotations@1.6.0", + "deps": [] + }, + { + "nodeId": "com.microsoft.azure:adal4j@1.6.3", + "pkgId": "com.microsoft.azure:adal4j@1.6.3", + "deps": [ + { + "nodeId": "com.nimbusds:oauth2-oidc-sdk@5.64.4" + } + ] + }, + { + "nodeId": "com.nimbusds:oauth2-oidc-sdk@5.64.4", + "pkgId": "com.nimbusds:oauth2-oidc-sdk@5.64.4", + "deps": [ + { + "nodeId": "com.github.stephenc.jcip:jcip-annotations@1.0-1" + }, + { + "nodeId": "com.sun.mail:javax.mail@1.5.4" + }, + { + "nodeId": "com.nimbusds:lang-tag@1.4.3" + } + ] + }, + { + "nodeId": "com.github.stephenc.jcip:jcip-annotations@1.0-1", + "pkgId": "com.github.stephenc.jcip:jcip-annotations@1.0-1", + "deps": [] + }, + { + "nodeId": "com.sun.mail:javax.mail@1.5.4", + "pkgId": "com.sun.mail:javax.mail@1.5.4", + "deps": [] + }, + { + "nodeId": "com.nimbusds:nimbus-jose-jwt@5.5", + "pkgId": "com.nimbusds:nimbus-jose-jwt@5.5", + "deps": [ + { + "nodeId": "com.github.stephenc.jcip:jcip-annotations@1.0-1" + } + ] + }, + { + "nodeId": "com.nimbusds:lang-tag@1.4.3", + "pkgId": "com.nimbusds:lang-tag@1.4.3", + "deps": [] + }, + { + "nodeId": "com.squareup.okhttp:okhttp-ws@2.7.5", + "pkgId": "com.squareup.okhttp:okhttp-ws@2.7.5", + "deps": [] + }, + { + "nodeId": "io.kubernetes:client-java-proto@3.0.0", + "pkgId": "io.kubernetes:client-java-proto@3.0.0", + "deps": [] + }, + { + "nodeId": "lambdaisland:deep-diff2@2.0.108", + "pkgId": "lambdaisland:deep-diff2@2.0.108", + "deps": [ + { + "nodeId": "fipp:fipp@0.6.23" + }, + { + "nodeId": "lambdaisland:clj-diff@1.1.58" + }, + { + "nodeId": "mvxcvi:arrangement@1.2.1" + }, + { + "nodeId": "org.clojure:core.rrb-vector@0.1.1" + } + ] + }, + { + "nodeId": "fipp:fipp@0.6.23", + "pkgId": "fipp:fipp@0.6.23", + "deps": [ + { + "nodeId": "org.clojure:core.rrb-vector@0.1.1" + } + ] + }, + { + "nodeId": "org.clojure:core.rrb-vector@0.1.1", + "pkgId": "org.clojure:core.rrb-vector@0.1.1", + "deps": [] + }, + { + "nodeId": "lambdaisland:clj-diff@1.1.58", + "pkgId": "lambdaisland:clj-diff@1.1.58", + "deps": [] + }, + { + "nodeId": "mvxcvi:arrangement@1.2.1", + "pkgId": "mvxcvi:arrangement@1.2.1", + "deps": [] + }, + { + "nodeId": "org.apache.commons:commons-collections4@4.1", + "pkgId": "org.apache.commons:commons-collections4@4.1", + "deps": [] + }, + { + "nodeId": "//integrations/chartio:main@bazel", + "pkgId": "//integrations/chartio:main@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/google_data_studio:main@bazel", + "pkgId": "//integrations/google_data_studio:main@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/periscope:main@bazel", + "pkgId": "//integrations/periscope:main@bazel", + "deps": [ + { + "nodeId": "//warehouses/common:tasks@bazel" + } + ] + }, + { + "nodeId": "//warehouses/common:tasks@bazel", + "pkgId": "//warehouses/common:tasks@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/sigma_computing:main@bazel", + "pkgId": "//integrations/sigma_computing:main@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/sisense:main@bazel", + "pkgId": "//integrations/sisense:main@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/tableau:main@bazel", + "pkgId": "//integrations/tableau:main@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/looker:main@bazel", + "pkgId": "//integrations/looker:main@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/postgres2020:main@bazel", + "pkgId": "//integrations/postgres2020:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:warning@bazel" + }, + { + "nodeId": "//feature_flag:flags@bazel" + }, + { + "nodeId": "//geo:main@bazel" + }, + { + "nodeId": "//integrations/configuration_tracker:main@bazel" + }, + { + "nodeId": "//metal:main@bazel" + }, + { + "nodeId": "//schema_migration:schema_migration_info@bazel" + }, + { + "nodeId": "//services:ab_tests@bazel" + }, + { + "nodeId": "//teleport:main@bazel" + }, + { + "nodeId": "//utils/binary:main@bazel" + }, + { + "nodeId": "//utils/operations:main@bazel" + }, + { + "nodeId": "//utils/threading:main@bazel" + }, + { + "nodeId": "com.google.cloud:google-cloud-logging@1.19.0" + } + ] + }, + { + "nodeId": "//geo:main@bazel", + "pkgId": "//geo:main@bazel", + "deps": [ + { + "nodeId": "//utils/binary:main@bazel" + } + ] + }, + { + "nodeId": "//utils/binary:main@bazel", + "pkgId": "//utils/binary:main@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/configuration_tracker:main@bazel", + "pkgId": "//integrations/configuration_tracker:main@bazel", + "deps": [ + { + "nodeId": "org.jeasy:easy-rules-core@4.1.0" + } + ] + }, + { + "nodeId": "com.google.cloud:google-cloud-bigquery@1.48.0", + "pkgId": "com.google.cloud:google-cloud-bigquery@1.48.0", + "deps": [ + { + "nodeId": "com.google.auto.value:auto-value@1.5.3" + } + ] + }, + { + "nodeId": "com.google.auto.value:auto-value@1.5.3", + "pkgId": "com.google.auto.value:auto-value@1.5.3", + "deps": [] + }, + { + "nodeId": "org.jeasy:easy-rules-core@4.1.0", + "pkgId": "org.jeasy:easy-rules-core@4.1.0", + "deps": [] + }, + { + "nodeId": "//services:ab_tests@bazel", + "pkgId": "//services:ab_tests@bazel", + "deps": [] + }, + { + "nodeId": "//teleport:main@bazel", + "pkgId": "//teleport:main@bazel", + "deps": [ + { + "nodeId": "//cloud_storage:main@bazel" + }, + { + "nodeId": "//shaded_dependencies/azure:azure_identity_shaded@bazel" + }, + { + "nodeId": "//shaded_dependencies/azure:azure_storage_blob_shaded@bazel" + }, + { + "nodeId": "//utils/fsort:main@bazel" + }, + { + "nodeId": "//utils/os:main@bazel" + } + ] + }, + { + "nodeId": "//utils/operations:main@bazel", + "pkgId": "//utils/operations:main@bazel", + "deps": [] + }, + { + "nodeId": "//sources/bridge:main@bazel", + "pkgId": "//sources/bridge:main@bazel", + "deps": [ + { + "nodeId": "//api:connector_config_formatter@bazel" + }, + { + "nodeId": "//sources/form:main@bazel" + }, + { + "nodeId": "//sources/types:main@bazel" + } + ] + }, + { + "nodeId": "//api:connector_config_formatter@bazel", + "pkgId": "//api:connector_config_formatter@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:pojos@bazel" + }, + { + "nodeId": "//sources/form:main@bazel" + }, + { + "nodeId": "//sources/types:main@bazel" + } + ] + }, + { + "nodeId": "//sources/form:main@bazel", + "pkgId": "//sources/form:main@bazel", + "deps": [] + }, + { + "nodeId": "//warehouses/azure:main@bazel", + "pkgId": "//warehouses/azure:main@bazel", + "deps": [ + { + "nodeId": "//port_forwarder:azure@bazel" + }, + { + "nodeId": "//warehouses/common:staging_azure@bazel" + }, + { + "nodeId": "//warehouses/common:tasks@bazel" + }, + { + "nodeId": "//warehouses/common-local:writer_avro_base@bazel" + }, + { + "nodeId": "//warehouses/common-local:writer_parquet@bazel" + } + ] + }, + { + "nodeId": "//port_forwarder:azure@bazel", + "pkgId": "//port_forwarder:azure@bazel", + "deps": [ + { + "nodeId": "//aws:instance_id@bazel" + } + ] + }, + { + "nodeId": "//warehouses/common-local:writer_parquet@bazel", + "pkgId": "//warehouses/common-local:writer_parquet@bazel", + "deps": [ + { + "nodeId": "//warehouses/common-local:writer_avro_base@bazel" + } + ] + }, + { + "nodeId": "org.apache.hadoop:hadoop-common@2.7.7", + "pkgId": "org.apache.hadoop:hadoop-common@2.7.7", + "deps": [ + { + "nodeId": "org.apache.htrace:htrace-core@3.1.0-incubating" + }, + { + "nodeId": "xmlenc:xmlenc@0.52" + }, + { + "nodeId": "net.java.dev.jets3t:jets3t@0.9.0" + }, + { + "nodeId": "org.apache.curator:curator-client@2.7.1" + }, + { + "nodeId": "com.jcraft:jsch@0.1.54" + }, + { + "nodeId": "com.sun.jersey:jersey-json@1.13" + }, + { + "nodeId": "org.mortbay.jetty:jetty-sslengine@6.1.26" + }, + { + "nodeId": "org.apache.commons:commons-math3@3.6.1" + }, + { + "nodeId": "commons-cli:commons-cli@1.3.1" + }, + { + "nodeId": "javax.servlet.jsp:jsp-api@2.1" + }, + { + "nodeId": "org.apache.curator:curator-recipes@2.7.1" + }, + { + "nodeId": "commons-httpclient:commons-httpclient@3.1" + }, + { + "nodeId": "javax.servlet:servlet-api@2.5" + } + ] + }, + { + "nodeId": "org.apache.htrace:htrace-core@3.1.0-incubating", + "pkgId": "org.apache.htrace:htrace-core@3.1.0-incubating", + "deps": [] + }, + { + "nodeId": "xmlenc:xmlenc@0.52", + "pkgId": "xmlenc:xmlenc@0.52", + "deps": [] + }, + { + "nodeId": "org.mortbay.jetty:jetty@6.1.26", + "pkgId": "org.mortbay.jetty:jetty@6.1.26", + "deps": [ + { + "nodeId": "org.mortbay.jetty:servlet-api@2.5-20081211" + } + ] + }, + { + "nodeId": "org.mortbay.jetty:jetty-util@6.1.26", + "pkgId": "org.mortbay.jetty:jetty-util@6.1.26", + "deps": [] + }, + { + "nodeId": "org.mortbay.jetty:servlet-api@2.5-20081211", + "pkgId": "org.mortbay.jetty:servlet-api@2.5-20081211", + "deps": [] + }, + { + "nodeId": "net.java.dev.jets3t:jets3t@0.9.0", + "pkgId": "net.java.dev.jets3t:jets3t@0.9.0", + "deps": [ + { + "nodeId": "com.jamesmurty.utils:java-xmlbuilder@0.4" + } + ] + }, + { + "nodeId": "com.jamesmurty.utils:java-xmlbuilder@0.4", + "pkgId": "com.jamesmurty.utils:java-xmlbuilder@0.4", + "deps": [] + }, + { + "nodeId": "org.codehaus.jackson:jackson-mapper-asl@1.9.13", + "pkgId": "org.codehaus.jackson:jackson-mapper-asl@1.9.13", + "deps": [] + }, + { + "nodeId": "org.apache.curator:curator-client@2.7.1", + "pkgId": "org.apache.curator:curator-client@2.7.1", + "deps": [] + }, + { + "nodeId": "org.apache.zookeeper:zookeeper@3.4.6", + "pkgId": "org.apache.zookeeper:zookeeper@3.4.6", + "deps": [ + { + "nodeId": "io.netty:netty@3.7.0.Final" + } + ] + }, + { + "nodeId": "io.netty:netty@3.7.0.Final", + "pkgId": "io.netty:netty@3.7.0.Final", + "deps": [] + }, + { + "nodeId": "log4j:log4j@1.2.17", + "pkgId": "log4j:log4j@1.2.17", + "deps": [] + }, + { + "nodeId": "com.jcraft:jsch@0.1.54", + "pkgId": "com.jcraft:jsch@0.1.54", + "deps": [] + }, + { + "nodeId": "com.sun.jersey:jersey-json@1.13", + "pkgId": "com.sun.jersey:jersey-json@1.13", + "deps": [ + { + "nodeId": "org.codehaus.jackson:jackson-xc@1.9.13" + }, + { + "nodeId": "org.codehaus.jettison:jettison@1.1" + }, + { + "nodeId": "org.codehaus.jackson:jackson-jaxrs@1.9.13" + } + ] + }, + { + "nodeId": "org.codehaus.jackson:jackson-xc@1.9.13", + "pkgId": "org.codehaus.jackson:jackson-xc@1.9.13", + "deps": [] + }, + { + "nodeId": "org.codehaus.jettison:jettison@1.1", + "pkgId": "org.codehaus.jettison:jettison@1.1", + "deps": [] + }, + { + "nodeId": "stax:stax-api@1.0.1", + "pkgId": "stax:stax-api@1.0.1", + "deps": [] + }, + { + "nodeId": "org.codehaus.jackson:jackson-jaxrs@1.9.13", + "pkgId": "org.codehaus.jackson:jackson-jaxrs@1.9.13", + "deps": [] + }, + { + "nodeId": "com.sun.jersey:jersey-core@1.13", + "pkgId": "com.sun.jersey:jersey-core@1.13", + "deps": [] + }, + { + "nodeId": "org.mortbay.jetty:jetty-sslengine@6.1.26", + "pkgId": "org.mortbay.jetty:jetty-sslengine@6.1.26", + "deps": [] + }, + { + "nodeId": "commons-cli:commons-cli@1.3.1", + "pkgId": "commons-cli:commons-cli@1.3.1", + "deps": [] + }, + { + "nodeId": "org.apache.hadoop:hadoop-auth@2.7.7", + "pkgId": "org.apache.hadoop:hadoop-auth@2.7.7", + "deps": [ + { + "nodeId": "org.apache.directory.server:apacheds-kerberos-codec@2.0.0-M15" + }, + { + "nodeId": "org.apache.curator:curator-framework@2.7.1" + } + ] + }, + { + "nodeId": "org.apache.directory.server:apacheds-kerberos-codec@2.0.0-M15", + "pkgId": "org.apache.directory.server:apacheds-kerberos-codec@2.0.0-M15", + "deps": [ + { + "nodeId": "org.apache.directory.api:api-asn1-api@1.0.0-M20" + }, + { + "nodeId": "org.apache.directory.api:api-util@1.0.0-M20" + }, + { + "nodeId": "org.apache.directory.server:apacheds-i18n@2.0.0-M15" + } + ] + }, + { + "nodeId": "org.apache.directory.api:api-asn1-api@1.0.0-M20", + "pkgId": "org.apache.directory.api:api-asn1-api@1.0.0-M20", + "deps": [] + }, + { + "nodeId": "org.apache.directory.api:api-util@1.0.0-M20", + "pkgId": "org.apache.directory.api:api-util@1.0.0-M20", + "deps": [] + }, + { + "nodeId": "org.apache.directory.server:apacheds-i18n@2.0.0-M15", + "pkgId": "org.apache.directory.server:apacheds-i18n@2.0.0-M15", + "deps": [] + }, + { + "nodeId": "org.apache.curator:curator-framework@2.7.1", + "pkgId": "org.apache.curator:curator-framework@2.7.1", + "deps": [ + { + "nodeId": "org.apache.curator:curator-client@2.7.1" + } + ] + }, + { + "nodeId": "javax.servlet.jsp:jsp-api@2.1", + "pkgId": "javax.servlet.jsp:jsp-api@2.1", + "deps": [] + }, + { + "nodeId": "org.apache.curator:curator-recipes@2.7.1", + "pkgId": "org.apache.curator:curator-recipes@2.7.1", + "deps": [ + { + "nodeId": "org.apache.curator:curator-framework@2.7.1" + } + ] + }, + { + "nodeId": "commons-httpclient:commons-httpclient@3.1", + "pkgId": "commons-httpclient:commons-httpclient@3.1", + "deps": [] + }, + { + "nodeId": "javax.servlet:servlet-api@2.5", + "pkgId": "javax.servlet:servlet-api@2.5", + "deps": [] + }, + { + "nodeId": "com.sun.jersey:jersey-server@1.9", + "pkgId": "com.sun.jersey:jersey-server@1.9", + "deps": [ + { + "nodeId": "asm:asm@3.1" + } + ] + }, + { + "nodeId": "asm:asm@3.1", + "pkgId": "asm:asm@3.1", + "deps": [] + }, + { + "nodeId": "org.apache.hadoop:hadoop-annotations@2.7.7", + "pkgId": "org.apache.hadoop:hadoop-annotations@2.7.7", + "deps": [] + }, + { + "nodeId": "org.apache.hadoop:hadoop-mapreduce-client-core@2.7.7", + "pkgId": "org.apache.hadoop:hadoop-mapreduce-client-core@2.7.7", + "deps": [ + { + "nodeId": "org.apache.hadoop:hadoop-yarn-common@2.7.7" + }, + { + "nodeId": "io.netty:netty@3.7.0.Final" + } + ] + }, + { + "nodeId": "com.google.inject.extensions:guice-servlet@3.0", + "pkgId": "com.google.inject.extensions:guice-servlet@3.0", + "deps": [] + }, + { + "nodeId": "com.google.inject:guice@4.2.2", + "pkgId": "com.google.inject:guice@4.2.2", + "deps": [ + { + "nodeId": "aopalliance:aopalliance@1.0" + }, + { + "nodeId": "javax.inject:javax.inject@1" + } + ] + }, + { + "nodeId": "aopalliance:aopalliance@1.0", + "pkgId": "aopalliance:aopalliance@1.0", + "deps": [] + }, + { + "nodeId": "javax.inject:javax.inject@1", + "pkgId": "javax.inject:javax.inject@1", + "deps": [] + }, + { + "nodeId": "org.apache.hadoop:hadoop-yarn-common@2.7.7", + "pkgId": "org.apache.hadoop:hadoop-yarn-common@2.7.7", + "deps": [ + { + "nodeId": "org.apache.hadoop:hadoop-yarn-api@2.7.7" + }, + { + "nodeId": "com.sun.jersey:jersey-json@1.13" + }, + { + "nodeId": "org.codehaus.jackson:jackson-xc@1.9.13" + }, + { + "nodeId": "commons-cli:commons-cli@1.3.1" + }, + { + "nodeId": "com.sun.jersey:jersey-client@1.13" + }, + { + "nodeId": "org.codehaus.jackson:jackson-jaxrs@1.9.13" + }, + { + "nodeId": "com.sun.jersey.contribs:jersey-guice@1.9" + }, + { + "nodeId": "javax.servlet:servlet-api@2.5" + } + ] + }, + { + "nodeId": "org.apache.hadoop:hadoop-yarn-api@2.7.7", + "pkgId": "org.apache.hadoop:hadoop-yarn-api@2.7.7", + "deps": [] + }, + { + "nodeId": "com.sun.jersey:jersey-client@1.13", + "pkgId": "com.sun.jersey:jersey-client@1.13", + "deps": [] + }, + { + "nodeId": "com.sun.jersey.contribs:jersey-guice@1.9", + "pkgId": "com.sun.jersey.contribs:jersey-guice@1.9", + "deps": [ + { + "nodeId": "javax.inject:javax.inject@1" + } + ] + }, + { + "nodeId": "org.apache.parquet:parquet-avro@1.12.2", + "pkgId": "org.apache.parquet:parquet-avro@1.12.2", + "deps": [] + }, + { + "nodeId": "org.apache.parquet:parquet-column@1.12.2", + "pkgId": "org.apache.parquet:parquet-column@1.12.2", + "deps": [ + { + "nodeId": "org.apache.parquet:parquet-encoding@1.12.2" + } + ] + }, + { + "nodeId": "org.apache.parquet:parquet-common@1.12.2", + "pkgId": "org.apache.parquet:parquet-common@1.12.2", + "deps": [ + { + "nodeId": "org.apache.yetus:audience-annotations@0.12.0" + } + ] + }, + { + "nodeId": "org.apache.parquet:parquet-format-structures@1.12.2", + "pkgId": "org.apache.parquet:parquet-format-structures@1.12.2", + "deps": [] + }, + { + "nodeId": "org.apache.yetus:audience-annotations@0.12.0", + "pkgId": "org.apache.yetus:audience-annotations@0.12.0", + "deps": [] + }, + { + "nodeId": "org.apache.parquet:parquet-encoding@1.12.2", + "pkgId": "org.apache.parquet:parquet-encoding@1.12.2", + "deps": [] + }, + { + "nodeId": "org.apache.parquet:parquet-hadoop@1.12.2", + "pkgId": "org.apache.parquet:parquet-hadoop@1.12.2", + "deps": [ + { + "nodeId": "org.apache.parquet:parquet-jackson@1.12.2" + }, + { + "nodeId": "commons-pool:commons-pool@1.6" + } + ] + }, + { + "nodeId": "org.apache.parquet:parquet-jackson@1.12.2", + "pkgId": "org.apache.parquet:parquet-jackson@1.12.2", + "deps": [] + }, + { + "nodeId": "commons-pool:commons-pool@1.6", + "pkgId": "commons-pool:commons-pool@1.6", + "deps": [] + }, + { + "nodeId": "//warehouses/databricks:main@bazel", + "pkgId": "//warehouses/databricks:main@bazel", + "deps": [ + { + "nodeId": "//json:default_object_mapper@bazel" + }, + { + "nodeId": "//port_forwarder:databricks@bazel" + }, + { + "nodeId": "//warehouses/common:observability@bazel" + }, + { + "nodeId": "//warehouses/common:staging_azure@bazel" + }, + { + "nodeId": "//warehouses/common:staging_s3@bazel" + }, + { + "nodeId": "//warehouses/common:tasks@bazel" + }, + { + "nodeId": "//warehouses/common-local:writer_avro_base@bazel" + }, + { + "nodeId": "//warehouses/common-local:writer_parquet@bazel" + } + ] + }, + { + "nodeId": "//port_forwarder:databricks@bazel", + "pkgId": "//port_forwarder:databricks@bazel", + "deps": [ + { + "nodeId": "//:databricks_jdbc@bazel" + }, + { + "nodeId": "//aws:instance_id@bazel" + } + ] + }, + { + "nodeId": "//warehouses/mysql:main@bazel", + "pkgId": "//warehouses/mysql:main@bazel", + "deps": [ + { + "nodeId": "//port_forwarder:mysql@bazel" + }, + { + "nodeId": "//warehouses/common:tasks@bazel" + }, + { + "nodeId": "//warehouses/common-local:writer_csv@bazel" + } + ] + }, + { + "nodeId": "//port_forwarder:mysql@bazel", + "pkgId": "//port_forwarder:mysql@bazel", + "deps": [ + { + "nodeId": "//aws:instance_id@bazel" + } + ] + }, + { + "nodeId": "//warehouses/panoply:main@bazel", + "pkgId": "//warehouses/panoply:main@bazel", + "deps": [ + { + "nodeId": "//port_forwarder:tunnel_data_source@bazel" + }, + { + "nodeId": "//warehouses/common:tasks@bazel" + }, + { + "nodeId": "//warehouses/redshift:main@bazel" + } + ] + }, + { + "nodeId": "//warehouses/redshift:main@bazel", + "pkgId": "//warehouses/redshift:main@bazel", + "deps": [ + { + "nodeId": "//ip_utils:main@bazel" + }, + { + "nodeId": "//port_forwarder:tunnel_data_source@bazel" + }, + { + "nodeId": "//warehouses/common:observability@bazel" + }, + { + "nodeId": "//warehouses/common:staging_s3@bazel" + }, + { + "nodeId": "//warehouses/common:tasks@bazel" + }, + { + "nodeId": "io.netty:netty-all@4.1.45.Final" + }, + { + "nodeId": "@redshift_jdbc42//jar:jar@bazel" + } + ] + }, + { + "nodeId": "io.netty:netty-all@4.1.45.Final", + "pkgId": "io.netty:netty-all@4.1.45.Final", + "deps": [] + }, + { + "nodeId": "@redshift_jdbc42//jar:jar@bazel", + "pkgId": "@redshift_jdbc42//jar:jar@bazel", + "deps": [] + }, + { + "nodeId": "//warehouses/periscope:main@bazel", + "pkgId": "//warehouses/periscope:main@bazel", + "deps": [ + { + "nodeId": "//port_forwarder:tunnel_data_source@bazel" + }, + { + "nodeId": "//warehouses/redshift:main@bazel" + } + ] + }, + { + "nodeId": "//warehouses/postgres:main@bazel", + "pkgId": "//warehouses/postgres:main@bazel", + "deps": [ + { + "nodeId": "//integrations/db:setup_form_utils@bazel" + }, + { + "nodeId": "//port_forwarder:postgres@bazel" + }, + { + "nodeId": "//warehouses/common:observability@bazel" + }, + { + "nodeId": "//warehouses/common:tasks@bazel" + }, + { + "nodeId": "//warehouses/common-local:writer_csv@bazel" + } + ] + }, + { + "nodeId": "//integrations/db:setup_form_utils@bazel", + "pkgId": "//integrations/db:setup_form_utils@bazel", + "deps": [ + { + "nodeId": "//integrations/hvr/hvr_tool:main@bazel" + }, + { + "nodeId": "//integrations/speed_test:utils@bazel" + }, + { + "nodeId": "//ip_utils:main@bazel" + }, + { + "nodeId": "//port_forwarder:tunnel_data_source@bazel" + } + ] + }, + { + "nodeId": "//port_forwarder:postgres@bazel", + "pkgId": "//port_forwarder:postgres@bazel", + "deps": [ + { + "nodeId": "//aws:instance_id@bazel" + } + ] + }, + { + "nodeId": "//warehouses/s3_data_lake:main@bazel", + "pkgId": "//warehouses/s3_data_lake:main@bazel", + "deps": [ + { + "nodeId": "//port_forwarder:tunnel_data_source@bazel" + }, + { + "nodeId": "//warehouses/common-local:writer_csv@bazel" + }, + { + "nodeId": "//warehouses/redshift:main@bazel" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-glue@1.12.84" + }, + { + "nodeId": "io.netty:netty-all@4.1.45.Final" + }, + { + "nodeId": "org.apache.iceberg:iceberg-data@0.13.1" + }, + { + "nodeId": "org.apache.iceberg:iceberg-parquet@0.13.1" + } + ] + }, + { + "nodeId": "org.apache.iceberg:iceberg-api@0.13.1", + "pkgId": "org.apache.iceberg:iceberg-api@0.13.1", + "deps": [] + }, + { + "nodeId": "com.github.stephenc.findbugs:findbugs-annotations@1.3.9-1", + "pkgId": "com.github.stephenc.findbugs:findbugs-annotations@1.3.9-1", + "deps": [] + }, + { + "nodeId": "org.apache.iceberg:iceberg-bundled-guava@0.13.1", + "pkgId": "org.apache.iceberg:iceberg-bundled-guava@0.13.1", + "deps": [] + }, + { + "nodeId": "org.apache.iceberg:iceberg-core@0.13.1", + "pkgId": "org.apache.iceberg:iceberg-core@0.13.1", + "deps": [ + { + "nodeId": "org.roaringbitmap:RoaringBitmap@0.9.22" + }, + { + "nodeId": "com.github.ben-manes.caffeine:caffeine@2.8.4" + }, + { + "nodeId": "org.apache.iceberg:iceberg-common@0.13.1" + } + ] + }, + { + "nodeId": "org.roaringbitmap:RoaringBitmap@0.9.22", + "pkgId": "org.roaringbitmap:RoaringBitmap@0.9.22", + "deps": [ + { + "nodeId": "org.roaringbitmap:shims@0.9.22" + } + ] + }, + { + "nodeId": "org.roaringbitmap:shims@0.9.22", + "pkgId": "org.roaringbitmap:shims@0.9.22", + "deps": [] + }, + { + "nodeId": "com.github.ben-manes.caffeine:caffeine@2.8.4", + "pkgId": "com.github.ben-manes.caffeine:caffeine@2.8.4", + "deps": [] + }, + { + "nodeId": "org.apache.iceberg:iceberg-common@0.13.1", + "pkgId": "org.apache.iceberg:iceberg-common@0.13.1", + "deps": [] + }, + { + "nodeId": "org.apache.iceberg:iceberg-data@0.13.1", + "pkgId": "org.apache.iceberg:iceberg-data@0.13.1", + "deps": [ + { + "nodeId": "org.apache.orc:orc-core:jar:nohive@1.7.2" + } + ] + }, + { + "nodeId": "org.apache.orc:orc-core:jar:nohive@1.7.2", + "pkgId": "org.apache.orc:orc-core:jar:nohive@1.7.2", + "deps": [ + { + "nodeId": "io.airlift:aircompressor@0.9" + }, + { + "nodeId": "org.apache.orc:orc-shims@1.7.2" + }, + { + "nodeId": "org.threeten:threeten-extra@0.9" + } + ] + }, + { + "nodeId": "io.airlift:aircompressor@0.9", + "pkgId": "io.airlift:aircompressor@0.9", + "deps": [ + { + "nodeId": "io.airlift:slice@0.10" + } + ] + }, + { + "nodeId": "io.airlift:slice@0.10", + "pkgId": "io.airlift:slice@0.10", + "deps": [] + }, + { + "nodeId": "org.apache.orc:orc-shims@1.7.2", + "pkgId": "org.apache.orc:orc-shims@1.7.2", + "deps": [] + }, + { + "nodeId": "org.threeten:threeten-extra@0.9", + "pkgId": "org.threeten:threeten-extra@0.9", + "deps": [] + }, + { + "nodeId": "org.apache.iceberg:iceberg-parquet@0.13.1", + "pkgId": "org.apache.iceberg:iceberg-parquet@0.13.1", + "deps": [ + { + "nodeId": "org.apache.iceberg:iceberg-common@0.13.1" + } + ] + }, + { + "nodeId": "//warehouses/snowflake:main@bazel", + "pkgId": "//warehouses/snowflake:main@bazel", + "deps": [ + { + "nodeId": "//json:default_object_mapper@bazel" + }, + { + "nodeId": "//port_forwarder:snowflake@bazel" + }, + { + "nodeId": "//warehouses/common:observability@bazel" + }, + { + "nodeId": "//warehouses/common:staging_azure@bazel" + }, + { + "nodeId": "//warehouses/common:staging_gcs@bazel" + }, + { + "nodeId": "//warehouses/common:staging_s3@bazel" + }, + { + "nodeId": "//warehouses/common:tasks@bazel" + } + ] + }, + { + "nodeId": "//port_forwarder:snowflake@bazel", + "pkgId": "//port_forwarder:snowflake@bazel", + "deps": [ + { + "nodeId": "//aws:instance_id@bazel" + } + ] + }, + { + "nodeId": "//warehouses/sql_server:main@bazel", + "pkgId": "//warehouses/sql_server:main@bazel", + "deps": [ + { + "nodeId": "//ip_utils:main@bazel" + }, + { + "nodeId": "//json:default_object_mapper@bazel" + }, + { + "nodeId": "//port_forwarder:sqlserver@bazel" + }, + { + "nodeId": "//warehouses/common:tasks@bazel" + }, + { + "nodeId": "//warehouses/common-local:writer_csv@bazel" + } + ] + }, + { + "nodeId": "//port_forwarder:sqlserver@bazel", + "pkgId": "//port_forwarder:sqlserver@bazel", + "deps": [ + { + "nodeId": "//aws:instance_id@bazel" + } + ] + }, + { + "nodeId": "//integrations/adjust:main@bazel", + "pkgId": "//integrations/adjust:main@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/adobe_analytics:main@bazel", + "pkgId": "//integrations/adobe_analytics:main@bazel", + "deps": [ + { + "nodeId": "com.google.api-ads:adwords-axis@4.4.0" + } + ] + }, + { + "nodeId": "//integrations/bidirectional_cube:main@bazel", + "pkgId": "//integrations/bidirectional_cube:main@bazel", + "deps": [ + { + "nodeId": "//utils/threading:main@bazel" + } + ] + }, + { + "nodeId": "//integrations/priority_sync:main@bazel", + "pkgId": "//integrations/priority_sync:main@bazel", + "deps": [] + }, + { + "nodeId": "com.google.api-ads:ads-lib@4.4.0", + "pkgId": "com.google.api-ads:ads-lib@4.4.0", + "deps": [ + { + "nodeId": "com.google.inject.extensions:guice-multibindings@4.0" + }, + { + "nodeId": "com.google.inject.extensions:guice-assistedinject@4.0" + }, + { + "nodeId": "net.sf.opencsv:opencsv@1.8" + }, + { + "nodeId": "com.beust:jcommander@1.82" + } + ] + }, + { + "nodeId": "com.google.inject.extensions:guice-multibindings@4.0", + "pkgId": "com.google.inject.extensions:guice-multibindings@4.0", + "deps": [] + }, + { + "nodeId": "com.google.inject.extensions:guice-assistedinject@4.0", + "pkgId": "com.google.inject.extensions:guice-assistedinject@4.0", + "deps": [] + }, + { + "nodeId": "net.sf.opencsv:opencsv@1.8", + "pkgId": "net.sf.opencsv:opencsv@1.8", + "deps": [] + }, + { + "nodeId": "commons-beanutils:commons-beanutils@1.9.2", + "pkgId": "commons-beanutils:commons-beanutils@1.9.2", + "deps": [] + }, + { + "nodeId": "com.beust:jcommander@1.82", + "pkgId": "com.beust:jcommander@1.82", + "deps": [] + }, + { + "nodeId": "com.google.api-ads:adwords-axis@4.4.0", + "pkgId": "com.google.api-ads:adwords-axis@4.4.0", + "deps": [ + { + "nodeId": "com.google.api-ads:ads-lib-axis@4.4.0" + } + ] + }, + { + "nodeId": "com.google.api-ads:ads-lib-axis@4.4.0", + "pkgId": "com.google.api-ads:ads-lib-axis@4.4.0", + "deps": [ + { + "nodeId": "javax.xml:jaxrpc-api@1.1" + }, + { + "nodeId": "commons-discovery:commons-discovery@0.5" + }, + { + "nodeId": "org.apache.axis:axis@1.4" + } + ] + }, + { + "nodeId": "javax.xml:jaxrpc-api@1.1", + "pkgId": "javax.xml:jaxrpc-api@1.1", + "deps": [] + }, + { + "nodeId": "wsdl4j:wsdl4j@1.6.2", + "pkgId": "wsdl4j:wsdl4j@1.6.2", + "deps": [] + }, + { + "nodeId": "commons-discovery:commons-discovery@0.5", + "pkgId": "commons-discovery:commons-discovery@0.5", + "deps": [] + }, + { + "nodeId": "org.apache.axis:axis@1.4", + "pkgId": "org.apache.axis:axis@1.4", + "deps": [] + }, + { + "nodeId": "//integrations/adobe_analytics_data_feed:main@bazel", + "pkgId": "//integrations/adobe_analytics_data_feed:main@bazel", + "deps": [ + { + "nodeId": "//integrations/ftp:main@bazel" + } + ] + }, + { + "nodeId": "//integrations/ftp:main@bazel", + "pkgId": "//integrations/ftp:main@bazel", + "deps": [ + { + "nodeId": "//ip_utils:main@bazel" + }, + { + "nodeId": "org.awaitility:awaitility@4.0.3" + } + ] + }, + { + "nodeId": "//integrations/file:main@bazel", + "pkgId": "//integrations/file:main@bazel", + "deps": [ + { + "nodeId": "//core_implementation:main@bazel" + }, + { + "nodeId": "//utils/fsort:main@bazel" + }, + { + "nodeId": "com.fasterxml.util:java-merge-sort@1.0.0" + }, + { + "nodeId": "com.monitorjbl:xlsx-streamer@1.2.1" + } + ] + }, + { + "nodeId": "com.fasterxml.util:java-merge-sort@1.0.0", + "pkgId": "com.fasterxml.util:java-merge-sort@1.0.0", + "deps": [] + }, + { + "nodeId": "com.monitorjbl:xlsx-streamer@1.2.1", + "pkgId": "com.monitorjbl:xlsx-streamer@1.2.1", + "deps": [ + { + "nodeId": "org.apache.poi:ooxml-schemas@1.3" + }, + { + "nodeId": "com.rackspace.apache:xerces2-xsd11@2.11.1" + }, + { + "nodeId": "xml-apis:xml-apis@1.4.01" + } + ] + }, + { + "nodeId": "org.apache.poi:ooxml-schemas@1.3", + "pkgId": "org.apache.poi:ooxml-schemas@1.3", + "deps": [ + { + "nodeId": "org.apache.xmlbeans:xmlbeans@2.6.0" + } + ] + }, + { + "nodeId": "org.apache.xmlbeans:xmlbeans@2.6.0", + "pkgId": "org.apache.xmlbeans:xmlbeans@2.6.0", + "deps": [] + }, + { + "nodeId": "org.apache.poi:poi-ooxml@3.17", + "pkgId": "org.apache.poi:poi-ooxml@3.17", + "deps": [ + { + "nodeId": "com.github.virtuald:curvesapi@1.04" + }, + { + "nodeId": "org.apache.poi:poi-ooxml-schemas@3.17" + } + ] + }, + { + "nodeId": "com.github.virtuald:curvesapi@1.04", + "pkgId": "com.github.virtuald:curvesapi@1.04", + "deps": [] + }, + { + "nodeId": "org.apache.poi:poi@3.17", + "pkgId": "org.apache.poi:poi@3.17", + "deps": [] + }, + { + "nodeId": "org.apache.poi:poi-ooxml-schemas@3.17", + "pkgId": "org.apache.poi:poi-ooxml-schemas@3.17", + "deps": [ + { + "nodeId": "org.apache.xmlbeans:xmlbeans@2.6.0" + } + ] + }, + { + "nodeId": "com.rackspace.apache:xerces2-xsd11@2.11.1", + "pkgId": "com.rackspace.apache:xerces2-xsd11@2.11.1", + "deps": [ + { + "nodeId": "com.rackspace.eclipse.webtools.sourceediting:org.eclipse.wst.xml.xpath2.processor@2.1.100" + }, + { + "nodeId": "xml-resolver:xml-resolver@1.2" + } + ] + }, + { + "nodeId": "com.rackspace.eclipse.webtools.sourceediting:org.eclipse.wst.xml.xpath2.processor@2.1.100", + "pkgId": "com.rackspace.eclipse.webtools.sourceediting:org.eclipse.wst.xml.xpath2.processor@2.1.100", + "deps": [ + { + "nodeId": "edu.princeton.cup:java-cup@10k" + } + ] + }, + { + "nodeId": "edu.princeton.cup:java-cup@10k", + "pkgId": "edu.princeton.cup:java-cup@10k", + "deps": [] + }, + { + "nodeId": "xml-resolver:xml-resolver@1.2", + "pkgId": "xml-resolver:xml-resolver@1.2", + "deps": [] + }, + { + "nodeId": "xml-apis:xml-apis@1.4.01", + "pkgId": "xml-apis:xml-apis@1.4.01", + "deps": [] + }, + { + "nodeId": "org.awaitility:awaitility@4.0.3", + "pkgId": "org.awaitility:awaitility@4.0.3", + "deps": [] + }, + { + "nodeId": "//integrations/adp_workforce_now:main@bazel", + "pkgId": "//integrations/adp_workforce_now:main@bazel", + "deps": [] + }, + { + "nodeId": "//ecomm:main@bazel", + "pkgId": "//ecomm:main@bazel", + "deps": [] + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-xml-provider@2.9.8", + "pkgId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-xml-provider@2.9.8", + "deps": [ + { + "nodeId": "org.codehaus.woodstox:woodstox-core-asl@4.2.0" + } + ] + }, + { + "nodeId": "org.codehaus.woodstox:woodstox-core-asl@4.2.0", + "pkgId": "org.codehaus.woodstox:woodstox-core-asl@4.2.0", + "deps": [] + }, + { + "nodeId": "//integrations/adroll:main@bazel", + "pkgId": "//integrations/adroll:main@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/adwords:main@bazel", + "pkgId": "//integrations/adwords:main@bazel", + "deps": [ + { + "nodeId": "//utils/threading:main@bazel" + }, + { + "nodeId": "com.google.api-ads:adwords-axis@4.4.0" + }, + { + "nodeId": "com.google.api-ads:google-ads@19.0.0" + }, + { + "nodeId": "com.google.api-ads:google-ads-stubs-v11@19.0.0" + } + ] + }, + { + "nodeId": "//integrations/cube:main@bazel", + "pkgId": "//integrations/cube:main@bazel", + "deps": [] + }, + { + "nodeId": "com.google.api-ads:google-ads@19.0.0", + "pkgId": "com.google.api-ads:google-ads@19.0.0", + "deps": [ + { + "nodeId": "com.google.api-ads:google-ads-codegen@19.0.0" + } + ] + }, + { + "nodeId": "com.google.auto.service:auto-service@1.0-rc2", + "pkgId": "com.google.auto.service:auto-service@1.0-rc2", + "deps": [ + { + "nodeId": "com.google.auto:auto-common@0.10" + } + ] + }, + { + "nodeId": "com.google.auto:auto-common@0.10", + "pkgId": "com.google.auto:auto-common@0.10", + "deps": [] + }, + { + "nodeId": "com.google.api-ads:google-ads-codegen@19.0.0", + "pkgId": "com.google.api-ads:google-ads-codegen@19.0.0", + "deps": [ + { + "nodeId": "com.google.api-ads:google-ads-stubs-v11@19.0.0" + }, + { + "nodeId": "com.google.api-ads:google-ads-stubs-v10@19.0.0" + }, + { + "nodeId": "com.google.api-ads:google-ads-stubs-v9@19.0.0" + }, + { + "nodeId": "com.squareup:javapoet@1.11.1" + }, + { + "nodeId": "org.reflections:reflections@0.9.12" + } + ] + }, + { + "nodeId": "com.google.api-ads:google-ads-stubs-v11@19.0.0", + "pkgId": "com.google.api-ads:google-ads-stubs-v11@19.0.0", + "deps": [] + }, + { + "nodeId": "com.google.api-ads:google-ads-stubs-lib@19.0.0", + "pkgId": "com.google.api-ads:google-ads-stubs-lib@19.0.0", + "deps": [] + }, + { + "nodeId": "com.google.api-ads:google-ads-stubs-v10@19.0.0", + "pkgId": "com.google.api-ads:google-ads-stubs-v10@19.0.0", + "deps": [] + }, + { + "nodeId": "com.google.api-ads:google-ads-stubs-v9@19.0.0", + "pkgId": "com.google.api-ads:google-ads-stubs-v9@19.0.0", + "deps": [] + }, + { + "nodeId": "com.squareup:javapoet@1.11.1", + "pkgId": "com.squareup:javapoet@1.11.1", + "deps": [] + }, + { + "nodeId": "org.reflections:reflections@0.9.12", + "pkgId": "org.reflections:reflections@0.9.12", + "deps": [] + }, + { + "nodeId": "//integrations/google_ads:main@bazel", + "pkgId": "//integrations/google_ads:main@bazel", + "deps": [ + { + "nodeId": "//integrations/adwords:main@bazel" + } + ] + }, + { + "nodeId": "//integrations/airtable:main@bazel", + "pkgId": "//integrations/airtable:main@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/amazon_ads:main@bazel", + "pkgId": "//integrations/amazon_ads:main@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/amplitude:main@bazel", + "pkgId": "//integrations/amplitude:main@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/anaplan:main@bazel", + "pkgId": "//integrations/anaplan:main@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/apple_search_ads:main@bazel", + "pkgId": "//integrations/apple_search_ads:main@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/appsflyer:main@bazel", + "pkgId": "//integrations/appsflyer:main@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/asana:main@bazel", + "pkgId": "//integrations/asana:main@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/aws_cloudtrail:main@bazel", + "pkgId": "//integrations/aws_cloudtrail:main@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/aws_inventory:main@bazel", + "pkgId": "//integrations/aws_inventory:main@bazel", + "deps": [ + { + "nodeId": "com.amazonaws:aws-java-sdk-cloudtrail@1.12.84" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-config@1.12.84" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-elasticloadbalancingv2@1.12.84" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-iam@1.12.84" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-route53@1.12.84" + } + ] + }, + { + "nodeId": "//integrations/azure_blob_storage:main@bazel", + "pkgId": "//integrations/azure_blob_storage:main@bazel", + "deps": [ + { + "nodeId": "//ip_utils:main@bazel" + } + ] + }, + { + "nodeId": "//integrations/azure_consumer_file:main@bazel", + "pkgId": "//integrations/azure_consumer_file:main@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/azure_service_bus:main@bazel", + "pkgId": "//integrations/azure_service_bus:main@bazel", + "deps": [ + { + "nodeId": "//integrations/kafka:main@bazel" + }, + { + "nodeId": "//ip_utils:main@bazel" + }, + { + "nodeId": "//shaded_dependencies/azure:azure_core_shaded@bazel" + }, + { + "nodeId": "//shaded_dependencies/azure:azure_messaging_servicebus_shaded@bazel" + }, + { + "nodeId": "//shaded_dependencies/azure:microsoft_azure_servicebus_shaded@bazel" + }, + { + "nodeId": "com.azure:azure-core-amqp@2.3.3" + }, + { + "nodeId": "com.azure:azure-core-http-netty@1.11.1" + } + ] + }, + { + "nodeId": "//integrations/kafka:main@bazel", + "pkgId": "//integrations/kafka:main@bazel", + "deps": [ + { + "nodeId": "//ip_utils:main@bazel" + }, + { + "nodeId": "//shaded_dependencies/azure:azure_messaging_eventhubs_shaded@bazel" + }, + { + "nodeId": "io.confluent:kafka-protobuf-serializer@5.5.1" + }, + { + "nodeId": "org.apache.kafka:kafka-clients@2.1.0" + } + ] + }, + { + "nodeId": "//shaded_dependencies/azure:azure_messaging_eventhubs_shaded@bazel", + "pkgId": "//shaded_dependencies/azure:azure_messaging_eventhubs_shaded@bazel", + "deps": [] + }, + { + "nodeId": "io.confluent:kafka-protobuf-serializer@5.5.1", + "pkgId": "io.confluent:kafka-protobuf-serializer@5.5.1", + "deps": [ + { + "nodeId": "io.confluent:kafka-schema-serializer@5.5.1" + }, + { + "nodeId": "io.confluent:kafka-protobuf-provider@5.5.1" + } + ] + }, + { + "nodeId": "io.confluent:kafka-schema-serializer@5.5.1", + "pkgId": "io.confluent:kafka-schema-serializer@5.5.1", + "deps": [ + { + "nodeId": "io.confluent:common-config@5.5.1" + } + ] + }, + { + "nodeId": "io.confluent:common-config@5.5.1", + "pkgId": "io.confluent:common-config@5.5.1", + "deps": [] + }, + { + "nodeId": "io.confluent:common-utils@5.5.1", + "pkgId": "io.confluent:common-utils@5.5.1", + "deps": [] + }, + { + "nodeId": "io.confluent:kafka-schema-registry-client@5.5.1", + "pkgId": "io.confluent:kafka-schema-registry-client@5.5.1", + "deps": [ + { + "nodeId": "org.apache.kafka:kafka-clients@2.1.0" + }, + { + "nodeId": "javax.ws.rs:javax.ws.rs-api@2.1.1" + }, + { + "nodeId": "io.confluent:common-config@5.5.1" + }, + { + "nodeId": "io.swagger:swagger-annotations@1.6.0" + } + ] + }, + { + "nodeId": "org.apache.kafka:kafka-clients@2.1.0", + "pkgId": "org.apache.kafka:kafka-clients@2.1.0", + "deps": [ + { + "nodeId": "org.lz4:lz4-java@1.8.0" + } + ] + }, + { + "nodeId": "org.lz4:lz4-java@1.8.0", + "pkgId": "org.lz4:lz4-java@1.8.0", + "deps": [] + }, + { + "nodeId": "io.confluent:kafka-protobuf-provider@5.5.1", + "pkgId": "io.confluent:kafka-protobuf-provider@5.5.1", + "deps": [ + { + "nodeId": "com.squareup.wire:wire-schema@3.2.2" + } + ] + }, + { + "nodeId": "com.squareup.wire:wire-schema@3.2.2", + "pkgId": "com.squareup.wire:wire-schema@3.2.2", + "deps": [ + { + "nodeId": "com.squareup.wire:wire-runtime@3.2.2" + }, + { + "nodeId": "org.jetbrains.kotlin:kotlin-stdlib-jdk8@1.3.71" + } + ] + }, + { + "nodeId": "com.squareup.wire:wire-runtime@3.2.2", + "pkgId": "com.squareup.wire:wire-runtime@3.2.2", + "deps": [] + }, + { + "nodeId": "org.jetbrains.kotlin:kotlin-stdlib-jdk8@1.3.71", + "pkgId": "org.jetbrains.kotlin:kotlin-stdlib-jdk8@1.3.71", + "deps": [ + { + "nodeId": "org.jetbrains.kotlin:kotlin-stdlib-jdk7@1.3.71" + } + ] + }, + { + "nodeId": "org.jetbrains.kotlin:kotlin-stdlib-jdk7@1.3.71", + "pkgId": "org.jetbrains.kotlin:kotlin-stdlib-jdk7@1.3.71", + "deps": [] + }, + { + "nodeId": "//shaded_dependencies/azure:azure_core_shaded@bazel", + "pkgId": "//shaded_dependencies/azure:azure_core_shaded@bazel", + "deps": [] + }, + { + "nodeId": "//shaded_dependencies/azure:azure_messaging_servicebus_shaded@bazel", + "pkgId": "//shaded_dependencies/azure:azure_messaging_servicebus_shaded@bazel", + "deps": [] + }, + { + "nodeId": "//shaded_dependencies/azure:microsoft_azure_servicebus_shaded@bazel", + "pkgId": "//shaded_dependencies/azure:microsoft_azure_servicebus_shaded@bazel", + "deps": [] + }, + { + "nodeId": "com.azure:azure-core-amqp@2.3.3", + "pkgId": "com.azure:azure-core-amqp@2.3.3", + "deps": [ + { + "nodeId": "com.azure:azure-core@1.21.0" + }, + { + "nodeId": "com.microsoft.azure:qpid-proton-j-extensions@1.2.4" + }, + { + "nodeId": "org.apache.qpid:proton-j@0.33.8" + } + ] + }, + { + "nodeId": "com.azure:azure-core@1.21.0", + "pkgId": "com.azure:azure-core@1.21.0", + "deps": [ + { + "nodeId": "io.netty:netty-tcnative-boringssl-static@2.0.43.Final" + }, + { + "nodeId": "org.slf4j:slf4j-api@1.7.32" + }, + { + "nodeId": "com.fasterxml.jackson.dataformat:jackson-dataformat-xml@2.12.5" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.12.5" + } + ] + }, + { + "nodeId": "io.projectreactor:reactor-core@3.4.10", + "pkgId": "io.projectreactor:reactor-core@3.4.10", + "deps": [ + { + "nodeId": "org.reactivestreams:reactive-streams@1.0.3" + } + ] + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.12.5", + "pkgId": "com.fasterxml.jackson.core:jackson-annotations@2.12.5", + "deps": [] + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.12.5", + "pkgId": "com.fasterxml.jackson.core:jackson-databind@2.12.5", + "deps": [] + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.12.5", + "pkgId": "com.fasterxml.jackson.core:jackson-core@2.12.5", + "deps": [] + }, + { + "nodeId": "io.netty:netty-tcnative-boringssl-static@2.0.43.Final", + "pkgId": "io.netty:netty-tcnative-boringssl-static@2.0.43.Final", + "deps": [] + }, + { + "nodeId": "org.slf4j:slf4j-api@1.7.32", + "pkgId": "org.slf4j:slf4j-api@1.7.32", + "deps": [] + }, + { + "nodeId": "com.fasterxml.jackson.dataformat:jackson-dataformat-xml@2.12.5", + "pkgId": "com.fasterxml.jackson.dataformat:jackson-dataformat-xml@2.12.5", + "deps": [ + { + "nodeId": "com.fasterxml.jackson.module:jackson-module-jaxb-annotations@2.12.5" + } + ] + }, + { + "nodeId": "com.fasterxml.jackson.module:jackson-module-jaxb-annotations@2.12.5", + "pkgId": "com.fasterxml.jackson.module:jackson-module-jaxb-annotations@2.12.5", + "deps": [ + { + "nodeId": "jakarta.activation:jakarta.activation-api@1.2.2" + }, + { + "nodeId": "jakarta.xml.bind:jakarta.xml.bind-api@2.3.3" + } + ] + }, + { + "nodeId": "jakarta.activation:jakarta.activation-api@1.2.2", + "pkgId": "jakarta.activation:jakarta.activation-api@1.2.2", + "deps": [] + }, + { + "nodeId": "jakarta.xml.bind:jakarta.xml.bind-api@2.3.3", + "pkgId": "jakarta.xml.bind:jakarta.xml.bind-api@2.3.3", + "deps": [ + { + "nodeId": "jakarta.activation:jakarta.activation-api@1.2.2" + } + ] + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.12.5", + "pkgId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.12.5", + "deps": [] + }, + { + "nodeId": "com.microsoft.azure:qpid-proton-j-extensions@1.2.4", + "pkgId": "com.microsoft.azure:qpid-proton-j-extensions@1.2.4", + "deps": [ + { + "nodeId": "org.apache.qpid:proton-j@0.33.8" + }, + { + "nodeId": "org.slf4j:slf4j-api@1.7.32" + } + ] + }, + { + "nodeId": "org.apache.qpid:proton-j@0.33.8", + "pkgId": "org.apache.qpid:proton-j@0.33.8", + "deps": [] + }, + { + "nodeId": "com.azure:azure-core-http-netty@1.11.1", + "pkgId": "com.azure:azure-core-http-netty@1.11.1", + "deps": [ + { + "nodeId": "io.netty:netty-handler-proxy@4.1.68.Final" + }, + { + "nodeId": "io.projectreactor.netty:reactor-netty-http@1.0.11" + }, + { + "nodeId": "io.netty:netty-transport-native-kqueue:jar:osx-x86_64@4.1.68.Final" + }, + { + "nodeId": "io.netty:netty-codec-http2@4.1.68.Final" + }, + { + "nodeId": "com.azure:azure-core@1.21.0" + } + ] + }, + { + "nodeId": "io.netty:netty-handler-proxy@4.1.68.Final", + "pkgId": "io.netty:netty-handler-proxy@4.1.68.Final", + "deps": [ + { + "nodeId": "io.netty:netty-codec-socks@4.1.68.Final" + } + ] + }, + { + "nodeId": "io.netty:netty-common@4.1.68.Final", + "pkgId": "io.netty:netty-common@4.1.68.Final", + "deps": [] + }, + { + "nodeId": "io.netty:netty-codec@4.1.68.Final", + "pkgId": "io.netty:netty-codec@4.1.68.Final", + "deps": [] + }, + { + "nodeId": "io.netty:netty-buffer@4.1.68.Final", + "pkgId": "io.netty:netty-buffer@4.1.68.Final", + "deps": [] + }, + { + "nodeId": "io.netty:netty-transport@4.1.68.Final", + "pkgId": "io.netty:netty-transport@4.1.68.Final", + "deps": [] + }, + { + "nodeId": "io.netty:netty-resolver@4.1.68.Final", + "pkgId": "io.netty:netty-resolver@4.1.68.Final", + "deps": [] + }, + { + "nodeId": "io.netty:netty-codec-socks@4.1.68.Final", + "pkgId": "io.netty:netty-codec-socks@4.1.68.Final", + "deps": [] + }, + { + "nodeId": "io.netty:netty-codec-http@4.1.68.Final", + "pkgId": "io.netty:netty-codec-http@4.1.68.Final", + "deps": [] + }, + { + "nodeId": "io.netty:netty-handler@4.1.68.Final", + "pkgId": "io.netty:netty-handler@4.1.68.Final", + "deps": [] + }, + { + "nodeId": "io.projectreactor.netty:reactor-netty-http@1.0.11", + "pkgId": "io.projectreactor.netty:reactor-netty-http@1.0.11", + "deps": [ + { + "nodeId": "io.projectreactor.netty:reactor-netty-core@1.0.11" + }, + { + "nodeId": "io.netty:netty-codec-http2@4.1.68.Final" + }, + { + "nodeId": "io.netty:netty-resolver-dns-native-macos:jar:osx-x86_64@4.1.68.Final" + } + ] + }, + { + "nodeId": "io.projectreactor.netty:reactor-netty-core@1.0.11", + "pkgId": "io.projectreactor.netty:reactor-netty-core@1.0.11", + "deps": [ + { + "nodeId": "io.netty:netty-handler-proxy@4.1.68.Final" + }, + { + "nodeId": "io.netty:netty-resolver-dns-native-macos:jar:osx-x86_64@4.1.68.Final" + } + ] + }, + { + "nodeId": "io.netty:netty-resolver-dns@4.1.68.Final", + "pkgId": "io.netty:netty-resolver-dns@4.1.68.Final", + "deps": [ + { + "nodeId": "io.netty:netty-codec-dns@4.1.68.Final" + } + ] + }, + { + "nodeId": "io.netty:netty-codec-dns@4.1.68.Final", + "pkgId": "io.netty:netty-codec-dns@4.1.68.Final", + "deps": [] + }, + { + "nodeId": "io.netty:netty-transport-native-epoll:jar:linux-x86_64@4.1.68.Final", + "pkgId": "io.netty:netty-transport-native-epoll:jar:linux-x86_64@4.1.68.Final", + "deps": [] + }, + { + "nodeId": "io.netty:netty-transport-native-unix-common@4.1.68.Final", + "pkgId": "io.netty:netty-transport-native-unix-common@4.1.68.Final", + "deps": [] + }, + { + "nodeId": "io.netty:netty-resolver-dns-native-macos:jar:osx-x86_64@4.1.68.Final", + "pkgId": "io.netty:netty-resolver-dns-native-macos:jar:osx-x86_64@4.1.68.Final", + "deps": [] + }, + { + "nodeId": "io.netty:netty-codec-http2@4.1.68.Final", + "pkgId": "io.netty:netty-codec-http2@4.1.68.Final", + "deps": [] + }, + { + "nodeId": "io.netty:netty-transport-native-kqueue:jar:osx-x86_64@4.1.68.Final", + "pkgId": "io.netty:netty-transport-native-kqueue:jar:osx-x86_64@4.1.68.Final", + "deps": [] + }, + { + "nodeId": "//integrations/big_commerce:main@bazel", + "pkgId": "//integrations/big_commerce:main@bazel", + "deps": [ + { + "nodeId": "//webhook/utils:main@bazel" + } + ] + }, + { + "nodeId": "//integrations/bingads:main@bazel", + "pkgId": "//integrations/bingads:main@bazel", + "deps": [ + { + "nodeId": "//xml_util:main@bazel" + }, + { + "nodeId": "com.microsoft.bingads:microsoft.bingads@12.0.3" + }, + { + "nodeId": "org.apache.httpcomponents:httpmime@4.5.13" + } + ] + }, + { + "nodeId": "//xml_util:main@bazel", + "pkgId": "//xml_util:main@bazel", + "deps": [] + }, + { + "nodeId": "com.microsoft.bingads:microsoft.bingads@12.0.3", + "pkgId": "com.microsoft.bingads:microsoft.bingads@12.0.3", + "deps": [ + { + "nodeId": "com.googlecode.jcsv:jcsv@1.4.0" + }, + { + "nodeId": "org.apache.cxf:cxf-rt-transports-http@3.2.14" + }, + { + "nodeId": "org.apache.cxf:cxf-rt-frontend-jaxws@3.2.14" + }, + { + "nodeId": "org.apache.httpcomponents:httpmime@4.5.13" + } + ] + }, + { + "nodeId": "com.googlecode.jcsv:jcsv@1.4.0", + "pkgId": "com.googlecode.jcsv:jcsv@1.4.0", + "deps": [] + }, + { + "nodeId": "org.apache.cxf:cxf-rt-transports-http@3.2.14", + "pkgId": "org.apache.cxf:cxf-rt-transports-http@3.2.14", + "deps": [] + }, + { + "nodeId": "org.apache.cxf:cxf-core@3.2.14", + "pkgId": "org.apache.cxf:cxf-core@3.2.14", + "deps": [ + { + "nodeId": "org.apache.ws.xmlschema:xmlschema-core@2.2.5" + } + ] + }, + { + "nodeId": "org.apache.ws.xmlschema:xmlschema-core@2.2.5", + "pkgId": "org.apache.ws.xmlschema:xmlschema-core@2.2.5", + "deps": [] + }, + { + "nodeId": "org.apache.cxf:cxf-rt-frontend-jaxws@3.2.14", + "pkgId": "org.apache.cxf:cxf-rt-frontend-jaxws@3.2.14", + "deps": [ + { + "nodeId": "xml-resolver:xml-resolver@1.2" + }, + { + "nodeId": "org.apache.cxf:cxf-rt-ws-addr@3.2.14" + }, + { + "nodeId": "org.apache.cxf:cxf-rt-bindings-xml@3.2.14" + }, + { + "nodeId": "org.apache.cxf:cxf-rt-frontend-simple@3.2.14" + } + ] + }, + { + "nodeId": "org.apache.cxf:cxf-rt-ws-addr@3.2.14", + "pkgId": "org.apache.cxf:cxf-rt-ws-addr@3.2.14", + "deps": [ + { + "nodeId": "org.apache.cxf:cxf-rt-ws-policy@3.2.14" + } + ] + }, + { + "nodeId": "org.apache.cxf:cxf-rt-bindings-soap@3.2.14", + "pkgId": "org.apache.cxf:cxf-rt-bindings-soap@3.2.14", + "deps": [ + { + "nodeId": "org.apache.cxf:cxf-rt-databinding-jaxb@3.2.14" + } + ] + }, + { + "nodeId": "org.apache.cxf:cxf-rt-databinding-jaxb@3.2.14", + "pkgId": "org.apache.cxf:cxf-rt-databinding-jaxb@3.2.14", + "deps": [] + }, + { + "nodeId": "org.apache.cxf:cxf-rt-wsdl@3.2.14", + "pkgId": "org.apache.cxf:cxf-rt-wsdl@3.2.14", + "deps": [] + }, + { + "nodeId": "org.apache.cxf:cxf-rt-ws-policy@3.2.14", + "pkgId": "org.apache.cxf:cxf-rt-ws-policy@3.2.14", + "deps": [ + { + "nodeId": "org.apache.neethi:neethi@3.1.1" + } + ] + }, + { + "nodeId": "org.apache.neethi:neethi@3.1.1", + "pkgId": "org.apache.neethi:neethi@3.1.1", + "deps": [] + }, + { + "nodeId": "org.apache.cxf:cxf-rt-bindings-xml@3.2.14", + "pkgId": "org.apache.cxf:cxf-rt-bindings-xml@3.2.14", + "deps": [] + }, + { + "nodeId": "org.apache.cxf:cxf-rt-frontend-simple@3.2.14", + "pkgId": "org.apache.cxf:cxf-rt-frontend-simple@3.2.14", + "deps": [] + }, + { + "nodeId": "org.apache.httpcomponents:httpmime@4.5.13", + "pkgId": "org.apache.httpcomponents:httpmime@4.5.13", + "deps": [] + }, + { + "nodeId": "//integrations/box:main@bazel", + "pkgId": "//integrations/box:main@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/braintree:main@bazel", + "pkgId": "//integrations/braintree:main@bazel", + "deps": [ + { + "nodeId": "com.braintreepayments.gateway:braintree-java@2.108.0" + } + ] + }, + { + "nodeId": "com.braintreepayments.gateway:braintree-java@2.108.0", + "pkgId": "com.braintreepayments.gateway:braintree-java@2.108.0", + "deps": [ + { + "nodeId": "com.fasterxml.jackson.jr:jackson-jr-objects@2.9.9" + }, + { + "nodeId": "org.apache.commons:commons-csv@1.8" + }, + { + "nodeId": "org.osgi:org.osgi.core@4.2.0" + } + ] + }, + { + "nodeId": "com.fasterxml.jackson.jr:jackson-jr-objects@2.9.9", + "pkgId": "com.fasterxml.jackson.jr:jackson-jr-objects@2.9.9", + "deps": [] + }, + { + "nodeId": "org.apache.commons:commons-csv@1.8", + "pkgId": "org.apache.commons:commons-csv@1.8", + "deps": [] + }, + { + "nodeId": "org.osgi:org.osgi.core@4.2.0", + "pkgId": "org.osgi:org.osgi.core@4.2.0", + "deps": [] + }, + { + "nodeId": "//integrations/branch:main@bazel", + "pkgId": "//integrations/branch:main@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/business_central:main@bazel", + "pkgId": "//integrations/business_central:main@bazel", + "deps": [ + { + "nodeId": "//webhook/utils:main@bazel" + } + ] + }, + { + "nodeId": "//integrations/cloudfront:main@bazel", + "pkgId": "//integrations/cloudfront:main@bazel", + "deps": [ + { + "nodeId": "//integrations/s3:main@bazel" + } + ] + }, + { + "nodeId": "//integrations/s3:main@bazel", + "pkgId": "//integrations/s3:main@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/coupa:main@bazel", + "pkgId": "//integrations/coupa:main@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/criteo:main@bazel", + "pkgId": "//integrations/criteo:main@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/db2:main@bazel", + "pkgId": "//integrations/db2:main@bazel", + "deps": [ + { + "nodeId": "//utils/byte_array_list:main@bazel" + }, + { + "nodeId": "//utils/cipher_adapter:main@bazel" + }, + { + "nodeId": "com.ibm.db2:jcc@11.5.0.0" + } + ] + }, + { + "nodeId": "//utils/byte_array_list:main@bazel", + "pkgId": "//utils/byte_array_list:main@bazel", + "deps": [ + { + "nodeId": "//utils/cipher_adapter:main@bazel" + } + ] + }, + { + "nodeId": "//integrations/document:main@bazel", + "pkgId": "//integrations/document:main@bazel", + "deps": [ + { + "nodeId": "//integrations/mongo:main@bazel" + }, + { + "nodeId": "dnsjava:dnsjava@3.0.2" + }, + { + "nodeId": "org.mongodb:mongo-java-driver@3.12.0" + } + ] + }, + { + "nodeId": "//integrations/mongo:main@bazel", + "pkgId": "//integrations/mongo:main@bazel", + "deps": [ + { + "nodeId": "//services:ab_tests@bazel" + }, + { + "nodeId": "dnsjava:dnsjava@3.0.2" + }, + { + "nodeId": "org.mongodb:mongo-java-driver@3.12.0" + } + ] + }, + { + "nodeId": "dnsjava:dnsjava@3.0.2", + "pkgId": "dnsjava:dnsjava@3.0.2", + "deps": [] + }, + { + "nodeId": "io.opentelemetry:opentelemetry-api@0.13.1", + "pkgId": "io.opentelemetry:opentelemetry-api@0.13.1", + "deps": [ + { + "nodeId": "io.opentelemetry:opentelemetry-api-metrics@0.13.0-alpha" + }, + { + "nodeId": "io.opentelemetry:opentelemetry-api-baggage@0.13.1" + } + ] + }, + { + "nodeId": "io.opentelemetry:opentelemetry-api-metrics@0.13.0-alpha", + "pkgId": "io.opentelemetry:opentelemetry-api-metrics@0.13.0-alpha", + "deps": [] + }, + { + "nodeId": "io.opentelemetry:opentelemetry-api-common@0.13.1", + "pkgId": "io.opentelemetry:opentelemetry-api-common@0.13.1", + "deps": [] + }, + { + "nodeId": "io.opentelemetry:opentelemetry-context@0.13.1", + "pkgId": "io.opentelemetry:opentelemetry-context@0.13.1", + "deps": [] + }, + { + "nodeId": "io.opentelemetry:opentelemetry-api-trace@0.13.1", + "pkgId": "io.opentelemetry:opentelemetry-api-trace@0.13.1", + "deps": [] + }, + { + "nodeId": "io.opentelemetry:opentelemetry-api-baggage@0.13.1", + "pkgId": "io.opentelemetry:opentelemetry-api-baggage@0.13.1", + "deps": [] + }, + { + "nodeId": "io.opentelemetry:opentelemetry-extension-annotations@0.13.1", + "pkgId": "io.opentelemetry:opentelemetry-extension-annotations@0.13.1", + "deps": [] + }, + { + "nodeId": "org.mongodb:mongo-java-driver@3.12.0", + "pkgId": "org.mongodb:mongo-java-driver@3.12.0", + "deps": [] + }, + { + "nodeId": "//integrations/double_click_campaign_manager:main@bazel", + "pkgId": "//integrations/double_click_campaign_manager:main@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/dropbox:main@bazel", + "pkgId": "//integrations/dropbox:main@bazel", + "deps": [ + { + "nodeId": "com.dropbox.core:dropbox-core-sdk@4.0.0" + }, + { + "nodeId": "org.awaitility:awaitility@4.0.3" + } + ] + }, + { + "nodeId": "com.dropbox.core:dropbox-core-sdk@4.0.0", + "pkgId": "com.dropbox.core:dropbox-core-sdk@4.0.0", + "deps": [] + }, + { + "nodeId": "//integrations/dummy_postgres:main@bazel", + "pkgId": "//integrations/dummy_postgres:main@bazel", + "deps": [ + { + "nodeId": "//core_interfaces:pojos@bazel" + }, + { + "nodeId": "@com_google_cloud_google_cloud_bigquerydatatransfer//:main@bazel" + } + ] + }, + { + "nodeId": "//integrations/dynamics365:main@bazel", + "pkgId": "//integrations/dynamics365:main@bazel", + "deps": [ + { + "nodeId": "//dblike:main@bazel" + }, + { + "nodeId": "//integrations/db_like_standardization:main@bazel" + }, + { + "nodeId": "com.microsoft.azure:adal4j@1.6.3" + }, + { + "nodeId": "com.nimbusds:lang-tag@1.4.3" + }, + { + "nodeId": "com.nimbusds:oauth2-oidc-sdk@5.64.4" + } + ] + }, + { + "nodeId": "//integrations/dynamodb:main@bazel", + "pkgId": "//integrations/dynamodb:main@bazel", + "deps": [ + { + "nodeId": "@acmecorp_amazon_kinesis_client//:main@bazel" + }, + { + "nodeId": "com.amazonaws:dynamodb-streams-kinesis-adapter@1.4.0" + } + ] + }, + { + "nodeId": "@acmecorp_amazon_kinesis_client//:main@bazel", + "pkgId": "@acmecorp_amazon_kinesis_client//:main@bazel", + "deps": [ + { + "nodeId": "software.amazon.ion:ion-java@1.0.2" + } + ] + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-kinesis@1.12.84", + "pkgId": "com.amazonaws:aws-java-sdk-kinesis@1.12.84", + "deps": [] + }, + { + "nodeId": "com.amazonaws:dynamodb-streams-kinesis-adapter@1.4.0", + "pkgId": "com.amazonaws:dynamodb-streams-kinesis-adapter@1.4.0", + "deps": [ + { + "nodeId": "com.amazonaws:amazon-kinesis-client@1.13.0" + } + ] + }, + { + "nodeId": "com.amazonaws:amazon-kinesis-client@1.13.0", + "pkgId": "com.amazonaws:amazon-kinesis-client@1.13.0", + "deps": [] + }, + { + "nodeId": "//integrations/elasticsearch:main@bazel", + "pkgId": "//integrations/elasticsearch:main@bazel", + "deps": [ + { + "nodeId": "//crypto:pojos@bazel" + }, + { + "nodeId": "//teleport:main@bazel" + }, + { + "nodeId": "org.elasticsearch.client:elasticsearch-rest-client@7.14.0" + }, + { + "nodeId": "org.elasticsearch.client:elasticsearch-rest-high-level-client@7.14.0" + }, + { + "nodeId": "org.elasticsearch:elasticsearch@7.14.0" + }, + { + "nodeId": "org.opensearch.client:opensearch-rest-client@1.1.0" + }, + { + "nodeId": "org.opensearch.client:opensearch-rest-high-level-client@1.1.0" + }, + { + "nodeId": "org.opensearch:opensearch@1.1.0" + }, + { + "nodeId": "org.opensearch:opensearch-x-content@1.1.0" + } + ] + }, + { + "nodeId": "org.apache.lucene:lucene-core@8.9.0", + "pkgId": "org.apache.lucene:lucene-core@8.9.0", + "deps": [] + }, + { + "nodeId": "org.elasticsearch.client:elasticsearch-rest-client@7.14.0", + "pkgId": "org.elasticsearch.client:elasticsearch-rest-client@7.14.0", + "deps": [ + { + "nodeId": "org.apache.httpcomponents:httpasyncclient@4.1.4" + } + ] + }, + { + "nodeId": "org.apache.httpcomponents:httpcore-nio@4.4.13", + "pkgId": "org.apache.httpcomponents:httpcore-nio@4.4.13", + "deps": [] + }, + { + "nodeId": "org.apache.httpcomponents:httpasyncclient@4.1.4", + "pkgId": "org.apache.httpcomponents:httpasyncclient@4.1.4", + "deps": [] + }, + { + "nodeId": "org.elasticsearch.client:elasticsearch-rest-high-level-client@7.14.0", + "pkgId": "org.elasticsearch.client:elasticsearch-rest-high-level-client@7.14.0", + "deps": [ + { + "nodeId": "org.elasticsearch.plugin:parent-join-client@7.14.0" + }, + { + "nodeId": "org.elasticsearch.plugin:lang-mustache-client@7.14.0" + }, + { + "nodeId": "org.elasticsearch.client:elasticsearch-rest-client@7.14.0" + }, + { + "nodeId": "org.elasticsearch.plugin:aggs-matrix-stats-client@7.14.0" + }, + { + "nodeId": "org.elasticsearch.plugin:mapper-extras-client@7.14.0" + }, + { + "nodeId": "org.elasticsearch:elasticsearch@7.14.0" + }, + { + "nodeId": "org.elasticsearch.plugin:rank-eval-client@7.14.0" + } + ] + }, + { + "nodeId": "org.elasticsearch.plugin:parent-join-client@7.14.0", + "pkgId": "org.elasticsearch.plugin:parent-join-client@7.14.0", + "deps": [] + }, + { + "nodeId": "org.elasticsearch.plugin:lang-mustache-client@7.14.0", + "pkgId": "org.elasticsearch.plugin:lang-mustache-client@7.14.0", + "deps": [ + { + "nodeId": "com.github.spullara.mustache.java:compiler@0.9.6" + } + ] + }, + { + "nodeId": "com.github.spullara.mustache.java:compiler@0.9.6", + "pkgId": "com.github.spullara.mustache.java:compiler@0.9.6", + "deps": [] + }, + { + "nodeId": "org.elasticsearch.plugin:aggs-matrix-stats-client@7.14.0", + "pkgId": "org.elasticsearch.plugin:aggs-matrix-stats-client@7.14.0", + "deps": [] + }, + { + "nodeId": "org.elasticsearch.plugin:mapper-extras-client@7.14.0", + "pkgId": "org.elasticsearch.plugin:mapper-extras-client@7.14.0", + "deps": [] + }, + { + "nodeId": "org.elasticsearch:elasticsearch@7.14.0", + "pkgId": "org.elasticsearch:elasticsearch@7.14.0", + "deps": [ + { + "nodeId": "org.apache.lucene:lucene-suggest@8.9.0" + }, + { + "nodeId": "org.elasticsearch:jna@5.7.0-1" + }, + { + "nodeId": "org.apache.lucene:lucene-highlighter@8.9.0" + }, + { + "nodeId": "com.tdunning:t-digest@3.2" + }, + { + "nodeId": "org.elasticsearch:elasticsearch-cli@7.14.0" + }, + { + "nodeId": "org.elasticsearch:elasticsearch-x-content@7.14.0" + }, + { + "nodeId": "org.apache.lucene:lucene-grouping@8.9.0" + }, + { + "nodeId": "org.apache.lucene:lucene-join@8.9.0" + }, + { + "nodeId": "com.carrotsearch:hppc@0.8.1" + }, + { + "nodeId": "org.apache.lucene:lucene-sandbox@8.9.0" + }, + { + "nodeId": "org.apache.lucene:lucene-backward-codecs@8.9.0" + }, + { + "nodeId": "org.apache.lucene:lucene-spatial-extras@8.9.0" + }, + { + "nodeId": "org.apache.lucene:lucene-spatial3d@8.9.0" + }, + { + "nodeId": "org.apache.lucene:lucene-misc@8.9.0" + }, + { + "nodeId": "org.elasticsearch:elasticsearch-geo@7.14.0" + }, + { + "nodeId": "org.lz4:lz4-java@1.8.0" + }, + { + "nodeId": "org.apache.lucene:lucene-analyzers-common@8.9.0" + }, + { + "nodeId": "org.apache.lucene:lucene-memory@8.9.0" + }, + { + "nodeId": "org.apache.lucene:lucene-queries@8.9.0" + }, + { + "nodeId": "org.elasticsearch:elasticsearch-secure-sm@7.14.0" + }, + { + "nodeId": "org.elasticsearch:elasticsearch-plugin-classloader@7.14.0" + }, + { + "nodeId": "org.apache.lucene:lucene-queryparser@8.9.0" + } + ] + }, + { + "nodeId": "org.apache.lucene:lucene-suggest@8.9.0", + "pkgId": "org.apache.lucene:lucene-suggest@8.9.0", + "deps": [] + }, + { + "nodeId": "org.elasticsearch:jna@5.7.0-1", + "pkgId": "org.elasticsearch:jna@5.7.0-1", + "deps": [] + }, + { + "nodeId": "org.apache.lucene:lucene-highlighter@8.9.0", + "pkgId": "org.apache.lucene:lucene-highlighter@8.9.0", + "deps": [] + }, + { + "nodeId": "com.tdunning:t-digest@3.2", + "pkgId": "com.tdunning:t-digest@3.2", + "deps": [] + }, + { + "nodeId": "org.elasticsearch:elasticsearch-cli@7.14.0", + "pkgId": "org.elasticsearch:elasticsearch-cli@7.14.0", + "deps": [] + }, + { + "nodeId": "org.elasticsearch:elasticsearch-core@7.14.0", + "pkgId": "org.elasticsearch:elasticsearch-core@7.14.0", + "deps": [] + }, + { + "nodeId": "org.elasticsearch:elasticsearch-x-content@7.14.0", + "pkgId": "org.elasticsearch:elasticsearch-x-content@7.14.0", + "deps": [] + }, + { + "nodeId": "org.apache.lucene:lucene-grouping@8.9.0", + "pkgId": "org.apache.lucene:lucene-grouping@8.9.0", + "deps": [] + }, + { + "nodeId": "org.apache.lucene:lucene-join@8.9.0", + "pkgId": "org.apache.lucene:lucene-join@8.9.0", + "deps": [] + }, + { + "nodeId": "org.apache.logging.log4j:log4j-api@2.17.1", + "pkgId": "org.apache.logging.log4j:log4j-api@2.17.1", + "deps": [] + }, + { + "nodeId": "com.carrotsearch:hppc@0.8.1", + "pkgId": "com.carrotsearch:hppc@0.8.1", + "deps": [] + }, + { + "nodeId": "org.apache.lucene:lucene-sandbox@8.9.0", + "pkgId": "org.apache.lucene:lucene-sandbox@8.9.0", + "deps": [] + }, + { + "nodeId": "org.apache.lucene:lucene-backward-codecs@8.9.0", + "pkgId": "org.apache.lucene:lucene-backward-codecs@8.9.0", + "deps": [] + }, + { + "nodeId": "org.apache.lucene:lucene-spatial-extras@8.9.0", + "pkgId": "org.apache.lucene:lucene-spatial-extras@8.9.0", + "deps": [] + }, + { + "nodeId": "org.apache.lucene:lucene-spatial3d@8.9.0", + "pkgId": "org.apache.lucene:lucene-spatial3d@8.9.0", + "deps": [] + }, + { + "nodeId": "org.apache.lucene:lucene-misc@8.9.0", + "pkgId": "org.apache.lucene:lucene-misc@8.9.0", + "deps": [] + }, + { + "nodeId": "org.elasticsearch:elasticsearch-geo@7.14.0", + "pkgId": "org.elasticsearch:elasticsearch-geo@7.14.0", + "deps": [] + }, + { + "nodeId": "org.apache.lucene:lucene-analyzers-common@8.9.0", + "pkgId": "org.apache.lucene:lucene-analyzers-common@8.9.0", + "deps": [] + }, + { + "nodeId": "org.apache.lucene:lucene-memory@8.9.0", + "pkgId": "org.apache.lucene:lucene-memory@8.9.0", + "deps": [] + }, + { + "nodeId": "org.apache.lucene:lucene-queries@8.9.0", + "pkgId": "org.apache.lucene:lucene-queries@8.9.0", + "deps": [] + }, + { + "nodeId": "org.elasticsearch:elasticsearch-secure-sm@7.14.0", + "pkgId": "org.elasticsearch:elasticsearch-secure-sm@7.14.0", + "deps": [] + }, + { + "nodeId": "org.elasticsearch:elasticsearch-plugin-classloader@7.14.0", + "pkgId": "org.elasticsearch:elasticsearch-plugin-classloader@7.14.0", + "deps": [] + }, + { + "nodeId": "org.apache.lucene:lucene-queryparser@8.9.0", + "pkgId": "org.apache.lucene:lucene-queryparser@8.9.0", + "deps": [] + }, + { + "nodeId": "org.elasticsearch.plugin:rank-eval-client@7.14.0", + "pkgId": "org.elasticsearch.plugin:rank-eval-client@7.14.0", + "deps": [] + }, + { + "nodeId": "org.opensearch.client:opensearch-rest-client@1.1.0", + "pkgId": "org.opensearch.client:opensearch-rest-client@1.1.0", + "deps": [ + { + "nodeId": "org.apache.httpcomponents:httpasyncclient@4.1.4" + } + ] + }, + { + "nodeId": "org.opensearch.client:opensearch-rest-high-level-client@1.1.0", + "pkgId": "org.opensearch.client:opensearch-rest-high-level-client@1.1.0", + "deps": [ + { + "nodeId": "org.opensearch.plugin:aggs-matrix-stats-client@1.1.0" + }, + { + "nodeId": "org.opensearch.plugin:lang-mustache-client@1.1.0" + }, + { + "nodeId": "org.opensearch.client:opensearch-rest-client@1.1.0" + }, + { + "nodeId": "org.opensearch.plugin:mapper-extras-client@1.1.0" + }, + { + "nodeId": "org.opensearch:opensearch@1.1.0" + }, + { + "nodeId": "org.opensearch.plugin:rank-eval-client@1.1.0" + }, + { + "nodeId": "org.opensearch.plugin:parent-join-client@1.1.0" + } + ] + }, + { + "nodeId": "org.opensearch.plugin:aggs-matrix-stats-client@1.1.0", + "pkgId": "org.opensearch.plugin:aggs-matrix-stats-client@1.1.0", + "deps": [] + }, + { + "nodeId": "org.opensearch.plugin:lang-mustache-client@1.1.0", + "pkgId": "org.opensearch.plugin:lang-mustache-client@1.1.0", + "deps": [ + { + "nodeId": "com.github.spullara.mustache.java:compiler@0.9.6" + } + ] + }, + { + "nodeId": "org.opensearch.plugin:mapper-extras-client@1.1.0", + "pkgId": "org.opensearch.plugin:mapper-extras-client@1.1.0", + "deps": [] + }, + { + "nodeId": "org.opensearch:opensearch@1.1.0", + "pkgId": "org.opensearch:opensearch@1.1.0", + "deps": [ + { + "nodeId": "org.apache.lucene:lucene-suggest@8.9.0" + }, + { + "nodeId": "org.elasticsearch:jna@5.7.0-1" + }, + { + "nodeId": "org.opensearch:opensearch-cli@1.1.0" + }, + { + "nodeId": "org.apache.lucene:lucene-highlighter@8.9.0" + }, + { + "nodeId": "com.tdunning:t-digest@3.2" + }, + { + "nodeId": "org.opensearch:opensearch-geo@1.1.0" + }, + { + "nodeId": "org.opensearch:opensearch-secure-sm@1.1.0" + }, + { + "nodeId": "org.apache.lucene:lucene-grouping@8.9.0" + }, + { + "nodeId": "org.apache.lucene:lucene-join@8.9.0" + }, + { + "nodeId": "com.carrotsearch:hppc@0.8.1" + }, + { + "nodeId": "org.apache.lucene:lucene-sandbox@8.9.0" + }, + { + "nodeId": "org.apache.lucene:lucene-backward-codecs@8.9.0" + }, + { + "nodeId": "org.apache.lucene:lucene-spatial-extras@8.9.0" + }, + { + "nodeId": "org.apache.lucene:lucene-spatial3d@8.9.0" + }, + { + "nodeId": "org.apache.lucene:lucene-misc@8.9.0" + }, + { + "nodeId": "org.apache.lucene:lucene-analyzers-common@8.9.0" + }, + { + "nodeId": "org.apache.lucene:lucene-memory@8.9.0" + }, + { + "nodeId": "org.apache.lucene:lucene-queries@8.9.0" + }, + { + "nodeId": "org.opensearch:opensearch-x-content@1.1.0" + }, + { + "nodeId": "org.apache.lucene:lucene-queryparser@8.9.0" + } + ] + }, + { + "nodeId": "org.opensearch:opensearch-cli@1.1.0", + "pkgId": "org.opensearch:opensearch-cli@1.1.0", + "deps": [] + }, + { + "nodeId": "org.opensearch:opensearch-core@1.1.0", + "pkgId": "org.opensearch:opensearch-core@1.1.0", + "deps": [] + }, + { + "nodeId": "org.opensearch:opensearch-geo@1.1.0", + "pkgId": "org.opensearch:opensearch-geo@1.1.0", + "deps": [] + }, + { + "nodeId": "org.opensearch:opensearch-secure-sm@1.1.0", + "pkgId": "org.opensearch:opensearch-secure-sm@1.1.0", + "deps": [] + }, + { + "nodeId": "org.opensearch:opensearch-x-content@1.1.0", + "pkgId": "org.opensearch:opensearch-x-content@1.1.0", + "deps": [] + }, + { + "nodeId": "org.opensearch.plugin:rank-eval-client@1.1.0", + "pkgId": "org.opensearch.plugin:rank-eval-client@1.1.0", + "deps": [] + }, + { + "nodeId": "org.opensearch.plugin:parent-join-client@1.1.0", + "pkgId": "org.opensearch.plugin:parent-join-client@1.1.0", + "deps": [] + }, + { + "nodeId": "//integrations/eloqua:main@bazel", + "pkgId": "//integrations/eloqua:main@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/email:main@bazel", + "pkgId": "//integrations/email:main@bazel", + "deps": [ + { + "nodeId": "//integrations/s3:main@bazel" + }, + { + "nodeId": "javax.mail:mail@1.4.5" + } + ] + }, + { + "nodeId": "javax.mail:mail@1.4.5", + "pkgId": "javax.mail:mail@1.4.5", + "deps": [] + }, + { + "nodeId": "//integrations/facebook:main@bazel", + "pkgId": "//integrations/facebook:main@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/acmecorp_log:main@bazel", + "pkgId": "//integrations/acmecorp_log:main@bazel", + "deps": [ + { + "nodeId": "org.apache.logging.log4j:log4j-core@2.17.1" + } + ] + }, + { + "nodeId": "org.apache.logging.log4j:log4j-core@2.17.1", + "pkgId": "org.apache.logging.log4j:log4j-core@2.17.1", + "deps": [] + }, + { + "nodeId": "//integrations/freshdesk:main@bazel", + "pkgId": "//integrations/freshdesk:main@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/freshservice_classic:main@bazel", + "pkgId": "//integrations/freshservice_classic:main@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/front:main@bazel", + "pkgId": "//integrations/front:main@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/functions/aws_lambda:main@bazel", + "pkgId": "//integrations/functions/aws_lambda:main@bazel", + "deps": [ + { + "nodeId": "//integrations/functions/common:main@bazel" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-lambda@1.12.84" + } + ] + }, + { + "nodeId": "//integrations/functions/common:main@bazel", + "pkgId": "//integrations/functions/common:main@bazel", + "deps": [] + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-lambda@1.12.84", + "pkgId": "com.amazonaws:aws-java-sdk-lambda@1.12.84", + "deps": [] + }, + { + "nodeId": "//integrations/functions/azure_function:main@bazel", + "pkgId": "//integrations/functions/azure_function:main@bazel", + "deps": [ + { + "nodeId": "//integrations/functions/common:main@bazel" + } + ] + }, + { + "nodeId": "//integrations/functions/google_cloud_function:main@bazel", + "pkgId": "//integrations/functions/google_cloud_function:main@bazel", + "deps": [ + { + "nodeId": "//integrations/functions/common:main@bazel" + } + ] + }, + { + "nodeId": "//integrations/gcs:main@bazel", + "pkgId": "//integrations/gcs:main@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/gainsight_customer_success:main@bazel", + "pkgId": "//integrations/gainsight_customer_success:main@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/gdrive:main@bazel", + "pkgId": "//integrations/gdrive:main@bazel", + "deps": [ + { + "nodeId": "//integrations/gsheets:main@bazel" + }, + { + "nodeId": "com.google.apis:google-api-services-drive@v3-rev197-1.25.0" + }, + { + "nodeId": "com.google.oauth-client:google-oauth-client-jetty@1.23.0" + } + ] + }, + { + "nodeId": "//integrations/gsheets:main@bazel", + "pkgId": "//integrations/gsheets:main@bazel", + "deps": [ + { + "nodeId": "//services:ab_tests@bazel" + } + ] + }, + { + "nodeId": "com.google.apis:google-api-services-drive@v3-rev197-1.25.0", + "pkgId": "com.google.apis:google-api-services-drive@v3-rev197-1.25.0", + "deps": [] + }, + { + "nodeId": "com.google.oauth-client:google-oauth-client-jetty@1.23.0", + "pkgId": "com.google.oauth-client:google-oauth-client-jetty@1.23.0", + "deps": [ + { + "nodeId": "com.google.oauth-client:google-oauth-client-java6@1.23.0" + } + ] + }, + { + "nodeId": "com.google.oauth-client:google-oauth-client-java6@1.23.0", + "pkgId": "com.google.oauth-client:google-oauth-client-java6@1.23.0", + "deps": [] + }, + { + "nodeId": "//integrations/github:main@bazel", + "pkgId": "//integrations/github:main@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/google_ad_manager:main@bazel", + "pkgId": "//integrations/google_ad_manager:main@bazel", + "deps": [ + { + "nodeId": "//xml_util:main@bazel" + } + ] + }, + { + "nodeId": "//integrations/google_analytics:main@bazel", + "pkgId": "//integrations/google_analytics:main@bazel", + "deps": [ + { + "nodeId": "//http:curl_request@bazel" + }, + { + "nodeId": "//util:rest_api@bazel" + }, + { + "nodeId": "//utils/time:acmecorp_clock@bazel" + }, + { + "nodeId": "//utils/token_api:main@bazel" + } + ] + }, + { + "nodeId": "//util:rest_api@bazel", + "pkgId": "//util:rest_api@bazel", + "deps": [] + }, + { + "nodeId": "//utils/time:acmecorp_clock@bazel", + "pkgId": "//utils/time:acmecorp_clock@bazel", + "deps": [] + }, + { + "nodeId": "//utils/token_api:main@bazel", + "pkgId": "//utils/token_api:main@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/google_analytics_4:main@bazel", + "pkgId": "//integrations/google_analytics_4:main@bazel", + "deps": [ + { + "nodeId": "//http:curl_request@bazel" + }, + { + "nodeId": "//utils/token_api:main@bazel" + } + ] + }, + { + "nodeId": "//integrations/google_analytics_4_export:main@bazel", + "pkgId": "//integrations/google_analytics_4_export:main@bazel", + "deps": [ + { + "nodeId": "//integrations/google_analytics_360:main@bazel" + } + ] + }, + { + "nodeId": "//integrations/google_analytics_360:main@bazel", + "pkgId": "//integrations/google_analytics_360:main@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/google_display_and_video_360:main@bazel", + "pkgId": "//integrations/google_display_and_video_360:main@bazel", + "deps": [ + { + "nodeId": "//utils/token_api:main@bazel" + } + ] + }, + { + "nodeId": "//integrations/google_search_ads_360:main@bazel", + "pkgId": "//integrations/google_search_ads_360:main@bazel", + "deps": [ + { + "nodeId": "//utils/token_api:main@bazel" + } + ] + }, + { + "nodeId": "//integrations/google_play:main@bazel", + "pkgId": "//integrations/google_play:main@bazel", + "deps": [ + { + "nodeId": "//integrations/gcs:main@bazel" + } + ] + }, + { + "nodeId": "//integrations/google_search_console:main@bazel", + "pkgId": "//integrations/google_search_console:main@bazel", + "deps": [ + { + "nodeId": "//http:curl_request@bazel" + }, + { + "nodeId": "//utils/token_api:main@bazel" + } + ] + }, + { + "nodeId": "//integrations/greenhouse:main@bazel", + "pkgId": "//integrations/greenhouse:main@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/heap:main@bazel", + "pkgId": "//integrations/heap:main@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/height:main@bazel", + "pkgId": "//integrations/height:main@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/helpscout:main@bazel", + "pkgId": "//integrations/helpscout:main@bazel", + "deps": [ + { + "nodeId": "//webhook/utils:main@bazel" + } + ] + }, + { + "nodeId": "//integrations/hubspot:main@bazel", + "pkgId": "//integrations/hubspot:main@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/instagram:main@bazel", + "pkgId": "//integrations/instagram:main@bazel", + "deps": [ + { + "nodeId": "org.assertj:assertj-core@3.14.0" + } + ] + }, + { + "nodeId": "org.assertj:assertj-core@3.14.0", + "pkgId": "org.assertj:assertj-core@3.14.0", + "deps": [] + }, + { + "nodeId": "//integrations/intercom:main@bazel", + "pkgId": "//integrations/intercom:main@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/iterable:main@bazel", + "pkgId": "//integrations/iterable:main@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/itunes_connect:main@bazel", + "pkgId": "//integrations/itunes_connect:main@bazel", + "deps": [ + { + "nodeId": "//dockerized/google_cloud/datastore:main@bazel" + }, + { + "nodeId": "//xml_util:main@bazel" + }, + { + "nodeId": "net.lingala.zip4j:zip4j@1.3.2" + } + ] + }, + { + "nodeId": "//dockerized/google_cloud/datastore:main@bazel", + "pkgId": "//dockerized/google_cloud/datastore:main@bazel", + "deps": [ + { + "nodeId": "//dockerized/common:main@bazel" + } + ] + }, + { + "nodeId": "net.lingala.zip4j:zip4j@1.3.2", + "pkgId": "net.lingala.zip4j:zip4j@1.3.2", + "deps": [] + }, + { + "nodeId": "//integrations/jira:main@bazel", + "pkgId": "//integrations/jira:main@bazel", + "deps": [ + { + "nodeId": "//core_implementation:standard_renaming_filter_2@bazel" + }, + { + "nodeId": "//webhook/utils:main@bazel" + } + ] + }, + { + "nodeId": "//core_implementation:standard_renaming_filter_2@bazel", + "pkgId": "//core_implementation:standard_renaming_filter_2@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/kinesis:main@bazel", + "pkgId": "//integrations/kinesis:main@bazel", + "deps": [ + { + "nodeId": "//integrations/s3:main@bazel" + } + ] + }, + { + "nodeId": "//integrations/klaviyo:main@bazel", + "pkgId": "//integrations/klaviyo:main@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/kustomer:main@bazel", + "pkgId": "//integrations/kustomer:main@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/lever:main@bazel", + "pkgId": "//integrations/lever:main@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/lightspeed_retail:main@bazel", + "pkgId": "//integrations/lightspeed_retail:main@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/linkedin:main@bazel", + "pkgId": "//integrations/linkedin:main@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/mailchimp:main@bazel", + "pkgId": "//integrations/mailchimp:main@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/mandrill:main@bazel", + "pkgId": "//integrations/mandrill:main@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/marin:main@bazel", + "pkgId": "//integrations/marin:main@bazel", + "deps": [ + { + "nodeId": "//integrations/sftp:main@bazel" + } + ] + }, + { + "nodeId": "//integrations/sftp:main@bazel", + "pkgId": "//integrations/sftp:main@bazel", + "deps": [ + { + "nodeId": "//ip_utils:main@bazel" + }, + { + "nodeId": "//utils/fsort:main@bazel" + } + ] + }, + { + "nodeId": "//integrations/marketo:main@bazel", + "pkgId": "//integrations/marketo:main@bazel", + "deps": [ + { + "nodeId": "//size:main@bazel" + } + ] + }, + { + "nodeId": "//size:main@bazel", + "pkgId": "//size:main@bazel", + "deps": [] + }, + { + "nodeId": "com.sun.xml.messaging.saaj:saaj-impl@1.3.25", + "pkgId": "com.sun.xml.messaging.saaj:saaj-impl@1.3.25", + "deps": [ + { + "nodeId": "org.jvnet.mimepull:mimepull@1.9.6" + }, + { + "nodeId": "org.jvnet.staxex:stax-ex@1.7.7" + } + ] + }, + { + "nodeId": "org.jvnet.mimepull:mimepull@1.9.6", + "pkgId": "org.jvnet.mimepull:mimepull@1.9.6", + "deps": [] + }, + { + "nodeId": "org.jvnet.staxex:stax-ex@1.7.7", + "pkgId": "org.jvnet.staxex:stax-ex@1.7.7", + "deps": [] + }, + { + "nodeId": "//integrations/mavenlink:main@bazel", + "pkgId": "//integrations/mavenlink:main@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/medallia:main@bazel", + "pkgId": "//integrations/medallia:main@bazel", + "deps": [ + { + "nodeId": "//http_client:main@bazel" + } + ] + }, + { + "nodeId": "//http_client:main@bazel", + "pkgId": "//http_client:main@bazel", + "deps": [ + { + "nodeId": "io.github.resilience4j:resilience4j-core@1.7.1" + }, + { + "nodeId": "io.github.resilience4j:resilience4j-retry@1.7.1" + } + ] + }, + { + "nodeId": "io.github.resilience4j:resilience4j-core@1.7.1", + "pkgId": "io.github.resilience4j:resilience4j-core@1.7.1", + "deps": [ + { + "nodeId": "io.vavr:vavr@0.10.2" + } + ] + }, + { + "nodeId": "io.vavr:vavr@0.10.2", + "pkgId": "io.vavr:vavr@0.10.2", + "deps": [ + { + "nodeId": "io.vavr:vavr-match@0.10.2" + } + ] + }, + { + "nodeId": "io.vavr:vavr-match@0.10.2", + "pkgId": "io.vavr:vavr-match@0.10.2", + "deps": [] + }, + { + "nodeId": "io.github.resilience4j:resilience4j-retry@1.7.1", + "pkgId": "io.github.resilience4j:resilience4j-retry@1.7.1", + "deps": [ + { + "nodeId": "io.github.resilience4j:resilience4j-core@1.7.1" + }, + { + "nodeId": "io.vavr:vavr@0.10.2" + } + ] + }, + { + "nodeId": "//integrations/microsoft_lists:main@bazel", + "pkgId": "//integrations/microsoft_lists:main@bazel", + "deps": [ + { + "nodeId": "//integrations/azure_consumer_file:main@bazel" + } + ] + }, + { + "nodeId": "//integrations/mixpanel:main@bazel", + "pkgId": "//integrations/mixpanel:main@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/mysql:main@bazel", + "pkgId": "//integrations/mysql:main@bazel", + "deps": [ + { + "nodeId": "//core_implementation:main@bazel" + }, + { + "nodeId": "//geo:main@bazel" + }, + { + "nodeId": "//integrations/configuration_tracker:main@bazel" + }, + { + "nodeId": "//services:ab_tests@bazel" + }, + { + "nodeId": "//teleport:main@bazel" + }, + { + "nodeId": "org.jeasy:easy-rules-core@4.1.0" + }, + { + "nodeId": "@mysql_binlog_connector//:main@bazel" + } + ] + }, + { + "nodeId": "//integrations/optimizely:main@bazel", + "pkgId": "//integrations/optimizely:main@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/oracle_cloud_apps_cx:main@bazel", + "pkgId": "//integrations/oracle_cloud_apps_cx:main@bazel", + "deps": [ + { + "nodeId": "//dblike:main@bazel" + }, + { + "nodeId": "//integrations/oracle_cloud_apps:main@bazel" + } + ] + }, + { + "nodeId": "//integrations/oracle_cloud_apps:main@bazel", + "pkgId": "//integrations/oracle_cloud_apps:main@bazel", + "deps": [ + { + "nodeId": "//dblike:main@bazel" + } + ] + }, + { + "nodeId": "//integrations/oracle_cloud_apps_erp_scm:main@bazel", + "pkgId": "//integrations/oracle_cloud_apps_erp_scm:main@bazel", + "deps": [ + { + "nodeId": "//dblike:main@bazel" + }, + { + "nodeId": "//integrations/oracle_cloud_apps:main@bazel" + } + ] + }, + { + "nodeId": "//integrations/oracle_fusion_cloud_apps:main@bazel", + "pkgId": "//integrations/oracle_fusion_cloud_apps:main@bazel", + "deps": [ + { + "nodeId": "//dblike:main@bazel" + }, + { + "nodeId": "javax.mail:mail@1.4.5" + }, + { + "nodeId": "org.glassfish.jersey.media:jersey-media-multipart@2.31" + } + ] + }, + { + "nodeId": "com.opencsv:opencsv@4.1", + "pkgId": "com.opencsv:opencsv@4.1", + "deps": [ + { + "nodeId": "org.apache.commons:commons-text@1.1" + } + ] + }, + { + "nodeId": "org.apache.commons:commons-text@1.1", + "pkgId": "org.apache.commons:commons-text@1.1", + "deps": [] + }, + { + "nodeId": "org.glassfish.jersey.media:jersey-media-multipart@2.31", + "pkgId": "org.glassfish.jersey.media:jersey-media-multipart@2.31", + "deps": [ + { + "nodeId": "org.jvnet.mimepull:mimepull@1.9.6" + } + ] + }, + { + "nodeId": "//integrations/oracle:main@bazel", + "pkgId": "//integrations/oracle:main@bazel", + "deps": [ + { + "nodeId": "//integrations/configuration_tracker:main@bazel" + }, + { + "nodeId": "//integrations/debezium_sql_parser:main@bazel" + }, + { + "nodeId": "//integrations/hvr:main@bazel" + }, + { + "nodeId": "//integrations/hvr/hvr_tool:main@bazel" + }, + { + "nodeId": "//integrations/hvr/unserializer:main@bazel" + }, + { + "nodeId": "//port_forwarder:oracle@bazel" + }, + { + "nodeId": "//schema_migration:schema_migration_info@bazel" + }, + { + "nodeId": "//services:ab_tests@bazel" + }, + { + "nodeId": "//teleport:main@bazel" + }, + { + "nodeId": "//utils/beans:main@bazel" + }, + { + "nodeId": "//utils/binary:main@bazel" + }, + { + "nodeId": "//utils/byte_array_list:main@bazel" + }, + { + "nodeId": "//utils/byte_array_list/sync_adapter:main@bazel" + }, + { + "nodeId": "//utils/cipher_adapter:main@bazel" + }, + { + "nodeId": "//utils/oracle:main@bazel" + }, + { + "nodeId": "//utils/run_shell:main@bazel" + }, + { + "nodeId": "//utils/segmented_input_stream:main@bazel" + }, + { + "nodeId": "//utils/sleep_control:main@bazel" + }, + { + "nodeId": "//utils/socket_receiver:main@bazel" + } + ] + }, + { + "nodeId": "//integrations/debezium_sql_parser:main@bazel", + "pkgId": "//integrations/debezium_sql_parser:main@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/hvr:main@bazel", + "pkgId": "//integrations/hvr:main@bazel", + "deps": [ + { + "nodeId": "//integrations/configuration_tracker:main@bazel" + }, + { + "nodeId": "//integrations/debezium_sql_parser:main@bazel" + }, + { + "nodeId": "//integrations/hvr/hvr_tool:main@bazel" + }, + { + "nodeId": "//integrations/hvr/unserializer:main@bazel" + }, + { + "nodeId": "//schema_migration:schema_migration_info@bazel" + }, + { + "nodeId": "//services:ab_tests@bazel" + }, + { + "nodeId": "//utils/beans:main@bazel" + }, + { + "nodeId": "//utils/binary:main@bazel" + }, + { + "nodeId": "//utils/cipher_adapter:main@bazel" + }, + { + "nodeId": "//utils/run_shell:main@bazel" + }, + { + "nodeId": "//utils/segmented_input_stream:main@bazel" + }, + { + "nodeId": "//utils/sleep_control:main@bazel" + }, + { + "nodeId": "//utils/socket_receiver:main@bazel" + } + ] + }, + { + "nodeId": "//integrations/hvr/unserializer:main@bazel", + "pkgId": "//integrations/hvr/unserializer:main@bazel", + "deps": [ + { + "nodeId": "//utils/binary:main@bazel" + } + ] + }, + { + "nodeId": "//port_forwarder:oracle@bazel", + "pkgId": "//port_forwarder:oracle@bazel", + "deps": [ + { + "nodeId": "//utils/oracle:main@bazel" + }, + { + "nodeId": "//aws:instance_id@bazel" + } + ] + }, + { + "nodeId": "//utils/byte_array_list/sync_adapter:main@bazel", + "pkgId": "//utils/byte_array_list/sync_adapter:main@bazel", + "deps": [ + { + "nodeId": "//utils/byte_array_list:main@bazel" + } + ] + }, + { + "nodeId": "//integrations/oracle_hva:main@bazel", + "pkgId": "//integrations/oracle_hva:main@bazel", + "deps": [ + { + "nodeId": "//integrations/hvr/hvr_tool:main@bazel" + } + ] + }, + { + "nodeId": "//integrations/oracle_hva2:main@bazel", + "pkgId": "//integrations/oracle_hva2:main@bazel", + "deps": [ + { + "nodeId": "//integrations/configuration_tracker:main@bazel" + }, + { + "nodeId": "//integrations/hvr:main@bazel" + }, + { + "nodeId": "//integrations/hvr/hvr_tool:main@bazel" + }, + { + "nodeId": "//integrations/hvr/unserializer:main@bazel" + }, + { + "nodeId": "//integrations/oracle:main@bazel" + }, + { + "nodeId": "//schema_migration:schema_migration_info@bazel" + }, + { + "nodeId": "//services:ab_tests@bazel" + }, + { + "nodeId": "//teleport:main@bazel" + }, + { + "nodeId": "//utils/beans:main@bazel" + }, + { + "nodeId": "//utils/binary:main@bazel" + }, + { + "nodeId": "//utils/byte_array_list:main@bazel" + }, + { + "nodeId": "//utils/byte_array_list/sync_adapter:main@bazel" + }, + { + "nodeId": "//utils/cipher_adapter:main@bazel" + }, + { + "nodeId": "//utils/oracle:main@bazel" + }, + { + "nodeId": "//utils/run_shell:main@bazel" + }, + { + "nodeId": "//utils/segmented_input_stream:main@bazel" + }, + { + "nodeId": "//utils/sleep_control:main@bazel" + }, + { + "nodeId": "//utils/socket_receiver:main@bazel" + } + ] + }, + { + "nodeId": "//integrations/outbrain:main@bazel", + "pkgId": "//integrations/outbrain:main@bazel", + "deps": [ + { + "nodeId": "org.eclipse.jetty:jetty-servlets@9.4.40.v20210413" + }, + { + "nodeId": "org.glassfish.jersey.containers:jersey-container-servlet@2.31" + } + ] + }, + { + "nodeId": "org.eclipse.jetty:jetty-servlets@9.4.40.v20210413", + "pkgId": "org.eclipse.jetty:jetty-servlets@9.4.40.v20210413", + "deps": [ + { + "nodeId": "org.eclipse.jetty:jetty-continuation@9.4.40.v20210413" + } + ] + }, + { + "nodeId": "org.eclipse.jetty:jetty-continuation@9.4.40.v20210413", + "pkgId": "org.eclipse.jetty:jetty-continuation@9.4.40.v20210413", + "deps": [] + }, + { + "nodeId": "org.glassfish.jersey.containers:jersey-container-servlet@2.31", + "pkgId": "org.glassfish.jersey.containers:jersey-container-servlet@2.31", + "deps": [] + }, + { + "nodeId": "//integrations/outreach:main@bazel", + "pkgId": "//integrations/outreach:main@bazel", + "deps": [ + { + "nodeId": "//webhook/utils:main@bazel" + } + ] + }, + { + "nodeId": "//integrations/pardot:main@bazel", + "pkgId": "//integrations/pardot:main@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/paypal:main@bazel", + "pkgId": "//integrations/paypal:main@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/pendo:main@bazel", + "pkgId": "//integrations/pendo:main@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/pinterest:main@bazel", + "pkgId": "//integrations/pinterest:main@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/pipedrive:main@bazel", + "pkgId": "//integrations/pipedrive:main@bazel", + "deps": [ + { + "nodeId": "//webhook/utils:main@bazel" + } + ] + }, + { + "nodeId": "//integrations/postgres:main@bazel", + "pkgId": "//integrations/postgres:main@bazel", + "deps": [ + { + "nodeId": "//integrations/postgres:wal_java_proto@bazel" + }, + { + "nodeId": "//integrations/postgres2020:main@bazel" + }, + { + "nodeId": "//schema_migration:schema_migration_info@bazel" + } + ] + }, + { + "nodeId": "//integrations/postgres:wal_java_proto@bazel", + "pkgId": "//integrations/postgres:wal_java_proto@bazel", + "deps": [ + { + "nodeId": "//integrations/postgres:wal_proto@bazel" + } + ] + }, + { + "nodeId": "//integrations/postgres:wal_proto@bazel", + "pkgId": "//integrations/postgres:wal_proto@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/qualtrics:main@bazel", + "pkgId": "//integrations/qualtrics:main@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/quickbooks:main@bazel", + "pkgId": "//integrations/quickbooks:main@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/recharge:main@bazel", + "pkgId": "//integrations/recharge:main@bazel", + "deps": [ + { + "nodeId": "//webhook/utils:main@bazel" + } + ] + }, + { + "nodeId": "//integrations/recurly:main@bazel", + "pkgId": "//integrations/recurly:main@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/reddit:main@bazel", + "pkgId": "//integrations/reddit:main@bazel", + "deps": [ + { + "nodeId": "//utils/token_api:main@bazel" + } + ] + }, + { + "nodeId": "//integrations/sage_intacct:main@bazel", + "pkgId": "//integrations/sage_intacct:main@bazel", + "deps": [ + { + "nodeId": "com.alibaba:druid@1.1.16" + } + ] + }, + { + "nodeId": "com.alibaba:druid@1.1.16", + "pkgId": "com.alibaba:druid@1.1.16", + "deps": [] + }, + { + "nodeId": "//integrations/sailthru:main@bazel", + "pkgId": "//integrations/sailthru:main@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/salesforce:main@bazel", + "pkgId": "//integrations/salesforce:main@bazel", + "deps": [ + { + "nodeId": "//dblike:main@bazel" + }, + { + "nodeId": "//schema_migration:schema_migration_info@bazel" + }, + { + "nodeId": "//utils/hook:main@bazel" + } + ] + }, + { + "nodeId": "//integrations/salesforce_commerce_cloud:main@bazel", + "pkgId": "//integrations/salesforce_commerce_cloud:main@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/salesforce_marketing_cloud:main@bazel", + "pkgId": "//integrations/salesforce_marketing_cloud:main@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/sap_business_bydesign:main@bazel", + "pkgId": "//integrations/sap_business_bydesign:main@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/sap_concur:main@bazel", + "pkgId": "//integrations/sap_concur:main@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/sap_s4hana:main@bazel", + "pkgId": "//integrations/sap_s4hana:main@bazel", + "deps": [ + { + "nodeId": "//dblike:main@bazel" + } + ] + }, + { + "nodeId": "//integrations/segment:main@bazel", + "pkgId": "//integrations/segment:main@bazel", + "deps": [ + { + "nodeId": "//integrations/s3:main@bazel" + }, + { + "nodeId": "//jackson_module_json_schema:main@bazel" + }, + { + "nodeId": "//maxmind:main@bazel" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-joda@2.9.8" + } + ] + }, + { + "nodeId": "//maxmind:main@bazel", + "pkgId": "//maxmind:main@bazel", + "deps": [] + }, + { + "nodeId": "com.maxmind.db:maxmind-db@1.2.2", + "pkgId": "com.maxmind.db:maxmind-db@1.2.2", + "deps": [] + }, + { + "nodeId": "com.maxmind.geoip2:geoip2@2.9.0", + "pkgId": "com.maxmind.geoip2:geoip2@2.9.0", + "deps": [] + }, + { + "nodeId": "//integrations/sendgrid:main@bazel", + "pkgId": "//integrations/sendgrid:main@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/service_now:main@bazel", + "pkgId": "//integrations/service_now:main@bazel", + "deps": [ + { + "nodeId": "//integrations/db_like_standardization:main@bazel" + } + ] + }, + { + "nodeId": "//integrations/shopify:main@bazel", + "pkgId": "//integrations/shopify:main@bazel", + "deps": [ + { + "nodeId": "//webhook/utils:main@bazel" + } + ] + }, + { + "nodeId": "//integrations/snapchat_ads:main@bazel", + "pkgId": "//integrations/snapchat_ads:main@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/snowplow:main@bazel", + "pkgId": "//integrations/snowplow:main@bazel", + "deps": [ + { + "nodeId": "//jackson_module_json_schema:main@bazel" + }, + { + "nodeId": "//maxmind:main@bazel" + }, + { + "nodeId": "com.blueconic:browscap-java@1.2.13" + }, + { + "nodeId": "com.github.java-json-tools:json-schema-core@1.2.14" + }, + { + "nodeId": "com.github.java-json-tools:json-schema-validator@2.2.14" + }, + { + "nodeId": "com.github.ua-parser:uap-java@1.4.0" + }, + { + "nodeId": "com.snowplowanalytics:referer-parser_2.11@0.3.0" + } + ] + }, + { + "nodeId": "com.blueconic:browscap-java@1.2.13", + "pkgId": "com.blueconic:browscap-java@1.2.13", + "deps": [ + { + "nodeId": "org.apache.commons:commons-csv@1.8" + } + ] + }, + { + "nodeId": "com.github.java-json-tools:json-schema-core@1.2.14", + "pkgId": "com.github.java-json-tools:json-schema-core@1.2.14", + "deps": [ + { + "nodeId": "com.github.java-json-tools:jackson-coreutils@2.0" + }, + { + "nodeId": "com.github.java-json-tools:jackson-coreutils-equivalence@1.0" + }, + { + "nodeId": "com.github.java-json-tools:uri-template@0.10" + }, + { + "nodeId": "org.mozilla:rhino@1.7.7.2" + } + ] + }, + { + "nodeId": "com.github.java-json-tools:jackson-coreutils@2.0", + "pkgId": "com.github.java-json-tools:jackson-coreutils@2.0", + "deps": [ + { + "nodeId": "com.github.java-json-tools:msg-simple@1.2" + } + ] + }, + { + "nodeId": "com.github.java-json-tools:msg-simple@1.2", + "pkgId": "com.github.java-json-tools:msg-simple@1.2", + "deps": [ + { + "nodeId": "com.github.java-json-tools:btf@1.3" + } + ] + }, + { + "nodeId": "com.github.java-json-tools:btf@1.3", + "pkgId": "com.github.java-json-tools:btf@1.3", + "deps": [] + }, + { + "nodeId": "com.github.java-json-tools:jackson-coreutils-equivalence@1.0", + "pkgId": "com.github.java-json-tools:jackson-coreutils-equivalence@1.0", + "deps": [ + { + "nodeId": "com.github.java-json-tools:jackson-coreutils@2.0" + } + ] + }, + { + "nodeId": "com.github.java-json-tools:uri-template@0.10", + "pkgId": "com.github.java-json-tools:uri-template@0.10", + "deps": [ + { + "nodeId": "com.github.java-json-tools:msg-simple@1.2" + } + ] + }, + { + "nodeId": "org.mozilla:rhino@1.7.7.2", + "pkgId": "org.mozilla:rhino@1.7.7.2", + "deps": [] + }, + { + "nodeId": "com.github.java-json-tools:json-schema-validator@2.2.14", + "pkgId": "com.github.java-json-tools:json-schema-validator@2.2.14", + "deps": [ + { + "nodeId": "com.sun.mail:mailapi@1.6.2" + }, + { + "nodeId": "com.github.java-json-tools:jackson-coreutils-equivalence@1.0" + }, + { + "nodeId": "com.googlecode.libphonenumber:libphonenumber@8.11.1" + }, + { + "nodeId": "com.github.java-json-tools:json-schema-core@1.2.14" + } + ] + }, + { + "nodeId": "com.sun.mail:mailapi@1.6.2", + "pkgId": "com.sun.mail:mailapi@1.6.2", + "deps": [] + }, + { + "nodeId": "com.googlecode.libphonenumber:libphonenumber@8.11.1", + "pkgId": "com.googlecode.libphonenumber:libphonenumber@8.11.1", + "deps": [] + }, + { + "nodeId": "com.github.ua-parser:uap-java@1.4.0", + "pkgId": "com.github.ua-parser:uap-java@1.4.0", + "deps": [] + }, + { + "nodeId": "com.snowplowanalytics:referer-parser_2.11@0.3.0", + "pkgId": "com.snowplowanalytics:referer-parser_2.11@0.3.0", + "deps": [ + { + "nodeId": "org.scala-lang:scala-library@2.11.1" + } + ] + }, + { + "nodeId": "//integrations/snowflake:main@bazel", + "pkgId": "//integrations/snowflake:main@bazel", + "deps": [ + { + "nodeId": "//teleport:main@bazel" + }, + { + "nodeId": "//utils/beans:main@bazel" + }, + { + "nodeId": "//core_implementation:main@bazel" + }, + { + "nodeId": "//geo:main@bazel" + }, + { + "nodeId": "//integrations/configuration_tracker:main@bazel" + }, + { + "nodeId": "//warehouses/snowflake:main@bazel" + } + ] + }, + { + "nodeId": "//integrations/splunk:main@bazel", + "pkgId": "//integrations/splunk:main@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/sql_server:main@bazel", + "pkgId": "//integrations/sql_server:main@bazel", + "deps": [ + { + "nodeId": "//geo:main@bazel" + }, + { + "nodeId": "//integrations/azure/utils:main@bazel" + }, + { + "nodeId": "//integrations/configuration_tracker:main@bazel" + }, + { + "nodeId": "//integrations/hvr/hvr_tool:main@bazel" + }, + { + "nodeId": "//integrations/hvr/unserializer:main@bazel" + }, + { + "nodeId": "//port_forwarder:sqlserver@bazel" + }, + { + "nodeId": "//schema_migration:main@bazel" + }, + { + "nodeId": "//services:ab_tests@bazel" + }, + { + "nodeId": "//teleport:main@bazel" + }, + { + "nodeId": "//utils/cipher_adapter:main@bazel" + }, + { + "nodeId": "//utils/run_shell:main@bazel" + }, + { + "nodeId": "//utils/segmented_input_stream:main@bazel" + }, + { + "nodeId": "//utils/sleep_control:main@bazel" + }, + { + "nodeId": "//utils/socket_receiver:main@bazel" + }, + { + "nodeId": "//utils/threading:main@bazel" + } + ] + }, + { + "nodeId": "//integrations/azure/utils:main@bazel", + "pkgId": "//integrations/azure/utils:main@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/square:main@bazel", + "pkgId": "//integrations/square:main@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/stripe:main@bazel", + "pkgId": "//integrations/stripe:main@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/survey_monkey:main@bazel", + "pkgId": "//integrations/survey_monkey:main@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/spotify_ads:main@bazel", + "pkgId": "//integrations/spotify_ads:main@bazel", + "deps": [ + { + "nodeId": "//http:curl_request@bazel" + }, + { + "nodeId": "//utils/token_api:main@bazel" + } + ] + }, + { + "nodeId": "//integrations/taboola:main@bazel", + "pkgId": "//integrations/taboola:main@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/the_trade_desk:main@bazel", + "pkgId": "//integrations/the_trade_desk:main@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/tiktok_ads:main@bazel", + "pkgId": "//integrations/tiktok_ads:main@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/twilio:main@bazel", + "pkgId": "//integrations/twilio:main@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/twitter:main@bazel", + "pkgId": "//integrations/twitter:main@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/typeform:main@bazel", + "pkgId": "//integrations/typeform:main@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/uservoice:main@bazel", + "pkgId": "//integrations/uservoice:main@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/webhooks:main@bazel", + "pkgId": "//integrations/webhooks:main@bazel", + "deps": [ + { + "nodeId": "//webhook/storage:main@bazel" + } + ] + }, + { + "nodeId": "//integrations/wordpress:main@bazel", + "pkgId": "//integrations/wordpress:main@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/workday:main@bazel", + "pkgId": "//integrations/workday:main@bazel", + "deps": [ + { + "nodeId": "//integrations/db_like_standardization:main@bazel" + } + ] + }, + { + "nodeId": "//integrations/workday_hcm:main@bazel", + "pkgId": "//integrations/workday_hcm:main@bazel", + "deps": [ + { + "nodeId": "org.projectlombok:lombok@1.18.12" + } + ] + }, + { + "nodeId": "org.projectlombok:lombok@1.18.12", + "pkgId": "org.projectlombok:lombok@1.18.12", + "deps": [] + }, + { + "nodeId": "//integrations/xero:main@bazel", + "pkgId": "//integrations/xero:main@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/yahoo_gemini:main@bazel", + "pkgId": "//integrations/yahoo_gemini:main@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/youtube_analytics:main@bazel", + "pkgId": "//integrations/youtube_analytics:main@bazel", + "deps": [ + { + "nodeId": "//http:curl_request@bazel" + }, + { + "nodeId": "//util:rest_api@bazel" + }, + { + "nodeId": "//utils/time:acmecorp_clock@bazel" + }, + { + "nodeId": "//utils/token_api:main@bazel" + } + ] + }, + { + "nodeId": "//integrations/zendesk:main@bazel", + "pkgId": "//integrations/zendesk:main@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/zendesk_chat:main@bazel", + "pkgId": "//integrations/zendesk_chat:main@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/zendesk_sell:main@bazel", + "pkgId": "//integrations/zendesk_sell:main@bazel", + "deps": [ + { + "nodeId": "//http_client:main@bazel" + } + ] + }, + { + "nodeId": "//integrations/zendesk_sunshine:main@bazel", + "pkgId": "//integrations/zendesk_sunshine:main@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/zoho_crm:main@bazel", + "pkgId": "//integrations/zoho_crm:main@bazel", + "deps": [] + }, + { + "nodeId": "//integrations/delighted:main@bazel", + "pkgId": "//integrations/delighted:main@bazel", + "deps": [] + }, + { + "nodeId": "//sources/delighted:main@bazel", + "pkgId": "//sources/delighted:main@bazel", + "deps": [ + { + "nodeId": "//sources/form:main@bazel" + }, + { + "nodeId": "//sources/mapper:main@bazel" + }, + { + "nodeId": "//sources/types:main@bazel" + }, + { + "nodeId": "//sources/bridge:main@bazel" + } + ] + }, + { + "nodeId": "//sources/mapper:main@bazel", + "pkgId": "//sources/mapper:main@bazel", + "deps": [ + { + "nodeId": "//sources/types:main@bazel" + } + ] + }, + { + "nodeId": "//saml:main@bazel", + "pkgId": "//saml:main@bazel", + "deps": [ + { + "nodeId": "io.dropwizard.metrics:metrics-core@3.1.2" + }, + { + "nodeId": "org.cryptacular:cryptacular@1.1.1" + }, + { + "nodeId": "org.opensaml:opensaml-messaging-impl@3.3.0" + }, + { + "nodeId": "org.opensaml:opensaml-saml-impl@3.3.0" + } + ] + }, + { + "nodeId": "io.dropwizard.metrics:metrics-core@3.1.2", + "pkgId": "io.dropwizard.metrics:metrics-core@3.1.2", + "deps": [] + }, + { + "nodeId": "net.shibboleth.utilities:java-support@7.3.0", + "pkgId": "net.shibboleth.utilities:java-support@7.3.0", + "deps": [] + }, + { + "nodeId": "org.cryptacular:cryptacular@1.1.1", + "pkgId": "org.cryptacular:cryptacular@1.1.1", + "deps": [] + }, + { + "nodeId": "org.opensaml:opensaml-core@3.3.0", + "pkgId": "org.opensaml:opensaml-core@3.3.0", + "deps": [ + { + "nodeId": "io.dropwizard.metrics:metrics-core@3.1.2" + } + ] + }, + { + "nodeId": "org.opensaml:opensaml-messaging-api@3.3.0", + "pkgId": "org.opensaml:opensaml-messaging-api@3.3.0", + "deps": [] + }, + { + "nodeId": "org.opensaml:opensaml-messaging-impl@3.3.0", + "pkgId": "org.opensaml:opensaml-messaging-impl@3.3.0", + "deps": [] + }, + { + "nodeId": "org.opensaml:opensaml-profile-api@3.3.0", + "pkgId": "org.opensaml:opensaml-profile-api@3.3.0", + "deps": [] + }, + { + "nodeId": "org.opensaml:opensaml-saml-api@3.3.0", + "pkgId": "org.opensaml:opensaml-saml-api@3.3.0", + "deps": [] + }, + { + "nodeId": "org.opensaml:opensaml-xmlsec-api@3.3.0", + "pkgId": "org.opensaml:opensaml-xmlsec-api@3.3.0", + "deps": [] + }, + { + "nodeId": "org.opensaml:opensaml-security-api@3.3.0", + "pkgId": "org.opensaml:opensaml-security-api@3.3.0", + "deps": [ + { + "nodeId": "org.apache.santuario:xmlsec@2.1.1" + }, + { + "nodeId": "org.cryptacular:cryptacular@1.1.1" + } + ] + }, + { + "nodeId": "org.apache.santuario:xmlsec@2.1.1", + "pkgId": "org.apache.santuario:xmlsec@2.1.1", + "deps": [] + }, + { + "nodeId": "org.opensaml:opensaml-storage-api@3.3.0", + "pkgId": "org.opensaml:opensaml-storage-api@3.3.0", + "deps": [] + }, + { + "nodeId": "org.opensaml:opensaml-soap-api@3.3.0", + "pkgId": "org.opensaml:opensaml-soap-api@3.3.0", + "deps": [] + }, + { + "nodeId": "org.opensaml:opensaml-saml-impl@3.3.0", + "pkgId": "org.opensaml:opensaml-saml-impl@3.3.0", + "deps": [] + }, + { + "nodeId": "org.opensaml:opensaml-soap-impl@3.3.0", + "pkgId": "org.opensaml:opensaml-soap-impl@3.3.0", + "deps": [] + }, + { + "nodeId": "org.opensaml:opensaml-security-impl@3.3.0", + "pkgId": "org.opensaml:opensaml-security-impl@3.3.0", + "deps": [] + }, + { + "nodeId": "org.opensaml:opensaml-xmlsec-impl@3.3.0", + "pkgId": "org.opensaml:opensaml-xmlsec-impl@3.3.0", + "deps": [] + }, + { + "nodeId": "//services/customer_data_access:main@bazel", + "pkgId": "//services/customer_data_access:main@bazel", + "deps": [ + { + "nodeId": "//zendesk_utils:main@bazel" + } + ] + }, + { + "nodeId": "//zendesk_utils:main@bazel", + "pkgId": "//zendesk_utils:main@bazel", + "deps": [] + }, + { + "nodeId": "//services/dbt:main@bazel", + "pkgId": "//services/dbt:main@bazel", + "deps": [ + { + "nodeId": "//dbt/manifest:main@bazel" + }, + { + "nodeId": "//dbt/runner:main@bazel" + }, + { + "nodeId": "//integrated_scheduler/dag:main@bazel" + }, + { + "nodeId": "//integrated_scheduler/pipeline:main@bazel" + } + ] + }, + { + "nodeId": "//services/schema_modification:main@bazel", + "pkgId": "//services/schema_modification:main@bazel", + "deps": [ + { + "nodeId": "//services/setup_test_runner:main@bazel" + } + ] + }, + { + "nodeId": "//sfdc_connect:main@bazel", + "pkgId": "//sfdc_connect:main@bazel", + "deps": [ + { + "nodeId": "//events:main@bazel" + } + ] + }, + { + "nodeId": "//ufl_storage/client:main@bazel", + "pkgId": "//ufl_storage/client:main@bazel", + "deps": [ + { + "nodeId": "//ufl_storage/storage:main@bazel" + } + ] + }, + { + "nodeId": "//ufl_storage/storage:main@bazel", + "pkgId": "//ufl_storage/storage:main@bazel", + "deps": [] + }, + { + "nodeId": "//utils/integrated_scheduler:main@bazel", + "pkgId": "//utils/integrated_scheduler:main@bazel", + "deps": [ + { + "nodeId": "//integrated_scheduler/scheduler:messages@bazel" + }, + { + "nodeId": "//integrated_scheduler/scheduler:pubsub@bazel" + }, + { + "nodeId": "//services:exceptions@bazel" + }, + { + "nodeId": "//services:integration_control@bazel" + } + ] + }, + { + "nodeId": "com.google.cloud:google-cloud-firestore@1.10.0", + "pkgId": "com.google.cloud:google-cloud-firestore@1.10.0", + "deps": [ + { + "nodeId": "com.google.api.grpc:proto-google-cloud-firestore-v1beta1@0.63.0" + }, + { + "nodeId": "io.opencensus:opencensus-contrib-grpc-util@0.21.0" + }, + { + "nodeId": "com.google.api.grpc:proto-google-cloud-firestore-admin-v1@1.10.0" + }, + { + "nodeId": "com.google.api.grpc:proto-google-cloud-firestore-v1@1.10.0" + } + ] + }, + { + "nodeId": "com.google.api.grpc:proto-google-cloud-firestore-v1beta1@0.63.0", + "pkgId": "com.google.api.grpc:proto-google-cloud-firestore-v1beta1@0.63.0", + "deps": [] + }, + { + "nodeId": "io.opencensus:opencensus-contrib-grpc-util@0.21.0", + "pkgId": "io.opencensus:opencensus-contrib-grpc-util@0.21.0", + "deps": [] + }, + { + "nodeId": "com.google.api.grpc:proto-google-cloud-firestore-admin-v1@1.10.0", + "pkgId": "com.google.api.grpc:proto-google-cloud-firestore-admin-v1@1.10.0", + "deps": [] + }, + { + "nodeId": "com.google.api.grpc:proto-google-cloud-firestore-v1@1.10.0", + "pkgId": "com.google.api.grpc:proto-google-cloud-firestore-v1@1.10.0", + "deps": [] + }, + { + "nodeId": "com.lambdaworks:scrypt@1.4.0", + "pkgId": "com.lambdaworks:scrypt@1.4.0", + "deps": [] + }, + { + "nodeId": "org.eclipse.jetty.websocket:javax-websocket-server-impl@9.4.40.v20210413", + "pkgId": "org.eclipse.jetty.websocket:javax-websocket-server-impl@9.4.40.v20210413", + "deps": [ + { + "nodeId": "org.eclipse.jetty:jetty-annotations@9.4.40.v20210413" + }, + { + "nodeId": "org.eclipse.jetty.websocket:javax-websocket-client-impl@9.4.40.v20210413" + }, + { + "nodeId": "org.eclipse.jetty.websocket:websocket-server@9.4.40.v20210413" + } + ] + }, + { + "nodeId": "org.eclipse.jetty:jetty-annotations@9.4.40.v20210413", + "pkgId": "org.eclipse.jetty:jetty-annotations@9.4.40.v20210413", + "deps": [ + { + "nodeId": "org.ow2.asm:asm-commons@8.0.1" + }, + { + "nodeId": "org.eclipse.jetty:jetty-webapp@9.4.40.v20210413" + }, + { + "nodeId": "org.eclipse.jetty:jetty-plus@9.4.40.v20210413" + } + ] + }, + { + "nodeId": "org.ow2.asm:asm-commons@8.0.1", + "pkgId": "org.ow2.asm:asm-commons@8.0.1", + "deps": [] + }, + { + "nodeId": "org.eclipse.jetty:jetty-webapp@9.4.40.v20210413", + "pkgId": "org.eclipse.jetty:jetty-webapp@9.4.40.v20210413", + "deps": [ + { + "nodeId": "org.eclipse.jetty:jetty-xml@9.4.40.v20210413" + } + ] + }, + { + "nodeId": "org.eclipse.jetty:jetty-xml@9.4.40.v20210413", + "pkgId": "org.eclipse.jetty:jetty-xml@9.4.40.v20210413", + "deps": [] + }, + { + "nodeId": "org.eclipse.jetty:jetty-plus@9.4.40.v20210413", + "pkgId": "org.eclipse.jetty:jetty-plus@9.4.40.v20210413", + "deps": [ + { + "nodeId": "org.eclipse.jetty:jetty-jndi@9.4.40.v20210413" + }, + { + "nodeId": "org.eclipse.jetty:jetty-webapp@9.4.40.v20210413" + } + ] + }, + { + "nodeId": "org.eclipse.jetty:jetty-jndi@9.4.40.v20210413", + "pkgId": "org.eclipse.jetty:jetty-jndi@9.4.40.v20210413", + "deps": [] + }, + { + "nodeId": "org.eclipse.jetty.websocket:javax-websocket-client-impl@9.4.40.v20210413", + "pkgId": "org.eclipse.jetty.websocket:javax-websocket-client-impl@9.4.40.v20210413", + "deps": [ + { + "nodeId": "javax.websocket:javax.websocket-client-api@1.0" + }, + { + "nodeId": "org.eclipse.jetty.websocket:websocket-client@9.4.40.v20210413" + } + ] + }, + { + "nodeId": "javax.websocket:javax.websocket-client-api@1.0", + "pkgId": "javax.websocket:javax.websocket-client-api@1.0", + "deps": [] + }, + { + "nodeId": "org.eclipse.jetty.websocket:websocket-client@9.4.40.v20210413", + "pkgId": "org.eclipse.jetty.websocket:websocket-client@9.4.40.v20210413", + "deps": [ + { + "nodeId": "org.eclipse.jetty:jetty-client@9.4.40.v20210413" + } + ] + }, + { + "nodeId": "org.eclipse.jetty:jetty-client@9.4.40.v20210413", + "pkgId": "org.eclipse.jetty:jetty-client@9.4.40.v20210413", + "deps": [] + }, + { + "nodeId": "org.eclipse.jetty.websocket:websocket-common@9.4.40.v20210413", + "pkgId": "org.eclipse.jetty.websocket:websocket-common@9.4.40.v20210413", + "deps": [ + { + "nodeId": "org.eclipse.jetty.websocket:websocket-api@9.4.40.v20210413" + } + ] + }, + { + "nodeId": "org.eclipse.jetty.websocket:websocket-api@9.4.40.v20210413", + "pkgId": "org.eclipse.jetty.websocket:websocket-api@9.4.40.v20210413", + "deps": [] + }, + { + "nodeId": "org.eclipse.jetty.websocket:websocket-server@9.4.40.v20210413", + "pkgId": "org.eclipse.jetty.websocket:websocket-server@9.4.40.v20210413", + "deps": [ + { + "nodeId": "org.eclipse.jetty.websocket:websocket-servlet@9.4.40.v20210413" + }, + { + "nodeId": "org.eclipse.jetty.websocket:websocket-client@9.4.40.v20210413" + } + ] + }, + { + "nodeId": "org.eclipse.jetty.websocket:websocket-servlet@9.4.40.v20210413", + "pkgId": "org.eclipse.jetty.websocket:websocket-servlet@9.4.40.v20210413", + "deps": [ + { + "nodeId": "org.eclipse.jetty.websocket:websocket-api@9.4.40.v20210413" + } + ] + }, + { + "nodeId": "org.glassfish.jersey.media:jersey-media-sse@2.31", + "pkgId": "org.glassfish.jersey.media:jersey-media-sse@2.31", + "deps": [] + }, + { + "nodeId": "meta-common-packages@meta", + "pkgId": "meta-common-packages@meta", + "deps": [ + { + "nodeId": "com.google.code.findbugs:jsr305@3.0.2" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310@2.9.8" + }, + { + "nodeId": "com.google.guava:guava@25.1-jre" + }, + { + "nodeId": "com.google.errorprone:error_prone_annotations@2.13.1" + }, + { + "nodeId": "com.google.j2objc:j2objc-annotations@1.3" + }, + { + "nodeId": "org.checkerframework:checker-qual@3.22.0" + }, + { + "nodeId": "org.codehaus.mojo:animal-sniffer-annotations@1.21" + }, + { + "nodeId": "commons-codec:commons-codec@1.10" + }, + { + "nodeId": "org.apache.commons:commons-lang3@3.12.0" + }, + { + "nodeId": "com.google.api:gax@2.3.0" + }, + { + "nodeId": "com.google.auth:google-auth-library-oauth2-http@0.22.0" + }, + { + "nodeId": "com.google.http-client:google-http-client@1.39.2" + }, + { + "nodeId": "org.apache.httpcomponents:httpcore@4.4.13" + }, + { + "nodeId": "org.apache.httpcomponents:httpclient@4.5.13" + }, + { + "nodeId": "commons-logging:commons-logging@1.2" + }, + { + "nodeId": "io.opencensus:opencensus-contrib-http-util@0.11.1" + }, + { + "nodeId": "io.opencensus:opencensus-api@0.12.3" + }, + { + "nodeId": "io.grpc:grpc-context@1.32.2" + }, + { + "nodeId": "com.google.auto.value:auto-value-annotations@1.9" + }, + { + "nodeId": "com.google.http-client:google-http-client-jackson2@1.35.0" + }, + { + "nodeId": "com.google.auth:google-auth-library-credentials@0.9.1" + }, + { + "nodeId": "com.google.api:api-common@1.9.0" + }, + { + "nodeId": "javax.annotation:javax.annotation-api@1.3.2" + }, + { + "nodeId": "org.threeten:threetenbp@1.3.3" + }, + { + "nodeId": "com.google.api:gax-grpc@2.3.0" + }, + { + "nodeId": "io.grpc:grpc-stub@1.32.2" + }, + { + "nodeId": "io.grpc:grpc-api@1.32.2" + }, + { + "nodeId": "io.grpc:grpc-auth@1.32.2" + }, + { + "nodeId": "com.google.api.grpc:proto-google-common-protos@1.15.0" + }, + { + "nodeId": "com.google.protobuf:protobuf-java@3.18.2" + }, + { + "nodeId": "io.grpc:grpc-alts@1.46.0" + }, + { + "nodeId": "org.conscrypt:conscrypt-openjdk-uber@2.5.1" + }, + { + "nodeId": "io.grpc:grpc-netty-shaded@1.32.2" + }, + { + "nodeId": "io.grpc:grpc-core@1.32.2" + }, + { + "nodeId": "com.google.android:annotations@4.1.1.4" + }, + { + "nodeId": "com.google.code.gson:gson@2.9.0" + }, + { + "nodeId": "io.perfmark:perfmark-api@0.25.0" + }, + { + "nodeId": "io.grpc:grpc-grpclb@1.46.0" + }, + { + "nodeId": "com.google.protobuf:protobuf-java-util@3.18.2" + }, + { + "nodeId": "io.grpc:grpc-protobuf@1.32.2" + }, + { + "nodeId": "io.grpc:grpc-protobuf-lite@1.32.2" + }, + { + "nodeId": "com.google.api.grpc:proto-google-iam-v1@0.13.0" + }, + { + "nodeId": "com.google.cloud:google-cloud-core-grpc@1.19.0" + }, + { + "nodeId": "com.google.cloud:google-cloud-core@1.48.0" + }, + { + "nodeId": "joda-time:joda-time@2.9.2" + }, + { + "nodeId": "com.sun.xml.bind:jaxb-core@2.2.11" + }, + { + "nodeId": "com.sun.xml.bind:jaxb-impl@2.2.11" + }, + { + "nodeId": "jakarta.ws.rs:jakarta.ws.rs-api@2.1.6" + }, + { + "nodeId": "javax.xml.bind:jaxb-api@2.2.2" + }, + { + "nodeId": "javax.activation:activation@1.1" + }, + { + "nodeId": "javax.xml.stream:stax-api@1.0-2" + }, + { + "nodeId": "org.glassfish.hk2.external:jakarta.inject@2.6.1" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-core@1.12.84" + }, + { + "nodeId": "com.fasterxml.jackson.dataformat:jackson-dataformat-cbor@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.dataformat:jackson-dataformat-yaml@2.9.8" + }, + { + "nodeId": "org.yaml:snakeyaml@1.23" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-base@2.9.8" + }, + { + "nodeId": "com.fasterxml.jackson.module:jackson-module-jaxb-annotations@2.9.8" + }, + { + "nodeId": "com.intellij:annotations@12.0" + }, + { + "nodeId": "io.netty:netty-buffer@4.1.50.Final" + }, + { + "nodeId": "javax.xml.soap:javax.xml.soap-api@1.4.0" + }, + { + "nodeId": "org.bouncycastle:bcpkix-jdk15on@1.70" + }, + { + "nodeId": "org.bouncycastle:bcprov-jdk15on@1.70" + }, + { + "nodeId": "org.bouncycastle:bcprov-jdk15to18@1.70" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-client@2.31" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-common@2.31" + }, + { + "nodeId": "jakarta.annotation:jakarta.annotation-api@1.3.5" + }, + { + "nodeId": "org.jooq:jool-java-8@0.9.14" + }, + { + "nodeId": "commons-configuration:commons-configuration@1.10" + }, + { + "nodeId": "commons-lang:commons-lang@2.6" + }, + { + "nodeId": "org.json:json@20171018" + }, + { + "nodeId": "org.postgresql:postgresql@42.3.3" + }, + { + "nodeId": "com.zaxxer:HikariCP@3.4.1" + }, + { + "nodeId": "org.slf4j:slf4j-api@1.7.13" + }, + { + "nodeId": "commons-io:commons-io@2.4" + }, + { + "nodeId": "com.mchange:c3p0@0.9.5.1" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-logs@1.12.84" + }, + { + "nodeId": "com.amazonaws:jmespath-java@1.11.91" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-s3@1.12.84" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-kms@1.12.84" + }, + { + "nodeId": "javax.servlet:javax.servlet-api@3.1.0" + }, + { + "nodeId": "org.eclipse.jetty:jetty-server@9.4.40.v20210413" + }, + { + "nodeId": "org.eclipse.jetty:jetty-http@9.4.40.v20210413" + }, + { + "nodeId": "org.eclipse.jetty:jetty-io@9.4.40.v20210413" + }, + { + "nodeId": "org.eclipse.jetty:jetty-util@9.4.40.v20210413" + }, + { + "nodeId": "org.glassfish.hk2:hk2-api@2.6.1" + }, + { + "nodeId": "org.glassfish.jersey.core:jersey-server@2.31" + }, + { + "nodeId": "org.glassfish.jersey.inject:jersey-hk2@2.31" + }, + { + "nodeId": "org.javassist:javassist@3.21.0-GA" + }, + { + "nodeId": "org.apache.velocity:velocity@1.7" + }, + { + "nodeId": "commons-collections:commons-collections@3.2.2" + }, + { + "nodeId": "org.ow2.asm:asm-tree@8.0.1" + }, + { + "nodeId": "org.ow2.asm:asm@8.0.1" + }, + { + "nodeId": "org.ow2.asm:asm-analysis@8.0.1" + }, + { + "nodeId": "com.ibm.icu:icu4j@62.1" + }, + { + "nodeId": "org.glassfish.jersey.security:oauth1-client@2.31" + }, + { + "nodeId": "org.glassfish.jersey.security:oauth1-signature@2.31" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-dynamodb@1.12.84" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-ec2@1.12.84" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-sts@1.12.84" + }, + { + "nodeId": "javax.validation:validation-api@1.1.0.Final" + }, + { + "nodeId": "com.fasterxml.jackson.dataformat:jackson-dataformat-smile@2.9.8" + }, + { + "nodeId": "com.google.api-client:google-api-client@1.31.1" + }, + { + "nodeId": "com.google.oauth-client:google-oauth-client@1.23.0" + }, + { + "nodeId": "io.micrometer:micrometer-core@1.5.3" + }, + { + "nodeId": "org.hdrhistogram:HdrHistogram@2.1.12" + }, + { + "nodeId": "org.slf4j:jcl-over-slf4j@1.7.32" + }, + { + "nodeId": "commons-net:commons-net@3.3" + }, + { + "nodeId": "com.google.api.grpc:proto-google-cloud-monitoring-v3@1.75.0" + }, + { + "nodeId": "com.google.api.grpc:proto-google-cloud-pubsub-v1@1.101.1" + }, + { + "nodeId": "com.google.guava:listenablefuture@9999.0-empty-to-avoid-conflict-with-guava" + }, + { + "nodeId": "com.google.guava:failureaccess@1.0.1" + }, + { + "nodeId": "com.google.apis:google-api-services-bigquery@v2-rev459-1.25.0" + }, + { + "nodeId": "com.google.apis:google-api-services-cloudresourcemanager@v1-rev495-1.23.0" + }, + { + "nodeId": "com.google.apis:google-api-services-iam@v1-rev193-1.22.0" + }, + { + "nodeId": "com.google.apis:google-api-services-storage@v1-rev20200326-1.30.9" + }, + { + "nodeId": "com.google.cloud:google-cloud-datastore@1.70.0" + }, + { + "nodeId": "org.codehaus.jackson:jackson-core-asl@1.9.13" + }, + { + "nodeId": "com.google.cloud:google-cloud-core-http@1.48.0" + }, + { + "nodeId": "com.google.cloud:google-cloud-monitoring@1.93.0" + }, + { + "nodeId": "com.google.cloud:google-cloud-pubsub@1.119.1" + }, + { + "nodeId": "com.google.cloud:google-cloud-storage@1.108.0" + }, + { + "nodeId": "io.jsonwebtoken:jjwt@0.9.0" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-cloudwatch@1.12.84" + }, + { + "nodeId": "com.fasterxml.jackson.dataformat:jackson-dataformat-xml@2.9.8" + }, + { + "nodeId": "org.codehaus.woodstox:stax2-api@3.1.4" + }, + { + "nodeId": "com.fasterxml.woodstox:woodstox-core@5.0.3" + }, + { + "nodeId": "io.projectreactor:reactor-core@3.4.11" + }, + { + "nodeId": "org.jetbrains.kotlin:kotlin-stdlib@1.3.50" + }, + { + "nodeId": "org.jetbrains:annotations@17.0.0" + }, + { + "nodeId": "org.jetbrains.kotlin:kotlin-stdlib-common@1.3.71" + }, + { + "nodeId": "net.sf.jopt-simple:jopt-simple@5.0.4" + }, + { + "nodeId": "org.rocksdb:rocksdbjni@6.8.1" + }, + { + "nodeId": "org.xerial.snappy:snappy-java@1.1.8.4" + }, + { + "nodeId": "org.eclipse.jetty:jetty-servlet@9.4.40.v20210413" + }, + { + "nodeId": "org.glassfish.jersey.containers:jersey-container-servlet-core@2.31" + }, + { + "nodeId": "com.github.luben:zstd-jni@1.4.9-1" + }, + { + "nodeId": "com.microsoft.azure:azure-storage@8.6.3" + }, + { + "nodeId": "org.apache.avro:avro@1.11.0" + }, + { + "nodeId": "org.apache.commons:commons-compress@1.16" + }, + { + "nodeId": "org.checkerframework:checker-compat-qual@2.5.5" + }, + { + "nodeId": "info.picocli:picocli@4.5.1" + }, + { + "nodeId": "com.github.f4b6a3:ulid-creator@4.0.0" + }, + { + "nodeId": "mysql:mysql-connector-java@8.0.13" + }, + { + "nodeId": "org.mariadb.jdbc:mariadb-java-client@2.5.4" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-redshift@1.12.84" + }, + { + "nodeId": "com.microsoft.sqlserver:mssql-jdbc@9.4.0.jre11" + }, + { + "nodeId": "net.snowflake:snowflake-jdbc@3.13.18" + }, + { + "nodeId": "net.minidev:json-smart@2.3" + }, + { + "nodeId": "javax.websocket:javax.websocket-api@1.1" + }, + { + "nodeId": "junit:junit@4.13" + }, + { + "nodeId": "org.hamcrest:hamcrest@2.2" + }, + { + "nodeId": "org.mockito:mockito-core@2.28.2" + }, + { + "nodeId": "com.github.jsqlparser:jsqlparser@4.2" + }, + { + "nodeId": "com.walkmind.extensions:collections@1.20" + }, + { + "nodeId": "org.clojure:clojure@1.10.1" + }, + { + "nodeId": "com.squareup.okhttp:okhttp@2.7.5" + }, + { + "nodeId": "com.squareup.okio:okio@1.13.0" + }, + { + "nodeId": "com.nimbusds:nimbus-jose-jwt@5.5" + }, + { + "nodeId": "org.apache.commons:commons-collections4@4.1" + }, + { + "nodeId": "com.google.cloud:google-cloud-bigquery@1.48.0" + }, + { + "nodeId": "org.apache.hadoop:hadoop-common@2.7.7" + }, + { + "nodeId": "org.mortbay.jetty:jetty@6.1.26" + }, + { + "nodeId": "org.mortbay.jetty:jetty-util@6.1.26" + }, + { + "nodeId": "org.codehaus.jackson:jackson-mapper-asl@1.9.13" + }, + { + "nodeId": "org.apache.zookeeper:zookeeper@3.4.6" + }, + { + "nodeId": "log4j:log4j@1.2.17" + }, + { + "nodeId": "stax:stax-api@1.0.1" + }, + { + "nodeId": "com.sun.jersey:jersey-core@1.13" + }, + { + "nodeId": "org.apache.hadoop:hadoop-auth@2.7.7" + }, + { + "nodeId": "com.sun.jersey:jersey-server@1.9" + }, + { + "nodeId": "org.apache.hadoop:hadoop-annotations@2.7.7" + }, + { + "nodeId": "org.apache.hadoop:hadoop-mapreduce-client-core@2.7.7" + }, + { + "nodeId": "com.google.inject.extensions:guice-servlet@3.0" + }, + { + "nodeId": "com.google.inject:guice@4.2.2" + }, + { + "nodeId": "org.apache.parquet:parquet-avro@1.12.2" + }, + { + "nodeId": "org.apache.parquet:parquet-column@1.12.2" + }, + { + "nodeId": "org.apache.parquet:parquet-common@1.12.2" + }, + { + "nodeId": "org.apache.parquet:parquet-format-structures@1.12.2" + }, + { + "nodeId": "org.apache.parquet:parquet-hadoop@1.12.2" + }, + { + "nodeId": "org.apache.iceberg:iceberg-api@0.13.1" + }, + { + "nodeId": "com.github.stephenc.findbugs:findbugs-annotations@1.3.9-1" + }, + { + "nodeId": "org.apache.iceberg:iceberg-bundled-guava@0.13.1" + }, + { + "nodeId": "org.apache.iceberg:iceberg-core@0.13.1" + }, + { + "nodeId": "com.google.api-ads:ads-lib@4.4.0" + }, + { + "nodeId": "commons-beanutils:commons-beanutils@1.9.2" + }, + { + "nodeId": "wsdl4j:wsdl4j@1.6.2" + }, + { + "nodeId": "org.apache.poi:poi-ooxml@3.17" + }, + { + "nodeId": "org.apache.poi:poi@3.17" + }, + { + "nodeId": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-xml-provider@2.9.8" + }, + { + "nodeId": "com.google.auto.service:auto-service@1.0-rc2" + }, + { + "nodeId": "com.google.api-ads:google-ads-stubs-lib@19.0.0" + }, + { + "nodeId": "io.confluent:common-utils@5.5.1" + }, + { + "nodeId": "io.confluent:kafka-schema-registry-client@5.5.1" + }, + { + "nodeId": "io.projectreactor:reactor-core@3.4.10" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-annotations@2.12.5" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-databind@2.12.5" + }, + { + "nodeId": "com.fasterxml.jackson.core:jackson-core@2.12.5" + }, + { + "nodeId": "io.netty:netty-common@4.1.68.Final" + }, + { + "nodeId": "io.netty:netty-codec@4.1.68.Final" + }, + { + "nodeId": "io.netty:netty-buffer@4.1.68.Final" + }, + { + "nodeId": "io.netty:netty-transport@4.1.68.Final" + }, + { + "nodeId": "io.netty:netty-resolver@4.1.68.Final" + }, + { + "nodeId": "io.netty:netty-codec-http@4.1.68.Final" + }, + { + "nodeId": "io.netty:netty-handler@4.1.68.Final" + }, + { + "nodeId": "io.netty:netty-resolver-dns@4.1.68.Final" + }, + { + "nodeId": "io.netty:netty-transport-native-epoll:jar:linux-x86_64@4.1.68.Final" + }, + { + "nodeId": "io.netty:netty-transport-native-unix-common@4.1.68.Final" + }, + { + "nodeId": "org.apache.cxf:cxf-core@3.2.14" + }, + { + "nodeId": "org.apache.cxf:cxf-rt-bindings-soap@3.2.14" + }, + { + "nodeId": "org.apache.cxf:cxf-rt-wsdl@3.2.14" + }, + { + "nodeId": "io.opentelemetry:opentelemetry-api@0.13.1" + }, + { + "nodeId": "io.opentelemetry:opentelemetry-api-common@0.13.1" + }, + { + "nodeId": "io.opentelemetry:opentelemetry-context@0.13.1" + }, + { + "nodeId": "io.opentelemetry:opentelemetry-api-trace@0.13.1" + }, + { + "nodeId": "io.opentelemetry:opentelemetry-extension-annotations@0.13.1" + }, + { + "nodeId": "com.amazonaws:aws-java-sdk-kinesis@1.12.84" + }, + { + "nodeId": "org.apache.lucene:lucene-core@8.9.0" + }, + { + "nodeId": "org.apache.httpcomponents:httpcore-nio@4.4.13" + }, + { + "nodeId": "org.elasticsearch:elasticsearch-core@7.14.0" + }, + { + "nodeId": "org.apache.logging.log4j:log4j-api@2.17.1" + }, + { + "nodeId": "org.opensearch:opensearch-core@1.1.0" + }, + { + "nodeId": "com.sun.xml.messaging.saaj:saaj-impl@1.3.25" + }, + { + "nodeId": "com.opencsv:opencsv@4.1" + }, + { + "nodeId": "com.maxmind.db:maxmind-db@1.2.2" + }, + { + "nodeId": "com.maxmind.geoip2:geoip2@2.9.0" + }, + { + "nodeId": "net.shibboleth.utilities:java-support@7.3.0" + }, + { + "nodeId": "org.opensaml:opensaml-core@3.3.0" + }, + { + "nodeId": "org.opensaml:opensaml-messaging-api@3.3.0" + }, + { + "nodeId": "org.opensaml:opensaml-profile-api@3.3.0" + }, + { + "nodeId": "org.opensaml:opensaml-saml-api@3.3.0" + }, + { + "nodeId": "org.opensaml:opensaml-xmlsec-api@3.3.0" + }, + { + "nodeId": "org.opensaml:opensaml-security-api@3.3.0" + }, + { + "nodeId": "org.opensaml:opensaml-storage-api@3.3.0" + }, + { + "nodeId": "org.opensaml:opensaml-soap-api@3.3.0" + }, + { + "nodeId": "org.opensaml:opensaml-soap-impl@3.3.0" + }, + { + "nodeId": "org.opensaml:opensaml-security-impl@3.3.0" + }, + { + "nodeId": "org.opensaml:opensaml-xmlsec-impl@3.3.0" + }, + { + "nodeId": "org.eclipse.jetty.websocket:websocket-common@9.4.40.v20210413" + }, + { + "nodeId": "//core_interfaces:main@bazel" + }, + { + "nodeId": "//database:enums@bazel" + }, + { + "nodeId": "//logger:main@bazel" + }, + { + "nodeId": "//crypto:main@bazel" + }, + { + "nodeId": "//json:main@bazel" + }, + { + "nodeId": "@com_fasterxml_jackson_dataformat_jackson_dataformat_csv//:main@bazel" + }, + { + "nodeId": "//logger:acmecorp_logger@bazel" + }, + { + "nodeId": "//utils/time:main@bazel" + }, + { + "nodeId": "//utils/exceptions:main@bazel" + }, + { + "nodeId": "//globals:main@bazel" + }, + { + "nodeId": "//lambda:main@bazel" + }, + { + "nodeId": "//warehouses/common:warehouse_type@bazel" + }, + { + "nodeId": "//secred/client:main@bazel" + }, + { + "nodeId": "//secred/common:main@bazel" + }, + { + "nodeId": "//secrets/common:main@bazel" + }, + { + "nodeId": "//util:main@bazel" + }, + { + "nodeId": "//secred/util:main@bazel" + }, + { + "nodeId": "//secrets/services:main@bazel" + }, + { + "nodeId": "//feature_flag:main@bazel" + }, + { + "nodeId": "//database:postgresql_jdbc_fix@bazel" + }, + { + "nodeId": "//database/exceptions:main@bazel" + }, + { + "nodeId": "//utils/nullability:main@bazel" + }, + { + "nodeId": "//slack:main@bazel" + }, + { + "nodeId": "//http:main@bazel" + }, + { + "nodeId": "//forms:main@bazel" + }, + { + "nodeId": "//markdown:main@bazel" + }, + { + "nodeId": "//utils/validations:main@bazel" + }, + { + "nodeId": "//database:main@bazel" + }, + { + "nodeId": "//dynamo:main@bazel" + }, + { + "nodeId": "//aws:main@bazel" + }, + { + "nodeId": "//secrets/system:main@bazel" + }, + { + "nodeId": "//common:main@bazel" + }, + { + "nodeId": "//database:tls_verify@bazel" + }, + { + "nodeId": "//services:main@bazel" + }, + { + "nodeId": "//google_cloud:main@bazel" + }, + { + "nodeId": "//utils/serializers:main@bazel" + }, + { + "nodeId": "//logging:main@bazel" + }, + { + "nodeId": "//micrometer:main@bazel" + }, + { + "nodeId": "//utils/sync_statistics:main@bazel" + }, + { + "nodeId": "//warehouses/common:feature_flags@bazel" + }, + { + "nodeId": "//heartbeat:lite@bazel" + }, + { + "nodeId": "//ssh:main@bazel" + }, + { + "nodeId": "@jsch_patched//:main@bazel" + }, + { + "nodeId": "//warehouses/common:main@bazel" + }, + { + "nodeId": "//warehouses/common-local:writer_base@bazel" + }, + { + "nodeId": "//services/resync:main@bazel" + }, + { + "nodeId": "//core_utils:main@bazel" + }, + { + "nodeId": "//integrations/db:main@bazel" + }, + { + "nodeId": "//integrations/isolated_endpoint_sync:main@bazel" + }, + { + "nodeId": "//integrations/speed_test:main@bazel" + }, + { + "nodeId": "//port_forwarder:main@bazel" + }, + { + "nodeId": "//verification:main@bazel" + }, + { + "nodeId": "//secrets/integration:main@bazel" + }, + { + "nodeId": "//webhook/client:main@bazel" + }, + { + "nodeId": "//integrations/bidirectional_cube:main@bazel" + }, + { + "nodeId": "//integrations/priority_sync:main@bazel" + }, + { + "nodeId": "//integrations/file:main@bazel" + }, + { + "nodeId": "//ecomm:main@bazel" + }, + { + "nodeId": "//integrations/cube:main@bazel" + } + ] + } + ] + } + } +} diff --git a/bazel2snyk/test/fixtures/maven/maven_multiple_targets.xml b/bazel2snyk/test/fixtures/maven/maven_multiple_targets.xml new file mode 100644 index 0000000..0b2e097 --- /dev/null +++ b/bazel2snyk/test/fixtures/maven/maven_multiple_targets.xml @@ -0,0 +1,183951 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/bazel2snyk/test/fixtures/pip/pip_depgraph.json b/bazel2snyk/test/fixtures/pip/pip_depgraph.json new file mode 100644 index 0000000..463dca0 --- /dev/null +++ b/bazel2snyk/test/fixtures/pip/pip_depgraph.json @@ -0,0 +1,306 @@ +{ + "depGraph": { + "schemaVersion": "1.2.0", + "pkgManager": { + "name": "pip" + }, + "pkgs": [ + { + "id": "//snyk/scripts/cli:main@bazel", + "info": { + "name": "//snyk/scripts/cli:main", + "version": "bazel" + } + }, + { + "id": "pysnyk@0.9.3", + "info": { + "name": "pysnyk", + "version": "0.9.3" + } + }, + { + "id": "deprecation@2.1.0", + "info": { + "name": "deprecation", + "version": "2.1.0" + } + }, + { + "id": "packaging@21.3", + "info": { + "name": "packaging", + "version": "21.3" + } + }, + { + "id": "pyparsing@3.0.9", + "info": { + "name": "pyparsing", + "version": "3.0.9" + } + }, + { + "id": "importlib_metadata@4.13.0", + "info": { + "name": "importlib_metadata", + "version": "4.13.0" + } + }, + { + "id": "zipp@3.10.0", + "info": { + "name": "zipp", + "version": "3.10.0" + } + }, + { + "id": "mashumaro@3.1", + "info": { + "name": "mashumaro", + "version": "3.1" + } + }, + { + "id": "typing_extensions@4.4.0", + "info": { + "name": "typing_extensions", + "version": "4.4.0" + } + }, + { + "id": "requests@2.28.1", + "info": { + "name": "requests", + "version": "2.28.1" + } + }, + { + "id": "certifi@2022.9.24", + "info": { + "name": "certifi", + "version": "2022.9.24" + } + }, + { + "id": "charset_normalizer@2.1.1", + "info": { + "name": "charset_normalizer", + "version": "2.1.1" + } + }, + { + "id": "idna@3.4", + "info": { + "name": "idna", + "version": "3.4" + } + }, + { + "id": "urllib3@1.26.12", + "info": { + "name": "urllib3", + "version": "1.26.12" + } + }, + { + "id": "retry@0.9.2", + "info": { + "name": "retry", + "version": "0.9.2" + } + }, + { + "id": "decorator@5.1.1", + "info": { + "name": "decorator", + "version": "5.1.1" + } + }, + { + "id": "py@1.11.0", + "info": { + "name": "py", + "version": "1.11.0" + } + }, + { + "id": "typer@0.4.1", + "info": { + "name": "typer", + "version": "0.4.1" + } + }, + { + "id": "click@8.1.3", + "info": { + "name": "click", + "version": "8.1.3" + } + } + ], + "graph": { + "rootNodeId": "//snyk/scripts/cli:main@bazel", + "nodes": [ + { + "nodeId": "//snyk/scripts/cli:main@bazel", + "pkgId": "//snyk/scripts/cli:main@bazel", + "deps": [ + { + "nodeId": "pysnyk@0.9.3" + }, + { + "nodeId": "typer@0.4.1" + } + ] + }, + { + "nodeId": "pysnyk@0.9.3", + "pkgId": "pysnyk@0.9.3", + "deps": [ + { + "nodeId": "deprecation@2.1.0" + }, + { + "nodeId": "importlib_metadata@4.13.0" + }, + { + "nodeId": "mashumaro@3.1" + }, + { + "nodeId": "requests@2.28.1" + }, + { + "nodeId": "retry@0.9.2" + } + ] + }, + { + "nodeId": "deprecation@2.1.0", + "pkgId": "deprecation@2.1.0", + "deps": [ + { + "nodeId": "packaging@21.3" + } + ] + }, + { + "nodeId": "packaging@21.3", + "pkgId": "packaging@21.3", + "deps": [ + { + "nodeId": "pyparsing@3.0.9" + } + ] + }, + { + "nodeId": "pyparsing@3.0.9", + "pkgId": "pyparsing@3.0.9", + "deps": [] + }, + { + "nodeId": "importlib_metadata@4.13.0", + "pkgId": "importlib_metadata@4.13.0", + "deps": [ + { + "nodeId": "zipp@3.10.0" + } + ] + }, + { + "nodeId": "zipp@3.10.0", + "pkgId": "zipp@3.10.0", + "deps": [] + }, + { + "nodeId": "mashumaro@3.1", + "pkgId": "mashumaro@3.1", + "deps": [ + { + "nodeId": "typing_extensions@4.4.0" + } + ] + }, + { + "nodeId": "typing_extensions@4.4.0", + "pkgId": "typing_extensions@4.4.0", + "deps": [] + }, + { + "nodeId": "requests@2.28.1", + "pkgId": "requests@2.28.1", + "deps": [ + { + "nodeId": "certifi@2022.9.24" + }, + { + "nodeId": "charset_normalizer@2.1.1" + }, + { + "nodeId": "idna@3.4" + }, + { + "nodeId": "urllib3@1.26.12" + } + ] + }, + { + "nodeId": "certifi@2022.9.24", + "pkgId": "certifi@2022.9.24", + "deps": [] + }, + { + "nodeId": "charset_normalizer@2.1.1", + "pkgId": "charset_normalizer@2.1.1", + "deps": [] + }, + { + "nodeId": "idna@3.4", + "pkgId": "idna@3.4", + "deps": [] + }, + { + "nodeId": "urllib3@1.26.12", + "pkgId": "urllib3@1.26.12", + "deps": [] + }, + { + "nodeId": "retry@0.9.2", + "pkgId": "retry@0.9.2", + "deps": [ + { + "nodeId": "decorator@5.1.1" + }, + { + "nodeId": "py@1.11.0" + } + ] + }, + { + "nodeId": "decorator@5.1.1", + "pkgId": "decorator@5.1.1", + "deps": [] + }, + { + "nodeId": "py@1.11.0", + "pkgId": "py@1.11.0", + "deps": [] + }, + { + "nodeId": "typer@0.4.1", + "pkgId": "typer@0.4.1", + "deps": [ + { + "nodeId": "click@8.1.3" + } + ] + }, + { + "nodeId": "click@8.1.3", + "pkgId": "click@8.1.3", + "deps": [] + } + ] + } + } +} diff --git a/bazel2snyk/test/test_Bazel2Snyk.py b/bazel2snyk/test/test_Bazel2Snyk.py index 198ee09..d093c28 100644 --- a/bazel2snyk/test/test_Bazel2Snyk.py +++ b/bazel2snyk/test/test_Bazel2Snyk.py @@ -1,70 +1,67 @@ import pytest -import os -import bazel2snyk from bazel2snyk.cli import Bazel2Snyk -from bazel2snyk.cli import BazelPackageSource from bazel2snyk.cli import load_file from bazel2snyk.bazel import BazelXmlParser from bazel2snyk.depgraph import DepGraph +from bazel2snyk.test import PIP_PACKAGE_SOURCE +from bazel2snyk.test import PIP_BAZEL_XML_FILE +from bazel2snyk.test import PIP_BAZEL_ALT_XML_FILE +from bazel2snyk.test import MAVEN_PACKAGE_SOURCE +from bazel2snyk.test import MAVEN_BAZEL_XML_FILE +from bazel2snyk.test import MAVEN_BAZEL_ALT_XML_FILE -BASE_PATH = os.path.dirname(bazel2snyk.__file__) -FIXTURES_PATH = f"{BASE_PATH}/test/fixtures" - -PIP_FIXTURES_PATH = f"{FIXTURES_PATH}/pip" PIP_BAZEL_DEP = "@pypi_click//:pkg" +PIP_BAZEL_ALT_DEP = "@snyk_py_deps_click//:pkg" PIP_SNYK_DEP = "click@8.1.3" -PIP_BAZEL_XML_FILE = f"{PIP_FIXTURES_PATH}/pip.xml" -PIP_PACKAGE_SOURCE: BazelPackageSource = "pip" -MAVEN_FIXTURES_PATH = f"{FIXTURES_PATH}/maven" MAVEN_BAZEL_DEP = "@maven//:com_google_guava_guava" +MAVEN_BAZEL_ALT_DEP = "@maven_alt//:com_google_guava_guava" MAVEN_SNYK_DEP = "com.google.guava:guava@28.0-jre" -MAVEN_BAZEL_XML_FILE = f"{MAVEN_FIXTURES_PATH}/maven.xml" -MAVEN_PACKAGE_SOURCE: BazelPackageSource = "maven" @pytest.fixture def pip_bazel2snyk_instance(): return Bazel2Snyk( - BazelXmlParser( + bazel_xml_parser=BazelXmlParser( rules_xml=load_file(PIP_BAZEL_XML_FILE), pkg_manager_name=PIP_PACKAGE_SOURCE, ), - DepGraph(PIP_PACKAGE_SOURCE), + dep_graph=DepGraph(PIP_PACKAGE_SOURCE), ) +@pytest.fixture def pip_bazel2snyk_alt_instance(): return Bazel2Snyk( - BazelXmlParser( - rules_xml=load_file(PIP_BAZEL_XML_FILE), + bazel_xml_parser=BazelXmlParser( + rules_xml=load_file(PIP_BAZEL_ALT_XML_FILE), pkg_manager_name=PIP_PACKAGE_SOURCE, alt_repo_names="@snyk_py_deps", ), - DepGraph(PIP_PACKAGE_SOURCE), + dep_graph=DepGraph(PIP_PACKAGE_SOURCE), ) @pytest.fixture def maven_bazel2snyk_instance(): return Bazel2Snyk( - BazelXmlParser( + bazel_xml_parser=BazelXmlParser( rules_xml=load_file(MAVEN_BAZEL_XML_FILE), pkg_manager_name=MAVEN_PACKAGE_SOURCE, ), - DepGraph(MAVEN_PACKAGE_SOURCE), + dep_graph=DepGraph(MAVEN_PACKAGE_SOURCE), ) @pytest.fixture def maven_bazel2snyk_alt_instance(): return Bazel2Snyk( - BazelXmlParser( - rules_xml=load_file(MAVEN_BAZEL_XML_FILE), + bazel_xml_parser=BazelXmlParser( + rules_xml=load_file(MAVEN_BAZEL_ALT_XML_FILE), pkg_manager_name=MAVEN_PACKAGE_SOURCE, alt_repo_names="@maven_alt", ), - DepGraph(MAVEN_PACKAGE_SOURCE), + dep_graph=DepGraph(MAVEN_PACKAGE_SOURCE), ) @@ -92,25 +89,25 @@ def test_maven_snyk_dep_from_bazel_dep(maven_bazel2snyk_instance): ) -def test_pip_alt_snyk_dep_from_bazel_dep(pip_bazel2snyk_instance): +def test_pip_alt_snyk_dep_from_bazel_dep(pip_bazel2snyk_alt_instance): """ Test for testing the dep graph """ assert ( - pip_bazel2snyk_instance.snyk_dep_from_bazel_dep( - PIP_BAZEL_DEP, PIP_PACKAGE_SOURCE + pip_bazel2snyk_alt_instance.snyk_dep_from_bazel_dep( + PIP_BAZEL_ALT_DEP, PIP_PACKAGE_SOURCE ) == PIP_SNYK_DEP ) -def test_maven_alt_snyk_dep_from_bazel_dep(maven_bazel2snyk_instance): +def test_maven_alt_snyk_dep_from_bazel_dep(maven_bazel2snyk_alt_instance): """ Test for testing the dep graph """ assert ( - maven_bazel2snyk_instance.snyk_dep_from_bazel_dep( - MAVEN_BAZEL_DEP, MAVEN_PACKAGE_SOURCE + maven_bazel2snyk_alt_instance.snyk_dep_from_bazel_dep( + MAVEN_BAZEL_ALT_DEP, MAVEN_PACKAGE_SOURCE ) == MAVEN_SNYK_DEP ) @@ -121,12 +118,3 @@ def test_maven_alt_snyk_dep_from_bazel_dep(maven_bazel2snyk_instance): # """ # Test for bazel_to_depgraph() # """ -# def test_prune_graph(): -# """ -# Test for prune_graph() -# """ -# -# def test_prune_graph_all(): -# """ -# Test for prune_graph_all() -# """ diff --git a/bazel2snyk/test/test_depgraph.py b/bazel2snyk/test/test_depgraph.py index f3a6061..0582f78 100644 --- a/bazel2snyk/test/test_depgraph.py +++ b/bazel2snyk/test/test_depgraph.py @@ -1 +1 @@ -# TODO: DepGraph module unit test +# TODO: Depgraph module unit tests diff --git a/poetry.lock b/poetry.lock index 397e6c6..66aa81d 100644 --- a/poetry.lock +++ b/poetry.lock @@ -11,6 +11,17 @@ files = [ {file = "altgraph-0.17.4.tar.gz", hash = "sha256:1b5afbb98f6c4dcadb2e2ae6ab9fa994bbb8c1d75f4fa96d340f9437ae454406"}, ] +[[package]] +name = "annotated-types" +version = "0.6.0" +description = "Reusable constraint types to use with typing.Annotated" +optional = false +python-versions = ">=3.8" +files = [ + {file = "annotated_types-0.6.0-py3-none-any.whl", hash = "sha256:0641064de18ba7a25dee8f96403ebc39113d0cb953a01429249d5c7564666a43"}, + {file = "annotated_types-0.6.0.tar.gz", hash = "sha256:563339e807e53ffd9c267e99fc6d9ea23eb8443c08f112651963e24e22f84a5d"}, +] + [[package]] name = "certifi" version = "2024.2.2" @@ -308,6 +319,116 @@ files = [ {file = "py-1.11.0.tar.gz", hash = "sha256:51c75c4126074b472f746a24399ad32f6053d1b34b68d2fa41e558e6f4a98719"}, ] +[[package]] +name = "pydantic" +version = "2.6.4" +description = "Data validation using Python type hints" +optional = false +python-versions = ">=3.8" +files = [ + {file = "pydantic-2.6.4-py3-none-any.whl", hash = "sha256:cc46fce86607580867bdc3361ad462bab9c222ef042d3da86f2fb333e1d916c5"}, + {file = "pydantic-2.6.4.tar.gz", hash = "sha256:b1704e0847db01817624a6b86766967f552dd9dbf3afba4004409f908dcc84e6"}, +] + +[package.dependencies] +annotated-types = ">=0.4.0" +pydantic-core = "2.16.3" +typing-extensions = ">=4.6.1" + +[package.extras] +email = ["email-validator (>=2.0.0)"] + +[[package]] +name = "pydantic-core" +version = "2.16.3" +description = "" +optional = false +python-versions = ">=3.8" +files = [ + {file = "pydantic_core-2.16.3-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:75b81e678d1c1ede0785c7f46690621e4c6e63ccd9192af1f0bd9d504bbb6bf4"}, + {file = "pydantic_core-2.16.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9c865a7ee6f93783bd5d781af5a4c43dadc37053a5b42f7d18dc019f8c9d2bd1"}, + {file = "pydantic_core-2.16.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:162e498303d2b1c036b957a1278fa0899d02b2842f1ff901b6395104c5554a45"}, + {file = "pydantic_core-2.16.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:2f583bd01bbfbff4eaee0868e6fc607efdfcc2b03c1c766b06a707abbc856187"}, + {file = "pydantic_core-2.16.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b926dd38db1519ed3043a4de50214e0d600d404099c3392f098a7f9d75029ff8"}, + {file = "pydantic_core-2.16.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:716b542728d4c742353448765aa7cdaa519a7b82f9564130e2b3f6766018c9ec"}, + {file = "pydantic_core-2.16.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fc4ad7f7ee1a13d9cb49d8198cd7d7e3aa93e425f371a68235f784e99741561f"}, + {file = "pydantic_core-2.16.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:bd87f48924f360e5d1c5f770d6155ce0e7d83f7b4e10c2f9ec001c73cf475c99"}, + {file = "pydantic_core-2.16.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:0df446663464884297c793874573549229f9eca73b59360878f382a0fc085979"}, + {file = "pydantic_core-2.16.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:4df8a199d9f6afc5ae9a65f8f95ee52cae389a8c6b20163762bde0426275b7db"}, + {file = "pydantic_core-2.16.3-cp310-none-win32.whl", hash = "sha256:456855f57b413f077dff513a5a28ed838dbbb15082ba00f80750377eed23d132"}, + {file = "pydantic_core-2.16.3-cp310-none-win_amd64.whl", hash = "sha256:732da3243e1b8d3eab8c6ae23ae6a58548849d2e4a4e03a1924c8ddf71a387cb"}, + {file = "pydantic_core-2.16.3-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:519ae0312616026bf4cedc0fe459e982734f3ca82ee8c7246c19b650b60a5ee4"}, + {file = "pydantic_core-2.16.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:b3992a322a5617ded0a9f23fd06dbc1e4bd7cf39bc4ccf344b10f80af58beacd"}, + {file = "pydantic_core-2.16.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8d62da299c6ecb04df729e4b5c52dc0d53f4f8430b4492b93aa8de1f541c4aac"}, + {file = "pydantic_core-2.16.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:2acca2be4bb2f2147ada8cac612f8a98fc09f41c89f87add7256ad27332c2fda"}, + {file = "pydantic_core-2.16.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1b662180108c55dfbf1280d865b2d116633d436cfc0bba82323554873967b340"}, + {file = "pydantic_core-2.16.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e7c6ed0dc9d8e65f24f5824291550139fe6f37fac03788d4580da0d33bc00c97"}, + {file = "pydantic_core-2.16.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a6b1bb0827f56654b4437955555dc3aeeebeddc47c2d7ed575477f082622c49e"}, + {file = "pydantic_core-2.16.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:e56f8186d6210ac7ece503193ec84104da7ceb98f68ce18c07282fcc2452e76f"}, + {file = "pydantic_core-2.16.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:936e5db01dd49476fa8f4383c259b8b1303d5dd5fb34c97de194560698cc2c5e"}, + {file = "pydantic_core-2.16.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:33809aebac276089b78db106ee692bdc9044710e26f24a9a2eaa35a0f9fa70ba"}, + {file = "pydantic_core-2.16.3-cp311-none-win32.whl", hash = "sha256:ded1c35f15c9dea16ead9bffcde9bb5c7c031bff076355dc58dcb1cb436c4721"}, + {file = "pydantic_core-2.16.3-cp311-none-win_amd64.whl", hash = "sha256:d89ca19cdd0dd5f31606a9329e309d4fcbb3df860960acec32630297d61820df"}, + {file = "pydantic_core-2.16.3-cp311-none-win_arm64.whl", hash = "sha256:6162f8d2dc27ba21027f261e4fa26f8bcb3cf9784b7f9499466a311ac284b5b9"}, + {file = "pydantic_core-2.16.3-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:0f56ae86b60ea987ae8bcd6654a887238fd53d1384f9b222ac457070b7ac4cff"}, + {file = "pydantic_core-2.16.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:c9bd22a2a639e26171068f8ebb5400ce2c1bc7d17959f60a3b753ae13c632975"}, + {file = "pydantic_core-2.16.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4204e773b4b408062960e65468d5346bdfe139247ee5f1ca2a378983e11388a2"}, + {file = "pydantic_core-2.16.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:f651dd19363c632f4abe3480a7c87a9773be27cfe1341aef06e8759599454120"}, + {file = "pydantic_core-2.16.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aaf09e615a0bf98d406657e0008e4a8701b11481840be7d31755dc9f97c44053"}, + {file = "pydantic_core-2.16.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8e47755d8152c1ab5b55928ab422a76e2e7b22b5ed8e90a7d584268dd49e9c6b"}, + {file = "pydantic_core-2.16.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:500960cb3a0543a724a81ba859da816e8cf01b0e6aaeedf2c3775d12ee49cade"}, + {file = "pydantic_core-2.16.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:cf6204fe865da605285c34cf1172879d0314ff267b1c35ff59de7154f35fdc2e"}, + {file = "pydantic_core-2.16.3-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:d33dd21f572545649f90c38c227cc8631268ba25c460b5569abebdd0ec5974ca"}, + {file = "pydantic_core-2.16.3-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:49d5d58abd4b83fb8ce763be7794d09b2f50f10aa65c0f0c1696c677edeb7cbf"}, + {file = "pydantic_core-2.16.3-cp312-none-win32.whl", hash = "sha256:f53aace168a2a10582e570b7736cc5bef12cae9cf21775e3eafac597e8551fbe"}, + {file = "pydantic_core-2.16.3-cp312-none-win_amd64.whl", hash = "sha256:0d32576b1de5a30d9a97f300cc6a3f4694c428d956adbc7e6e2f9cad279e45ed"}, + {file = "pydantic_core-2.16.3-cp312-none-win_arm64.whl", hash = "sha256:ec08be75bb268473677edb83ba71e7e74b43c008e4a7b1907c6d57e940bf34b6"}, + {file = "pydantic_core-2.16.3-cp38-cp38-macosx_10_12_x86_64.whl", hash = "sha256:b1f6f5938d63c6139860f044e2538baeee6f0b251a1816e7adb6cbce106a1f01"}, + {file = "pydantic_core-2.16.3-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:2a1ef6a36fdbf71538142ed604ad19b82f67b05749512e47f247a6ddd06afdc7"}, + {file = "pydantic_core-2.16.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:704d35ecc7e9c31d48926150afada60401c55efa3b46cd1ded5a01bdffaf1d48"}, + {file = "pydantic_core-2.16.3-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d937653a696465677ed583124b94a4b2d79f5e30b2c46115a68e482c6a591c8a"}, + {file = "pydantic_core-2.16.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c9803edf8e29bd825f43481f19c37f50d2b01899448273b3a7758441b512acf8"}, + {file = "pydantic_core-2.16.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:72282ad4892a9fb2da25defeac8c2e84352c108705c972db82ab121d15f14e6d"}, + {file = "pydantic_core-2.16.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7f752826b5b8361193df55afcdf8ca6a57d0232653494ba473630a83ba50d8c9"}, + {file = "pydantic_core-2.16.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:4384a8f68ddb31a0b0c3deae88765f5868a1b9148939c3f4121233314ad5532c"}, + {file = "pydantic_core-2.16.3-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:a4b2bf78342c40b3dc830880106f54328928ff03e357935ad26c7128bbd66ce8"}, + {file = "pydantic_core-2.16.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:13dcc4802961b5f843a9385fc821a0b0135e8c07fc3d9949fd49627c1a5e6ae5"}, + {file = "pydantic_core-2.16.3-cp38-none-win32.whl", hash = "sha256:e3e70c94a0c3841e6aa831edab1619ad5c511199be94d0c11ba75fe06efe107a"}, + {file = "pydantic_core-2.16.3-cp38-none-win_amd64.whl", hash = "sha256:ecdf6bf5f578615f2e985a5e1f6572e23aa632c4bd1dc67f8f406d445ac115ed"}, + {file = "pydantic_core-2.16.3-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:bda1ee3e08252b8d41fa5537413ffdddd58fa73107171a126d3b9ff001b9b820"}, + {file = "pydantic_core-2.16.3-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:21b888c973e4f26b7a96491c0965a8a312e13be108022ee510248fe379a5fa23"}, + {file = "pydantic_core-2.16.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:be0ec334369316fa73448cc8c982c01e5d2a81c95969d58b8f6e272884df0074"}, + {file = "pydantic_core-2.16.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:b5b6079cc452a7c53dd378c6f881ac528246b3ac9aae0f8eef98498a75657805"}, + {file = "pydantic_core-2.16.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:7ee8d5f878dccb6d499ba4d30d757111847b6849ae07acdd1205fffa1fc1253c"}, + {file = "pydantic_core-2.16.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7233d65d9d651242a68801159763d09e9ec96e8a158dbf118dc090cd77a104c9"}, + {file = "pydantic_core-2.16.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c6119dc90483a5cb50a1306adb8d52c66e447da88ea44f323e0ae1a5fcb14256"}, + {file = "pydantic_core-2.16.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:578114bc803a4c1ff9946d977c221e4376620a46cf78da267d946397dc9514a8"}, + {file = "pydantic_core-2.16.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:d8f99b147ff3fcf6b3cc60cb0c39ea443884d5559a30b1481e92495f2310ff2b"}, + {file = "pydantic_core-2.16.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:4ac6b4ce1e7283d715c4b729d8f9dab9627586dafce81d9eaa009dd7f25dd972"}, + {file = "pydantic_core-2.16.3-cp39-none-win32.whl", hash = "sha256:e7774b570e61cb998490c5235740d475413a1f6de823169b4cf94e2fe9e9f6b2"}, + {file = "pydantic_core-2.16.3-cp39-none-win_amd64.whl", hash = "sha256:9091632a25b8b87b9a605ec0e61f241c456e9248bfdcf7abdf344fdb169c81cf"}, + {file = "pydantic_core-2.16.3-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:36fa178aacbc277bc6b62a2c3da95226520da4f4e9e206fdf076484363895d2c"}, + {file = "pydantic_core-2.16.3-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:dcca5d2bf65c6fb591fff92da03f94cd4f315972f97c21975398bd4bd046854a"}, + {file = "pydantic_core-2.16.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2a72fb9963cba4cd5793854fd12f4cfee731e86df140f59ff52a49b3552db241"}, + {file = "pydantic_core-2.16.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b60cc1a081f80a2105a59385b92d82278b15d80ebb3adb200542ae165cd7d183"}, + {file = "pydantic_core-2.16.3-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:cbcc558401de90a746d02ef330c528f2e668c83350f045833543cd57ecead1ad"}, + {file = "pydantic_core-2.16.3-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:fee427241c2d9fb7192b658190f9f5fd6dfe41e02f3c1489d2ec1e6a5ab1e04a"}, + {file = "pydantic_core-2.16.3-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:f4cb85f693044e0f71f394ff76c98ddc1bc0953e48c061725e540396d5c8a2e1"}, + {file = "pydantic_core-2.16.3-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:b29eeb887aa931c2fcef5aa515d9d176d25006794610c264ddc114c053bf96fe"}, + {file = "pydantic_core-2.16.3-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:a425479ee40ff021f8216c9d07a6a3b54b31c8267c6e17aa88b70d7ebd0e5e5b"}, + {file = "pydantic_core-2.16.3-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:5c5cbc703168d1b7a838668998308018a2718c2130595e8e190220238addc96f"}, + {file = "pydantic_core-2.16.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:99b6add4c0b39a513d323d3b93bc173dac663c27b99860dd5bf491b240d26137"}, + {file = "pydantic_core-2.16.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:75f76ee558751746d6a38f89d60b6228fa174e5172d143886af0f85aa306fd89"}, + {file = "pydantic_core-2.16.3-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:00ee1c97b5364b84cb0bd82e9bbf645d5e2871fb8c58059d158412fee2d33d8a"}, + {file = "pydantic_core-2.16.3-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:287073c66748f624be4cef893ef9174e3eb88fe0b8a78dc22e88eca4bc357ca6"}, + {file = "pydantic_core-2.16.3-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:ed25e1835c00a332cb10c683cd39da96a719ab1dfc08427d476bce41b92531fc"}, + {file = "pydantic_core-2.16.3-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:86b3d0033580bd6bbe07590152007275bd7af95f98eaa5bd36f3da219dcd93da"}, + {file = "pydantic_core-2.16.3.tar.gz", hash = "sha256:1cac689f80a3abab2d3c0048b29eea5751114054f032a941a32de4c852c59cad"}, +] + +[package.dependencies] +typing-extensions = ">=4.6.0,<4.7.0 || >4.7.0" + [[package]] name = "pyinstaller" version = "6.5.0" @@ -580,4 +701,4 @@ testing = ["big-O", "jaraco.functools", "jaraco.itertools", "more-itertools", "p [metadata] lock-version = "2.0" python-versions = "~3.9" -content-hash = "386effcdbb969e9fb5fc1bb28e47b0122617d012fd099c1a5ca088dd506377fa" +content-hash = "535e4caaecd0dc2f0b77afd50a3a113be199e4adc11daf23dd324cbae29a4190" diff --git a/pyproject.toml b/pyproject.toml index 4adcea4..ae883d3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,6 +9,7 @@ license = "Apache-2.0" python = "~3.9" pysnyk = "^0.9.2" typer = "^0.4.1" +pydantic = "^2.6.4" [tool.poetry.group.dev.dependencies] pyinstaller = "^6.3.0"