Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Summary] update licenses/notice for 1.5 #2557

Closed
VGalaxies opened this issue Jun 7, 2024 · 5 comments
Closed

[Summary] update licenses/notice for 1.5 #2557

VGalaxies opened this issue Jun 7, 2024 · 5 comments
Assignees
Labels
apache dependencies Incompatible dependencies of package help wanted Extra attention is needed
Milestone

Comments

@VGalaxies
Copy link
Contributor

VGalaxies commented Jun 7, 2024

References:

Due to the introduction of the pd and store modules in version 1.5, it is necessary to update the current dependencies of HugeGraph. At present, I have adjusted the project structure in #2552. For the license and notice of each dependency in the binary package, it need to be updated in some way, and the steps are briefly introduced as follows:

  1. Generate a new dependency list using regenerate_known_dependencies.sh.
    • diff <(curl -s https://raw.githubusercontent.com/apache/incubator-hugegraph/release-1.3.0/hugegraph-server/hugegraph-dist/scripts/dependency/known-dependencies.txt) install-dist/scripts/dependency/known-dependencies.txt | grep '^> ' | sed 's/^> //' > /tmp/deps
  2. For each new dependency item in the dependency list, obtain its corresponding license and notice in some way.

Similar handling for removed dependencies.

Currently, I have initially built a script for obtaining the dependency jar packages from the local maven package path and detecting the license and notice.

#!/bin/bash

# Read the jar file list from a file
jar_file_list=${1:-deps}

if [ ! -f "$jar_file_list" ]; then
    echo "Jar file list not found: $jar_file_list"
    exit 1
fi

rm -rf output/NOTICE
rm -rf output/LICENSE

# Create temporary and output directories
mkdir -p tmp
mkdir -p output/NOTICE
mkdir -p output/LICENSE

# Define result arrays
declare -a found_license_packages
declare -a other_packages

# Iterate through the jar file list
while IFS= read -r jar; do
    # Remove leading and trailing whitespace
    jar=$(echo "$jar" | xargs)
    
    # Skip empty lines
    [ -z "$jar" ] && continue
    
    # Find the jar package path
    jar_path=$(find ~/.m2/repository -name "$jar" 2>/dev/null)
    
    if [ -z "$jar_path" ]; then
        # Jar package not found
        continue
    fi
    
    # Copy the jar package to the temporary directory
    cp "$jar_path" ./tmp/
    
    # Get the package name (without extension)
    package_name="${jar%.jar}"
    
    # Create the extraction directory
    mkdir -p "./tmp/$package_name"
    
    # Extract the jar package to the extraction directory
    unzip -q "./tmp/$jar" -d "./tmp/$package_name"
    
    # Check for NOTICE and LICENSE files in the META-INF directory
    notice_found=$(find "./tmp/$package_name/META-INF" -iname "NOTICE*" 2>/dev/null)
    license_found=$(find "./tmp/$package_name/META-INF" -iname "LICENSE*" 2>/dev/null)
    
    # Process the NOTICE file
    if [ -n "$notice_found" ]; then
        notice_result="found NOTICE in jar package"
        for notice in $notice_found; do
            cp "$notice" "./output/NOTICE/NOTICE-${package_name}.txt"
        done
    else
        notice_result="not found NOTICE in jar package"
    fi
    
    # Process the LICENSE file
    if [ -n "$license_found" ]; then
        license_result="found LICENSE in jar package"
        for license in $license_found; do
            cp "$license" "./output/LICENSE/LICENSE-${package_name}.txt"
        done
    else
        license_result="not found LICENSE in jar package"
    fi
    
    # Generate the result
    if [ "$license_result" == "found LICENSE in jar package" ]; then
        result="- [ ] $package_name\n    - found jar package\n    - $notice_result\n    - $license_result"
        found_license_packages+=("$result")
    else
        result="- [ ] $package_name\n    - found jar package\n    - $notice_result\n    - $license_result"
        other_packages+=("$result")
    fi
done < "$jar_file_list"

# Count the number of packages in found_license_packages and other_packages
num_found_license_packages="${#found_license_packages[@]}"
num_other_packages="${#other_packages[@]}"

# Print the results
echo "Packages with LICENSE ($num_found_license_packages found):"
for package in "${found_license_packages[@]}"; do
    echo -e "$package"
done

echo ""
echo "Other packages ($num_other_packages found):"
for package in "${other_packages[@]}"; do
    echo -e "$package"
done

rm -rf tmp
@VGalaxies VGalaxies self-assigned this Jun 7, 2024
@VGalaxies VGalaxies added this to the 1.5.0 milestone Jun 7, 2024
@VGalaxies
Copy link
Contributor Author

VGalaxies commented Jun 7, 2024

Packages with LICENSE (111 found):

  • byte-buddy-1.10.20
    • found jar package
    • found NOTICE in jar package
    • found LICENSE in jar package
  • byte-buddy-agent-1.10.20
    • found jar package
    • found NOTICE in jar package
    • found LICENSE in jar package
  • commons-collections4-4.4
    • found jar package
    • found NOTICE in jar package
    • found LICENSE in jar package
  • commons-io-2.12.0
    • found jar package
    • found NOTICE in jar package
    • found LICENSE in jar package
  • commons-io-2.8.0
    • found jar package
    • found NOTICE in jar package
    • found LICENSE in jar package
  • commons-lang3-3.13.0
    • found jar package
    • found NOTICE in jar package
    • found LICENSE in jar package
  • commons-text-1.9
    • found jar package
    • found NOTICE in jar package
    • found LICENSE in jar package
  • fastjson-1.2.83
    • found jar package
    • found NOTICE in jar package
    • found LICENSE in jar package
  • grpc-netty-shaded-1.39.0
    • found jar package
    • found NOTICE in jar package
    • found LICENSE in jar package
  • hg-pd-client-1.5.0
    • found jar package
    • found NOTICE in jar package
    • found LICENSE in jar package
  • hg-pd-common-1.5.0
    • found jar package
    • found NOTICE in jar package
    • found LICENSE in jar package
  • hg-pd-core-1.5.0
    • found jar package
    • found NOTICE in jar package
    • found LICENSE in jar package
  • hg-pd-dist-1.5.0
    • found jar package
    • found NOTICE in jar package
    • found LICENSE in jar package
  • hg-pd-grpc-1.5.0
    • found jar package
    • found NOTICE in jar package
    • found LICENSE in jar package
  • hg-pd-service-1.5.0
    • found jar package
    • found NOTICE in jar package
    • found LICENSE in jar package
  • hg-store-client-1.5.0
    • found jar package
    • found NOTICE in jar package
    • found LICENSE in jar package
  • hg-store-common-1.5.0
    • found jar package
    • found NOTICE in jar package
    • found LICENSE in jar package
  • hg-store-core-1.5.0
    • found jar package
    • found NOTICE in jar package
    • found LICENSE in jar package
  • hg-store-grpc-1.5.0
    • found jar package
    • found NOTICE in jar package
    • found LICENSE in jar package
  • hg-store-node-1.5.0
    • found jar package
    • found NOTICE in jar package
    • found LICENSE in jar package
  • hg-store-rocksdb-1.5.0
    • found jar package
    • found NOTICE in jar package
    • found LICENSE in jar package
  • jackson-annotations-2.12.6
    • found jar package
    • not found NOTICE in jar package
    • found LICENSE in jar package
  • jackson-annotations-2.13.0
    • found jar package
    • not found NOTICE in jar package
    • found LICENSE in jar package
  • jackson-core-2.12.6
    • found jar package
    • found NOTICE in jar package
    • found LICENSE in jar package
  • jackson-core-2.13.0
    • found jar package
    • found NOTICE in jar package
    • found LICENSE in jar package
  • jackson-databind-2.12.6.1
    • found jar package
    • found NOTICE in jar package
    • found LICENSE in jar package
  • jackson-databind-2.13.0
    • found jar package
    • found NOTICE in jar package
    • found LICENSE in jar package
  • jackson-datatype-jsr310-2.12.6
    • found jar package
    • not found NOTICE in jar package
    • found LICENSE in jar package
  • jakarta.annotation-api-1.3.5
    • found jar package
    • found NOTICE in jar package
    • found LICENSE in jar package
  • jakarta.websocket-api-1.1.2
    • found jar package
    • found NOTICE in jar package
    • found LICENSE in jar package
  • jakarta.xml.bind-api-2.3.3
    • found jar package
    • found NOTICE in jar package
    • found LICENSE in jar package
  • javax.annotation-api-1.3.2
    • found jar package
    • not found NOTICE in jar package
    • found LICENSE in jar package
  • javax-websocket-client-impl-9.4.46.v20220331
    • found jar package
    • found NOTICE in jar package
    • found LICENSE in jar package
  • javax-websocket-server-impl-9.4.46.v20220331
    • found jar package
    • found NOTICE in jar package
    • found LICENSE in jar package
  • jetty-annotations-9.4.46.v20220331
    • found jar package
    • found NOTICE in jar package
    • found LICENSE in jar package
  • jetty-client-9.4.46.v20220331
    • found jar package
    • found NOTICE in jar package
    • found LICENSE in jar package
  • jetty-continuation-9.4.46.v20220331
    • found jar package
    • found NOTICE in jar package
    • found LICENSE in jar package
  • jetty-http-9.4.46.v20220331
    • found jar package
    • found NOTICE in jar package
    • found LICENSE in jar package
  • jetty-io-9.4.46.v20220331
    • found jar package
    • found NOTICE in jar package
    • found LICENSE in jar package
  • jetty-plus-9.4.46.v20220331
    • found jar package
    • found NOTICE in jar package
    • found LICENSE in jar package
  • jetty-security-9.4.46.v20220331
    • found jar package
    • found NOTICE in jar package
    • found LICENSE in jar package
  • jetty-server-9.4.46.v20220331
    • found jar package
    • found NOTICE in jar package
    • found LICENSE in jar package
  • jetty-servlet-9.4.46.v20220331
    • found jar package
    • found NOTICE in jar package
    • found LICENSE in jar package
  • jetty-servlets-9.4.46.v20220331
    • found jar package
    • found NOTICE in jar package
    • found LICENSE in jar package
  • jetty-util-9.4.46.v20220331
    • found jar package
    • found NOTICE in jar package
    • found LICENSE in jar package
  • jetty-util-ajax-9.4.46.v20220331
    • found jar package
    • found NOTICE in jar package
    • found LICENSE in jar package
  • jetty-webapp-9.4.46.v20220331
    • found jar package
    • found NOTICE in jar package
    • found LICENSE in jar package
  • jetty-xml-9.4.46.v20220331
    • found jar package
    • found NOTICE in jar package
    • found LICENSE in jar package
  • jna-5.5.0
    • found jar package
    • not found NOTICE in jar package
    • found LICENSE in jar package
  • jna-5.7.0
    • found jar package
    • not found NOTICE in jar package
    • found LICENSE in jar package
  • junit-jupiter-5.7.2
    • found jar package
    • not found NOTICE in jar package
    • found LICENSE in jar package
  • junit-jupiter-api-5.7.2
    • found jar package
    • not found NOTICE in jar package
    • found LICENSE in jar package
  • junit-jupiter-engine-5.7.2
    • found jar package
    • not found NOTICE in jar package
    • found LICENSE in jar package
  • junit-jupiter-params-5.7.2
    • found jar package
    • not found NOTICE in jar package
    • found LICENSE in jar package
  • junit-platform-commons-1.7.2
    • found jar package
    • not found NOTICE in jar package
    • found LICENSE in jar package
  • junit-platform-engine-1.7.2
    • found jar package
    • not found NOTICE in jar package
    • found LICENSE in jar package
  • log4j-api-2.15.0
    • found jar package
    • found NOTICE in jar package
    • found LICENSE in jar package
  • log4j-api-2.17.0
    • found jar package
    • found NOTICE in jar package
    • found LICENSE in jar package
  • log4j-api-2.17.2
    • found jar package
    • found NOTICE in jar package
    • found LICENSE in jar package
  • log4j-api-2.18.0
    • found jar package
    • found NOTICE in jar package
    • found LICENSE in jar package
  • log4j-core-2.15.0
    • found jar package
    • found NOTICE in jar package
    • found LICENSE in jar package
  • log4j-core-2.17.0
    • found jar package
    • found NOTICE in jar package
    • found LICENSE in jar package
  • log4j-core-2.17.2
    • found jar package
    • found NOTICE in jar package
    • found LICENSE in jar package
  • log4j-core-2.18.0
    • found jar package
    • found NOTICE in jar package
    • found LICENSE in jar package
  • log4j-jul-2.17.2
    • found jar package
    • found NOTICE in jar package
    • found LICENSE in jar package
  • log4j-slf4j-impl-2.15.0
    • found jar package
    • found NOTICE in jar package
    • found LICENSE in jar package
  • log4j-slf4j-impl-2.17.0
    • found jar package
    • found NOTICE in jar package
    • found LICENSE in jar package
  • log4j-slf4j-impl-2.18.0
    • found jar package
    • found NOTICE in jar package
    • found LICENSE in jar package
  • micrometer-core-1.7.12
    • found jar package
    • found NOTICE in jar package
    • found LICENSE in jar package
  • micrometer-registry-prometheus-1.7.12
    • found jar package
    • found NOTICE in jar package
    • found LICENSE in jar package
  • objenesis-3.2
    • found jar package
    • found NOTICE in jar package
    • found LICENSE in jar package
  • powermock-api-mockito2-2.0.0-RC.3
    • found jar package
    • not found NOTICE in jar package
    • found LICENSE in jar package
  • powermock-api-support-2.0.0-RC.3
    • found jar package
    • not found NOTICE in jar package
    • found LICENSE in jar package
  • powermock-classloading-base-2.0.0-RC.3
    • found jar package
    • not found NOTICE in jar package
    • found LICENSE in jar package
  • powermock-classloading-xstream-2.0.0-RC.3
    • found jar package
    • not found NOTICE in jar package
    • found LICENSE in jar package
  • powermock-core-2.0.0-RC.3
    • found jar package
    • not found NOTICE in jar package
    • found LICENSE in jar package
  • powermock-module-junit4-2.0.0-RC.3
    • found jar package
    • not found NOTICE in jar package
    • found LICENSE in jar package
  • powermock-module-junit4-common-2.0.0-RC.3
    • found jar package
    • not found NOTICE in jar package
    • found LICENSE in jar package
  • powermock-module-junit4-rule-2.0.0-RC.3
    • found jar package
    • not found NOTICE in jar package
    • found LICENSE in jar package
  • powermock-reflect-2.0.0-RC.3
    • found jar package
    • not found NOTICE in jar package
    • found LICENSE in jar package
  • slf4j-api-2.0.9
    • found jar package
    • not found NOTICE in jar package
    • found LICENSE in jar package
  • spring-aop-5.3.20
    • found jar package
    • found NOTICE in jar package
    • found LICENSE in jar package
  • spring-beans-5.3.20
    • found jar package
    • found NOTICE in jar package
    • found LICENSE in jar package
  • spring-boot-2.5.14
    • found jar package
    • found NOTICE in jar package
    • found LICENSE in jar package
  • spring-boot-actuator-2.5.14
    • found jar package
    • found NOTICE in jar package
    • found LICENSE in jar package
  • spring-boot-actuator-autoconfigure-2.5.14
    • found jar package
    • found NOTICE in jar package
    • found LICENSE in jar package
  • spring-boot-autoconfigure-2.5.0
    • found jar package
    • found NOTICE in jar package
    • found LICENSE in jar package
  • spring-boot-autoconfigure-2.5.14
    • found jar package
    • found NOTICE in jar package
    • found LICENSE in jar package
  • spring-boot-starter-2.5.0
    • found jar package
    • found NOTICE in jar package
    • found LICENSE in jar package
  • spring-boot-starter-2.5.14
    • found jar package
    • found NOTICE in jar package
    • found LICENSE in jar package
  • spring-boot-starter-actuator-2.5.14
    • found jar package
    • found NOTICE in jar package
    • found LICENSE in jar package
  • spring-boot-starter-jetty-2.5.14
    • found jar package
    • found NOTICE in jar package
    • found LICENSE in jar package
  • spring-boot-starter-json-2.5.14
    • found jar package
    • found NOTICE in jar package
    • found LICENSE in jar package
  • spring-boot-starter-log4j2-2.5.14
    • found jar package
    • found NOTICE in jar package
    • found LICENSE in jar package
  • spring-boot-starter-test-2.5.14
    • found jar package
    • found NOTICE in jar package
    • found LICENSE in jar package
  • spring-boot-starter-web-2.5.14
    • found jar package
    • found NOTICE in jar package
    • found LICENSE in jar package
  • spring-boot-test-2.5.14
    • found jar package
    • found NOTICE in jar package
    • found LICENSE in jar package
  • spring-boot-test-autoconfigure-2.5.14
    • found jar package
    • found NOTICE in jar package
    • found LICENSE in jar package
  • spring-context-5.3.20
    • found jar package
    • found NOTICE in jar package
    • found LICENSE in jar package
  • spring-context-support-5.3.20
    • found jar package
    • found NOTICE in jar package
    • found LICENSE in jar package
  • spring-core-5.3.20
    • found jar package
    • found NOTICE in jar package
    • found LICENSE in jar package
  • spring-expression-5.3.20
    • found jar package
    • found NOTICE in jar package
    • found LICENSE in jar package
  • spring-jcl-5.3.20
    • found jar package
    • found NOTICE in jar package
    • found LICENSE in jar package
  • spring-web-5.3.20
    • found jar package
    • found NOTICE in jar package
    • found LICENSE in jar package
  • spring-webmvc-5.3.20
    • found jar package
    • found NOTICE in jar package
    • found LICENSE in jar package
  • tomcat-embed-el-9.0.63
    • found jar package
    • found NOTICE in jar package
    • found LICENSE in jar package
  • websocket-api-9.4.46.v20220331
    • found jar package
    • found NOTICE in jar package
    • found LICENSE in jar package
  • websocket-client-9.4.46.v20220331
    • found jar package
    • found NOTICE in jar package
    • found LICENSE in jar package
  • websocket-common-9.4.46.v20220331
    • found jar package
    • found NOTICE in jar package
    • found LICENSE in jar package
  • websocket-server-9.4.46.v20220331
    • found jar package
    • found NOTICE in jar package
    • found LICENSE in jar package
  • websocket-servlet-9.4.46.v20220331
    • found jar package
    • found NOTICE in jar package
    • found LICENSE in jar package

Other packages (110 found):

  • android-json-0.0.20131108.vaadin1
    • found jar package
    • not found NOTICE in jar package
    • not found LICENSE in jar package
  • animal-sniffer-annotations-1.18
    • found jar package
    • not found NOTICE in jar package
    • not found LICENSE in jar package
  • apiguardian-api-1.1.0
    • found jar package
    • not found NOTICE in jar package
    • not found LICENSE in jar package
  • arthas-agent-attach-3.6.4
    • found jar package
    • not found NOTICE in jar package
    • not found LICENSE in jar package
  • arthas-packaging-3.6.4
    • found jar package
    • not found NOTICE in jar package
    • not found LICENSE in jar package
  • asm-analysis-9.2
    • found jar package
    • not found NOTICE in jar package
    • not found LICENSE in jar package
  • asm-commons-9.2
    • found jar package
    • not found NOTICE in jar package
    • not found LICENSE in jar package
  • asm-tree-9.2
    • found jar package
    • not found NOTICE in jar package
    • not found LICENSE in jar package
  • assertj-core-3.19.0
    • found jar package
    • not found NOTICE in jar package
    • not found LICENSE in jar package
  • auto-service-annotations-1.0
    • found jar package
    • not found NOTICE in jar package
    • not found LICENSE in jar package
  • bolt-1.6.2
    • found jar package
    • not found NOTICE in jar package
    • not found LICENSE in jar package
  • disruptor-3.4.1
    • found jar package
    • not found NOTICE in jar package
    • not found LICENSE in jar package
  • error_prone_annotations-2.4.0
    • found jar package
    • not found NOTICE in jar package
    • not found LICENSE in jar package
  • failsafe-2.4.1
    • found jar package
    • not found NOTICE in jar package
    • not found LICENSE in jar package
  • grpc-api-1.28.1
    • found jar package
    • not found NOTICE in jar package
    • not found LICENSE in jar package
  • grpc-api-1.39.0
    • found jar package
    • not found NOTICE in jar package
    • not found LICENSE in jar package
  • grpc-context-1.28.1
    • found jar package
    • not found NOTICE in jar package
    • not found LICENSE in jar package
  • grpc-context-1.39.0
    • found jar package
    • not found NOTICE in jar package
    • not found LICENSE in jar package
  • grpc-core-1.28.1
    • found jar package
    • not found NOTICE in jar package
    • not found LICENSE in jar package
  • grpc-core-1.39.0
    • found jar package
    • not found NOTICE in jar package
    • not found LICENSE in jar package
  • grpc-grpclb-1.39.0
    • found jar package
    • not found NOTICE in jar package
    • not found LICENSE in jar package
  • grpc-netty-1.39.0
    • found jar package
    • not found NOTICE in jar package
    • not found LICENSE in jar package
  • grpc-netty-1.47.0
    • found jar package
    • not found NOTICE in jar package
    • not found LICENSE in jar package
  • grpc-netty-shaded-1.28.0
    • found jar package
    • not found NOTICE in jar package
    • not found LICENSE in jar package
  • grpc-protobuf-1.39.0
    • found jar package
    • not found NOTICE in jar package
    • not found LICENSE in jar package
  • grpc-protobuf-lite-1.39.0
    • found jar package
    • not found NOTICE in jar package
    • not found LICENSE in jar package
  • grpc-services-1.39.0
    • found jar package
    • not found NOTICE in jar package
    • not found LICENSE in jar package
  • grpc-spring-boot-starter-4.5.5
    • found jar package
    • not found NOTICE in jar package
    • not found LICENSE in jar package
  • grpc-stub-1.28.0
    • found jar package
    • not found NOTICE in jar package
    • not found LICENSE in jar package
  • grpc-stub-1.39.0
    • found jar package
    • not found NOTICE in jar package
    • not found LICENSE in jar package
  • grpc-stub-1.47.0
    • found jar package
    • not found NOTICE in jar package
    • not found LICENSE in jar package
  • gson-2.8.6
    • found jar package
    • not found NOTICE in jar package
    • not found LICENSE in jar package
  • gson-2.8.9
    • found jar package
    • not found NOTICE in jar package
    • not found LICENSE in jar package
  • guava-30.1-android
    • found jar package
    • not found NOTICE in jar package
    • not found LICENSE in jar package
  • HdrHistogram-2.1.12
    • found jar package
    • not found NOTICE in jar package
    • not found LICENSE in jar package
  • HdrHistogram-2.1.9
    • found jar package
    • not found NOTICE in jar package
    • not found LICENSE in jar package
  • hessian-3.3.7
    • found jar package
    • not found NOTICE in jar package
    • not found LICENSE in jar package
  • jackson-datatype-jdk8-2.12.6
    • found jar package
    • not found NOTICE in jar package
    • not found LICENSE in jar package
  • jackson-module-parameter-names-2.12.6
    • found jar package
    • not found NOTICE in jar package
    • not found LICENSE in jar package
  • jakarta.servlet-api-4.0.4
    • found jar package
    • not found NOTICE in jar package
    • not found LICENSE in jar package
  • javassist-3.24.0-GA
    • found jar package
    • not found NOTICE in jar package
    • not found LICENSE in jar package
  • javassist-3.28.0-GA
    • found jar package
    • not found NOTICE in jar package
    • not found LICENSE in jar package
  • jetcd-common-0.5.9
    • found jar package
    • not found NOTICE in jar package
    • not found LICENSE in jar package
  • jetcd-core-0.5.9
    • found jar package
    • not found NOTICE in jar package
    • not found LICENSE in jar package
  • jffi-1.2.16-native
    • found jar package
    • not found NOTICE in jar package
    • not found LICENSE in jar package
  • jraft-core-1.3.13
    • found jar package
    • not found NOTICE in jar package
    • not found LICENSE in jar package
  • jraft-core-1.3.9
    • found jar package
    • not found NOTICE in jar package
    • not found LICENSE in jar package
  • json-20210307
    • found jar package
    • not found NOTICE in jar package
    • not found LICENSE in jar package
  • jsonassert-1.5.0
    • found jar package
    • not found NOTICE in jar package
    • not found LICENSE in jar package
  • json-path-2.5.0
    • found jar package
    • not found NOTICE in jar package
    • not found LICENSE in jar package
  • jsr305-3.0.2
    • found jar package
    • not found NOTICE in jar package
    • not found LICENSE in jar package
  • jul-to-slf4j-1.7.36
    • found jar package
    • not found NOTICE in jar package
    • not found LICENSE in jar package
  • junit-4.13.2
    • found jar package
    • not found NOTICE in jar package
    • not found LICENSE in jar package
  • LatencyUtils-2.0.3
    • found jar package
    • not found NOTICE in jar package
    • not found LICENSE in jar package
  • lombok-1.18.24
    • found jar package
    • not found NOTICE in jar package
    • not found LICENSE in jar package
  • lz4-java-1.4.0
    • found jar package
    • not found NOTICE in jar package
    • not found LICENSE in jar package
  • mockito-core-3.9.0
    • found jar package
    • not found NOTICE in jar package
    • not found LICENSE in jar package
  • mockito-junit-jupiter-3.9.0
    • found jar package
    • not found NOTICE in jar package
    • not found LICENSE in jar package
  • netty-all-4.1.42.Final
    • found jar package
    • not found NOTICE in jar package
    • not found LICENSE in jar package
  • netty-buffer-4.1.52.Final
    • found jar package
    • not found NOTICE in jar package
    • not found LICENSE in jar package
  • netty-buffer-4.1.72.Final
    • found jar package
    • not found NOTICE in jar package
    • not found LICENSE in jar package
  • netty-codec-4.1.52.Final
    • found jar package
    • not found NOTICE in jar package
    • not found LICENSE in jar package
  • netty-codec-4.1.72.Final
    • found jar package
    • not found NOTICE in jar package
    • not found LICENSE in jar package
  • netty-codec-http2-4.1.52.Final
    • found jar package
    • not found NOTICE in jar package
    • not found LICENSE in jar package
  • netty-codec-http2-4.1.72.Final
    • found jar package
    • not found NOTICE in jar package
    • not found LICENSE in jar package
  • netty-codec-http-4.1.52.Final
    • found jar package
    • not found NOTICE in jar package
    • not found LICENSE in jar package
  • netty-codec-http-4.1.72.Final
    • found jar package
    • not found NOTICE in jar package
    • not found LICENSE in jar package
  • netty-codec-socks-4.1.52.Final
    • found jar package
    • not found NOTICE in jar package
    • not found LICENSE in jar package
  • netty-codec-socks-4.1.72.Final
    • found jar package
    • not found NOTICE in jar package
    • not found LICENSE in jar package
  • netty-common-4.1.52.Final
    • found jar package
    • not found NOTICE in jar package
    • not found LICENSE in jar package
  • netty-common-4.1.72.Final
    • found jar package
    • not found NOTICE in jar package
    • not found LICENSE in jar package
  • netty-handler-4.1.52.Final
    • found jar package
    • not found NOTICE in jar package
    • not found LICENSE in jar package
  • netty-handler-4.1.72.Final
    • found jar package
    • not found NOTICE in jar package
    • not found LICENSE in jar package
  • netty-handler-proxy-4.1.52.Final
    • found jar package
    • not found NOTICE in jar package
    • not found LICENSE in jar package
  • netty-handler-proxy-4.1.72.Final
    • found jar package
    • not found NOTICE in jar package
    • not found LICENSE in jar package
  • netty-resolver-4.1.52.Final
    • found jar package
    • not found NOTICE in jar package
    • not found LICENSE in jar package
  • netty-resolver-4.1.72.Final
    • found jar package
    • not found NOTICE in jar package
    • not found LICENSE in jar package
  • netty-tcnative-boringssl-static-2.0.25.Final
    • found jar package
    • not found NOTICE in jar package
    • not found LICENSE in jar package
  • netty-tcnative-classes-2.0.46.Final
    • found jar package
    • not found NOTICE in jar package
    • not found LICENSE in jar package
  • netty-transport-4.1.52.Final
    • found jar package
    • not found NOTICE in jar package
    • not found LICENSE in jar package
  • netty-transport-4.1.72.Final
    • found jar package
    • not found NOTICE in jar package
    • not found LICENSE in jar package
  • netty-transport-native-unix-common-4.1.72.Final
    • found jar package
    • not found NOTICE in jar package
    • not found LICENSE in jar package
  • opentest4j-1.2.0
    • found jar package
    • not found NOTICE in jar package
    • not found LICENSE in jar package
  • perfmark-api-0.19.0
    • found jar package
    • not found NOTICE in jar package
    • not found LICENSE in jar package
  • perfmark-api-0.23.0
    • found jar package
    • not found NOTICE in jar package
    • not found LICENSE in jar package
  • protobuf-java-3.11.0
    • found jar package
    • not found NOTICE in jar package
    • not found LICENSE in jar package
  • protobuf-java-3.17.2
    • found jar package
    • not found NOTICE in jar package
    • not found LICENSE in jar package
  • protobuf-java-3.5.1
    • found jar package
    • not found NOTICE in jar package
    • not found LICENSE in jar package
  • protobuf-java-util-3.17.2
    • found jar package
    • not found NOTICE in jar package
    • not found LICENSE in jar package
  • proto-google-common-protos-1.17.0
    • found jar package
    • not found NOTICE in jar package
    • not found LICENSE in jar package
  • proto-google-common-protos-2.0.1
    • found jar package
    • not found NOTICE in jar package
    • not found LICENSE in jar package
  • protostuff-api-1.6.0
    • found jar package
    • not found NOTICE in jar package
    • not found LICENSE in jar package
  • protostuff-collectionschema-1.6.0
    • found jar package
    • not found NOTICE in jar package
    • not found LICENSE in jar package
  • protostuff-core-1.6.0
    • found jar package
    • not found NOTICE in jar package
    • not found LICENSE in jar package
  • protostuff-runtime-1.6.0
    • found jar package
    • not found NOTICE in jar package
    • not found LICENSE in jar package
  • reporter-config-base-3.0.3
    • found jar package
    • not found NOTICE in jar package
    • not found LICENSE in jar package
  • rocksdbjni-6.29.5
    • found jar package
    • not found NOTICE in jar package
    • not found LICENSE in jar package
  • rocksdbjni-7.7.3
    • found jar package
    • not found NOTICE in jar package
    • not found LICENSE in jar package
  • simpleclient-0.10.0
    • found jar package
    • not found NOTICE in jar package
    • not found LICENSE in jar package
  • simpleclient_common-0.10.0
    • found jar package
    • not found NOTICE in jar package
    • not found LICENSE in jar package
  • sjk-jfr-standalone-0.7
    • found jar package
    • not found NOTICE in jar package
    • not found LICENSE in jar package
  • slf4j-api-1.7.21
    • found jar package
    • not found NOTICE in jar package
    • not found LICENSE in jar package
  • slf4j-api-1.7.32
    • found jar package
    • not found NOTICE in jar package
    • not found LICENSE in jar package
  • snakeyaml-1.18
    • found jar package
    • not found NOTICE in jar package
    • not found LICENSE in jar package
  • snakeyaml-1.28
    • found jar package
    • not found NOTICE in jar package
    • not found LICENSE in jar package
  • ST4-4.0.8
    • found jar package
    • not found NOTICE in jar package
    • not found LICENSE in jar package
  • xmlpull-1.1.3.1
    • found jar package
    • not found NOTICE in jar package
    • not found LICENSE in jar package
  • xmlunit-core-2.8.4
    • found jar package
    • not found NOTICE in jar package
    • not found LICENSE in jar package
  • xpp3_min-1.1.4c
    • found jar package
    • not found NOTICE in jar package
    • not found LICENSE in jar package
  • xstream-1.4.10
    • found jar package
    • not found NOTICE in jar package
    • not found LICENSE in jar package

@VGalaxies VGalaxies changed the title chore: update license for 1.5 [Summary] update license for 1.5 Jun 7, 2024
@imbajin imbajin added help wanted Extra attention is needed dependencies Incompatible dependencies of package apache labels Jun 10, 2024
@VGalaxies VGalaxies changed the title [Summary] update license for 1.5 [Summary] update licenses/notice for 1.5 Jul 10, 2024
@VGalaxies
Copy link
Contributor Author

https://mvnrepository.com/artifact/net.minidev/accessors-smart/1.2
https://mvnrepository.com/artifact/io.airlift/airline/0.8
https://mvnrepository.com/artifact/com.vaadin.external.google/android-json/0.0.20131108.vaadin1
https://mvnrepository.com/artifact/org.codehaus.mojo/animal-sniffer-annotations/1.18
https://mvnrepository.com/artifact/org.codehaus.mojo/animal-sniffer-annotations/1.19
https://mvnrepository.com/artifact/org.jetbrains/annotations/13.0
https://mvnrepository.com/artifact/com.google.android/annotations/4.1.1.4
https://mvnrepository.com/artifact/org.ansj/ansj_seg/5.1.6
https://mvnrepository.com/artifact/org.antlr/antlr-runtime/3.5.2
https://mvnrepository.com/artifact/org.glassfish.hk2.external/aopalliance-repackaged/3.0.1
https://mvnrepository.com/artifact/org.apiguardian/apiguardian-api/1.1.0
https://mvnrepository.com/artifact/com.taobao.arthas/arthas-agent-attach/3.6.4
https://mvnrepository.com/artifact/com.taobao.arthas/arthas-agent-attach/3.7.1
https://mvnrepository.com/artifact/com.taobao.arthas/arthas-packaging/3.6.4
https://mvnrepository.com/artifact/com.taobao.arthas/arthas-packaging/3.7.1
https://mvnrepository.com/artifact/org.ow2.asm/asm/6.0
https://mvnrepository.com/artifact/org.ow2.asm/asm/7.1
https://mvnrepository.com/artifact/org.ow2.asm/asm-analysis/5.0.3
https://mvnrepository.com/artifact/org.ow2.asm/asm-analysis/9.2
https://mvnrepository.com/artifact/org.ow2.asm/asm-commons/5.0.3
https://mvnrepository.com/artifact/org.ow2.asm/asm-commons/9.2
https://mvnrepository.com/artifact/org.ow2.asm/asm-tree/5.0.3
https://mvnrepository.com/artifact/org.ow2.asm/asm-tree/9.2
https://mvnrepository.com/artifact/org.ow2.asm/asm-util/5.0.3
https://mvnrepository.com/artifact/org.assertj/assertj-core/3.19.0
https://mvnrepository.com/artifact/org.opencypher/ast-9.0/9.0.20190305
https://mvnrepository.com/artifact/org.apache.yetus/audience-annotations/0.5.0
https://mvnrepository.com/artifact/com.google.auto.service/auto-service-annotations/1.0
https://mvnrepository.com/artifact/com.alipay.sofa/bolt/1.6.2
https://mvnrepository.com/artifact/com.alipay.sofa/bolt/1.6.4
https://mvnrepository.com/artifact/net.bytebuddy/byte-buddy/1.10.20
https://mvnrepository.com/artifact/net.bytebuddy/byte-buddy/1.10.5
https://mvnrepository.com/artifact/net.bytebuddy/byte-buddy-agent/1.10.20
https://mvnrepository.com/artifact/net.bytebuddy/byte-buddy-agent/1.10.5
https://mvnrepository.com/artifact/net.bytebuddy/byte-buddy-agent/1.11.6
https://mvnrepository.com/artifact/com.github.ben-manes.caffeine/caffeine/2.3.1
https://mvnrepository.com/artifact/com.github.ben-manes.caffeine/caffeine/2.5.6
https://mvnrepository.com/artifact/org.apache.cassandra/cassandra-all/4.0.10
https://mvnrepository.com/artifact/com.datastax.cassandra/cassandra-driver-core/3.6.0
https://mvnrepository.com/artifact/org.checkerframework/checker-compat-qual/2.5.5
https://mvnrepository.com/artifact/org.checkerframework/checker-qual/3.12.0
https://mvnrepository.com/artifact/org.checkerframework/checker-qual/3.5.0
https://mvnrepository.com/artifact/net.openhft/chronicle-bytes/2.20.111
https://mvnrepository.com/artifact/net.openhft/chronicle-core/2.20.126
https://mvnrepository.com/artifact/net.openhft/chronicle-queue/5.20.123
https://mvnrepository.com/artifact/net.openhft/chronicle-threads/2.20.111
https://mvnrepository.com/artifact/net.openhft/chronicle-wire/2.20.117
https://mvnrepository.com/artifact/io.github.classgraph/classgraph/4.8.162
https://mvnrepository.com/artifact/commons-beanutils/commons-beanutils/1.9.4
https://mvnrepository.com/artifact/commons-cli/commons-cli/1.1
https://mvnrepository.com/artifact/commons-codec/commons-codec/1.11
https://mvnrepository.com/artifact/commons-codec/commons-codec/1.13
https://mvnrepository.com/artifact/commons-codec/commons-codec/1.15
https://mvnrepository.com/artifact/commons-codec/commons-codec/1.9
https://mvnrepository.com/artifact/commons-collections/commons-collections/3.2.2
https://mvnrepository.com/artifact/org.apache.commons/commons-collections4/4.4
https://mvnrepository.com/artifact/org.apache.commons/commons-compress/1.21
https://mvnrepository.com/artifact/commons-configuration/commons-configuration/1.10
https://mvnrepository.com/artifact/org.apache.commons/commons-configuration2/2.8.0
https://mvnrepository.com/artifact/commons-io/commons-io/2.12.0
https://mvnrepository.com/artifact/commons-io/commons-io/2.7
https://mvnrepository.com/artifact/commons-io/commons-io/2.8.0
https://mvnrepository.com/artifact/commons-lang/commons-lang/2.6
https://mvnrepository.com/artifact/org.apache.commons/commons-lang3/3.11
https://mvnrepository.com/artifact/org.apache.commons/commons-lang3/3.12.0
https://mvnrepository.com/artifact/org.apache.commons/commons-lang3/3.13.0
https://mvnrepository.com/artifact/commons-logging/commons-logging/1.1.1
https://mvnrepository.com/artifact/commons-logging/commons-logging/1.2
https://mvnrepository.com/artifact/org.apache.commons/commons-math3/3.2
https://mvnrepository.com/artifact/org.apache.commons/commons-text/1.10.0
https://mvnrepository.com/artifact/org.apache.commons/commons-text/1.9
https://mvnrepository.com/artifact/com.googlecode.concurrent-trees/concurrent-trees/2.4.0
https://mvnrepository.com/artifact/org.opencypher.gremlin/cypher-gremlin-extensions/1.0.4
https://mvnrepository.com/artifact/com.lmax/disruptor/3.3.7
https://mvnrepository.com/artifact/com.lmax/disruptor/3.4.1
https://mvnrepository.com/artifact/org.eclipse.collections/eclipse-collections/11.1.0
https://mvnrepository.com/artifact/org.eclipse.collections/eclipse-collections-api/11.1.0
https://mvnrepository.com/artifact/com.google.errorprone/error_prone_annotations/2.10.0
https://mvnrepository.com/artifact/com.google.errorprone/error_prone_annotations/2.3.4
https://mvnrepository.com/artifact/com.google.errorprone/error_prone_annotations/2.4.0
https://mvnrepository.com/artifact/net.objecthunter/exp4j/0.4.8
https://mvnrepository.com/artifact/org.opencypher/expressions-9.0/9.0.20190305
https://mvnrepository.com/artifact/net.jodah/failsafe/2.4.1
https://mvnrepository.com/artifact/com.google.guava/failureaccess/1.0.1
https://mvnrepository.com/artifact/com.alibaba/fastjson/1.2.83
https://mvnrepository.com/artifact/com.lihaoyi/fastparse_2.12/2.0.4
https://mvnrepository.com/artifact/it.unimi.dsi/fastutil/8.5.9
https://mvnrepository.com/artifact/com.github.stephenc.findbugs/findbugs-annotations/1.3.9-1
https://mvnrepository.com/artifact/org.opencypher/front-end-9.0/9.0.20190305
https://mvnrepository.com/artifact/org.apache.tinkerpop/gremlin-console/3.5.1
https://mvnrepository.com/artifact/org.apache.tinkerpop/gremlin-core/3.5.1
https://mvnrepository.com/artifact/org.apache.tinkerpop/gremlin-driver/3.5.1
https://mvnrepository.com/artifact/org.apache.tinkerpop/gremlin-groovy/3.5.1
https://mvnrepository.com/artifact/org.apache.tinkerpop/gremlin-groovy-test/3.2.11
https://mvnrepository.com/artifact/org.apache.tinkerpop/gremlin-server/3.5.1
https://mvnrepository.com/artifact/org.apache.tinkerpop/gremlin-shaded/3.5.1
https://mvnrepository.com/artifact/org.apache.tinkerpop/gremlin-test/3.5.1
https://mvnrepository.com/artifact/org.glassfish.grizzly/grizzly-framework/3.0.1
https://mvnrepository.com/artifact/org.glassfish.grizzly/grizzly-http/3.0.1
https://mvnrepository.com/artifact/org.glassfish.grizzly/grizzly-http-server/3.0.1
https://mvnrepository.com/artifact/org.glassfish.grizzly/grizzly-http-servlet/3.0.1
未找到 groovy:2.5.14-indy 对应的 groupId
https://mvnrepository.com/artifact/org.codehaus.groovy/groovy-cli-picocli/2.5.14
https://mvnrepository.com/artifact/org.codehaus.groovy/groovy-console/2.5.14
未找到 groovy-groovysh:2.5.14-indy 对应的 groupId
未找到 groovy-json:2.5.14-indy 对应的 groupId
未找到 groovy-jsr223:2.5.14-indy 对应的 groupId
https://mvnrepository.com/artifact/org.codehaus.groovy/groovy-swing/2.5.14
https://mvnrepository.com/artifact/org.codehaus.groovy/groovy-templates/2.5.14
https://mvnrepository.com/artifact/org.codehaus.groovy/groovy-xml/2.5.14
https://mvnrepository.com/artifact/io.grpc/grpc-api/1.28.1
https://mvnrepository.com/artifact/io.grpc/grpc-api/1.39.0
https://mvnrepository.com/artifact/io.grpc/grpc-api/1.47.0
https://mvnrepository.com/artifact/io.grpc/grpc-context/1.28.1
https://mvnrepository.com/artifact/io.grpc/grpc-context/1.39.0
https://mvnrepository.com/artifact/io.grpc/grpc-context/1.47.0
https://mvnrepository.com/artifact/io.grpc/grpc-core/1.28.1
https://mvnrepository.com/artifact/io.grpc/grpc-core/1.39.0
https://mvnrepository.com/artifact/io.grpc/grpc-core/1.47.0
https://mvnrepository.com/artifact/io.grpc/grpc-grpclb/1.39.0
https://mvnrepository.com/artifact/io.grpc/grpc-netty/1.39.0
https://mvnrepository.com/artifact/io.grpc/grpc-netty/1.47.0
https://mvnrepository.com/artifact/io.grpc/grpc-netty-shaded/1.28.0
https://mvnrepository.com/artifact/io.grpc/grpc-netty-shaded/1.39.0
https://mvnrepository.com/artifact/io.grpc/grpc-netty-shaded/1.47.0
https://mvnrepository.com/artifact/io.grpc/grpc-protobuf/1.28.0
https://mvnrepository.com/artifact/io.grpc/grpc-protobuf/1.39.0
https://mvnrepository.com/artifact/io.grpc/grpc-protobuf-lite/1.28.0
https://mvnrepository.com/artifact/io.grpc/grpc-protobuf-lite/1.39.0
https://mvnrepository.com/artifact/io.grpc/grpc-services/1.39.0
https://mvnrepository.com/artifact/io.github.lognet/grpc-spring-boot-starter/4.5.5
https://mvnrepository.com/artifact/io.grpc/grpc-stub/1.28.0
https://mvnrepository.com/artifact/io.grpc/grpc-stub/1.39.0
https://mvnrepository.com/artifact/io.grpc/grpc-stub/1.47.0
https://mvnrepository.com/artifact/com.google.code.gson/gson/2.8.6
https://mvnrepository.com/artifact/com.google.code.gson/gson/2.8.9
https://mvnrepository.com/artifact/com.google.guava/guava/27.0-jre
https://mvnrepository.com/artifact/com.google.guava/guava/30.0-jre
https://mvnrepository.com/artifact/com.google.guava/guava/30.1-android
https://mvnrepository.com/artifact/com.google.guava/guava/31.0.1-android
https://mvnrepository.com/artifact/org.hamcrest/hamcrest/2.2
https://mvnrepository.com/artifact/org.hamcrest/hamcrest-core/1.3
未找到 hanlp-portable:1.8.3 对应的 groupId
https://mvnrepository.com/artifact/com.baidu.hugegraph/hbase-shaded-endpoint/2.0.6
https://mvnrepository.com/artifact/org.hdrhistogram/HdrHistogram/2.1.12
https://mvnrepository.com/artifact/org.hdrhistogram/HdrHistogram/2.1.9
https://mvnrepository.com/artifact/com.alipay.sofa/hessian/3.3.6
https://mvnrepository.com/artifact/com.alipay.sofa/hessian/3.3.7
https://mvnrepository.com/artifact/org.apache.hugegraph/hg-pd-client/1.5.0
https://mvnrepository.com/artifact/org.apache.hugegraph/hg-pd-common/1.5.0
https://mvnrepository.com/artifact/org.apache.hugegraph/hg-pd-core/1.5.0
https://mvnrepository.com/artifact/org.apache.hugegraph/hg-pd-dist/1.5.0
https://mvnrepository.com/artifact/org.apache.hugegraph/hg-pd-grpc/1.5.0
https://mvnrepository.com/artifact/org.apache.hugegraph/hg-pd-service/1.5.0
https://mvnrepository.com/artifact/org.apache.hugegraph/hg-store-client/1.5.0
https://mvnrepository.com/artifact/org.apache.hugegraph/hg-store-common/1.5.0
https://mvnrepository.com/artifact/org.apache.hugegraph/hg-store-core/1.5.0
https://mvnrepository.com/artifact/org.apache.hugegraph/hg-store-grpc/1.5.0
https://mvnrepository.com/artifact/org.apache.hugegraph/hg-store-node/1.5.0
https://mvnrepository.com/artifact/org.apache.hugegraph/hg-store-rocksdb/1.5.0
https://mvnrepository.com/artifact/com.boundary/high-scale-lib/1.0.6
https://mvnrepository.com/artifact/org.glassfish.hk2/hk2-api/3.0.1
https://mvnrepository.com/artifact/org.glassfish.hk2/hk2-locator/3.0.1
https://mvnrepository.com/artifact/org.glassfish.hk2/hk2-utils/3.0.1
https://mvnrepository.com/artifact/com.carrotsearch/hppc/0.7.1
https://mvnrepository.com/artifact/com.carrotsearch/hppc/0.8.1
https://mvnrepository.com/artifact/org.apache.htrace/htrace-core4/4.2.0-incubating
https://mvnrepository.com/artifact/org.apache.httpcomponents/httpclient/4.5.13
https://mvnrepository.com/artifact/org.apache.httpcomponents/httpcore/4.4.13
https://mvnrepository.com/artifact/com.janeluo/ikanalyzer/2012_u6
https://mvnrepository.com/artifact/org.apache.ivy/ivy/2.4.0
https://mvnrepository.com/artifact/com.google.j2objc/j2objc-annotations/1.3
https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-annotations/2.12.6
https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-annotations/2.13.0
https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-annotations/2.13.2
https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-annotations/2.14.0-rc1
https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-core/2.12.6
https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-core/2.13.0
https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-core/2.13.2
https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-core/2.14.0-rc1
https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-databind/2.12.6.1
https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-databind/2.13.0
https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-databind/2.13.2.2
https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-databind/2.14.0-rc1
https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-databind/2.15.2
https://mvnrepository.com/artifact/com.fasterxml.jackson.dataformat/jackson-dataformat-yaml/2.9.3
https://mvnrepository.com/artifact/com.fasterxml.jackson.datatype/jackson-datatype-jdk8/2.12.6
https://mvnrepository.com/artifact/com.fasterxml.jackson.datatype/jackson-datatype-jsr310/2.12.6
https://mvnrepository.com/artifact/com.fasterxml.jackson.datatype/jackson-datatype-jsr310/2.15.2
https://mvnrepository.com/artifact/com.fasterxml.jackson.jakarta.rs/jackson-jakarta-rs-base/2.15.2
https://mvnrepository.com/artifact/com.fasterxml.jackson.jakarta.rs/jackson-jakarta-rs-json-provider/2.15.2
https://mvnrepository.com/artifact/com.fasterxml.jackson.jaxrs/jackson-jaxrs-base/2.14.0-rc1
https://mvnrepository.com/artifact/com.fasterxml.jackson.jaxrs/jackson-jaxrs-json-provider/2.14.0-rc1
https://mvnrepository.com/artifact/com.fasterxml.jackson.module/jackson-module-jakarta-xmlbind-annotations/2.15.2
https://mvnrepository.com/artifact/com.fasterxml.jackson.module/jackson-module-jaxb-annotations/2.14.0-rc1
https://mvnrepository.com/artifact/com.fasterxml.jackson.module/jackson-module-parameter-names/2.12.6
https://mvnrepository.com/artifact/com.sun.activation/jakarta.activation/2.0.0
https://mvnrepository.com/artifact/com.sun.activation/jakarta.activation/2.0.1
https://mvnrepository.com/artifact/jakarta.activation/jakarta.activation-api/1.2.2
https://mvnrepository.com/artifact/jakarta.annotation/jakarta.annotation-api/1.3.5
https://mvnrepository.com/artifact/jakarta.annotation/jakarta.annotation-api/2.0.0
https://mvnrepository.com/artifact/jakarta.inject/jakarta.inject-api/2.0.0
https://mvnrepository.com/artifact/jakarta.servlet/jakarta.servlet-api/4.0.4
https://mvnrepository.com/artifact/jakarta.servlet/jakarta.servlet-api/5.0.0
https://mvnrepository.com/artifact/jakarta.validation/jakarta.validation-api/3.0.0
https://mvnrepository.com/artifact/jakarta.websocket/jakarta.websocket-api/1.1.2
https://mvnrepository.com/artifact/jakarta.ws.rs/jakarta.ws.rs-api/3.0.0
https://mvnrepository.com/artifact/jakarta.xml.bind/jakarta.xml.bind-api/2.3.3
https://mvnrepository.com/artifact/jakarta.xml.bind/jakarta.xml.bind-api/3.0.0
https://mvnrepository.com/artifact/com.github.jbellis/jamm/0.3.2
https://mvnrepository.com/artifact/com.github.vbmacher/java-cup-runtime/11b-20160615
https://mvnrepository.com/artifact/com.squareup/javapoet/1.8.0
https://mvnrepository.com/artifact/org.javassist/javassist/3.21.0-GA
https://mvnrepository.com/artifact/org.javassist/javassist/3.24.0-GA
https://mvnrepository.com/artifact/org.javassist/javassist/3.28.0-GA
https://mvnrepository.com/artifact/org.javatuples/javatuples/1.2
https://mvnrepository.com/artifact/javax.activation/javax.activation-api/1.2.0
https://mvnrepository.com/artifact/javax.annotation/javax.annotation-api/1.3.2
https://mvnrepository.com/artifact/javax.inject/javax.inject/1
https://mvnrepository.com/artifact/org.glassfish/javax.json/1.0
https://mvnrepository.com/artifact/org.eclipse.jetty.websocket/javax-websocket-client-impl/9.4.46.v20220331
https://mvnrepository.com/artifact/org.eclipse.jetty.websocket/javax-websocket-server-impl/9.4.46.v20220331
https://mvnrepository.com/artifact/javax.xml.bind/jaxb-api/2.3.1
https://mvnrepository.com/artifact/com.sun.xml.bind/jaxb-core/3.0.2
https://mvnrepository.com/artifact/com.sun.xml.bind/jaxb-impl/3.0.2
https://mvnrepository.com/artifact/org.mindrot/jbcrypt/0.4
https://mvnrepository.com/artifact/com.jcabi/jcabi-log/0.14
https://mvnrepository.com/artifact/com.jcabi/jcabi-manifests/1.1
https://mvnrepository.com/artifact/com.github.stephenc.jcip/jcip-annotations/1.0-1
https://mvnrepository.com/artifact/org.slf4j/jcl-over-slf4j/1.7.25
https://mvnrepository.com/artifact/com.beust/jcommander/1.30
https://mvnrepository.com/artifact/org.lionsoul/jcseg-core/2.6.2
https://mvnrepository.com/artifact/org.jctools/jctools-core/2.1.1
https://mvnrepository.com/artifact/org.jctools/jctools-core/3.1.0
https://mvnrepository.com/artifact/org.glassfish.jersey.connectors/jersey-apache-connector/3.0.3
https://mvnrepository.com/artifact/org.glassfish.jersey.core/jersey-client/3.0.3
https://mvnrepository.com/artifact/org.glassfish.jersey.core/jersey-common/3.0.3
https://mvnrepository.com/artifact/org.glassfish.jersey.containers/jersey-container-grizzly2-http/3.0.3
https://mvnrepository.com/artifact/org.glassfish.jersey.containers/jersey-container-grizzly2-servlet/3.0.3
https://mvnrepository.com/artifact/org.glassfish.jersey.containers/jersey-container-servlet/3.0.3
https://mvnrepository.com/artifact/org.glassfish.jersey.containers/jersey-container-servlet-core/3.0.3
https://mvnrepository.com/artifact/org.glassfish.jersey.ext/jersey-entity-filtering/3.0.3
https://mvnrepository.com/artifact/org.glassfish.jersey.inject/jersey-hk2/3.0.3
https://mvnrepository.com/artifact/org.glassfish.jersey.media/jersey-media-jaxb/3.0.3
https://mvnrepository.com/artifact/org.glassfish.jersey.media/jersey-media-json-jackson/3.0.3
https://mvnrepository.com/artifact/org.glassfish.jersey.core/jersey-server/3.0.3
https://mvnrepository.com/artifact/org.glassfish.jersey.test-framework/jersey-test-framework-core/3.0.3
https://mvnrepository.com/artifact/org.glassfish.jersey.test-framework.providers/jersey-test-framework-provider-grizzly2/3.0.3
https://mvnrepository.com/artifact/io.etcd/jetcd-common/0.5.9
https://mvnrepository.com/artifact/io.etcd/jetcd-core/0.5.9
https://mvnrepository.com/artifact/org.eclipse.jetty/jetty-annotations/9.4.46.v20220331
https://mvnrepository.com/artifact/org.eclipse.jetty/jetty-client/9.4.46.v20220331
https://mvnrepository.com/artifact/org.eclipse.jetty/jetty-continuation/9.4.46.v20220331
https://mvnrepository.com/artifact/org.eclipse.jetty/jetty-http/9.4.46.v20220331
https://mvnrepository.com/artifact/org.eclipse.jetty/jetty-io/9.4.46.v20220331
https://mvnrepository.com/artifact/org.eclipse.jetty/jetty-plus/9.4.46.v20220331
https://mvnrepository.com/artifact/org.eclipse.jetty/jetty-security/9.4.46.v20220331
https://mvnrepository.com/artifact/org.eclipse.jetty/jetty-server/9.4.46.v20220331
https://mvnrepository.com/artifact/org.eclipse.jetty/jetty-servlet/9.4.46.v20220331
https://mvnrepository.com/artifact/org.eclipse.jetty/jetty-servlets/9.4.46.v20220331
https://mvnrepository.com/artifact/org.eclipse.jetty/jetty-util/9.4.46.v20220331
https://mvnrepository.com/artifact/org.eclipse.jetty/jetty-util-ajax/9.4.46.v20220331
https://mvnrepository.com/artifact/org.eclipse.jetty/jetty-webapp/9.4.46.v20220331
https://mvnrepository.com/artifact/org.eclipse.jetty/jetty-xml/9.4.46.v20220331
https://mvnrepository.com/artifact/com.github.jnr/jffi/1.2.16
未找到 jffi:1.2.16-native 对应的 groupId
https://mvnrepository.com/artifact/de.jflex/jflex/1.8.2
https://mvnrepository.com/artifact/com.huaban/jieba-analysis/1.0.2
https://mvnrepository.com/artifact/io.jsonwebtoken/jjwt-api/0.11.5
https://mvnrepository.com/artifact/io.jsonwebtoken/jjwt-impl/0.11.5
https://mvnrepository.com/artifact/io.jsonwebtoken/jjwt-jackson/0.11.5
https://mvnrepository.com/artifact/jline/jline/2.14.6
https://mvnrepository.com/artifact/net.java.dev.jna/jna/5.12.1
https://mvnrepository.com/artifact/net.java.dev.jna/jna/5.5.0
https://mvnrepository.com/artifact/net.java.dev.jna/jna/5.7.0
https://mvnrepository.com/artifact/com.github.jnr/jnr-ffi/2.1.7
https://mvnrepository.com/artifact/com.github.jnr/jnr-x86asm/1.0.2
https://mvnrepository.com/artifact/joda-time/joda-time/2.10.8
https://mvnrepository.com/artifact/com.alipay.sofa/jraft-core/1.3.11
https://mvnrepository.com/artifact/com.alipay.sofa/jraft-core/1.3.13
https://mvnrepository.com/artifact/com.alipay.sofa/jraft-core/1.3.9
https://mvnrepository.com/artifact/org.json/json/20210307
https://mvnrepository.com/artifact/org.skyscreamer/jsonassert/1.5.0
https://mvnrepository.com/artifact/com.jayway.jsonpath/json-path/2.5.0
https://mvnrepository.com/artifact/com.googlecode.json-simple/json-simple/1.1
https://mvnrepository.com/artifact/net.minidev/json-smart/2.3
https://mvnrepository.com/artifact/com.google.code.findbugs/jsr305/3.0.1
https://mvnrepository.com/artifact/com.google.code.findbugs/jsr305/3.0.2
https://mvnrepository.com/artifact/org.slf4j/jul-to-slf4j/1.7.36
https://mvnrepository.com/artifact/junit/junit/4.13.1
https://mvnrepository.com/artifact/junit/junit/4.13.2
https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter/5.7.2
https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter-api/5.7.2
https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter-engine/5.7.2
https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter-params/5.7.2
https://mvnrepository.com/artifact/org.junit.platform/junit-platform-commons/1.7.2
https://mvnrepository.com/artifact/org.junit.platform/junit-platform-engine/1.7.2
https://mvnrepository.com/artifact/org.gridkit.lab/jvm-attach-api/1.5
https://mvnrepository.com/artifact/org.apache.kerby/kerb-admin/2.0.0
https://mvnrepository.com/artifact/org.apache.kerby/kerb-client/2.0.0
https://mvnrepository.com/artifact/org.apache.kerby/kerb-common/2.0.0
https://mvnrepository.com/artifact/org.apache.kerby/kerb-core/2.0.0
https://mvnrepository.com/artifact/org.apache.kerby/kerb-crypto/2.0.0
https://mvnrepository.com/artifact/org.apache.kerby/kerb-identity/2.0.0
https://mvnrepository.com/artifact/org.apache.kerby/kerb-server/2.0.0
https://mvnrepository.com/artifact/org.apache.kerby/kerb-simplekdc/2.0.0
https://mvnrepository.com/artifact/org.apache.kerby/kerb-util/2.0.0
https://mvnrepository.com/artifact/org.apache.kerby/kerby-asn1/2.0.0
https://mvnrepository.com/artifact/org.apache.kerby/kerby-config/2.0.0
https://mvnrepository.com/artifact/org.apache.kerby/kerby-pkix/2.0.0
https://mvnrepository.com/artifact/org.apache.kerby/kerby-util/2.0.0
https://mvnrepository.com/artifact/org.apache.kerby/kerby-xdr/2.0.0
https://mvnrepository.com/artifact/org.jetbrains.kotlin/kotlin-stdlib/1.6.20
https://mvnrepository.com/artifact/org.jetbrains.kotlin/kotlin-stdlib-common/1.5.31
https://mvnrepository.com/artifact/org.jetbrains.kotlin/kotlin-stdlib-jdk7/1.6.10
https://mvnrepository.com/artifact/org.jetbrains.kotlin/kotlin-stdlib-jdk8/1.6.10
https://mvnrepository.com/artifact/org.latencyutils/LatencyUtils/2.0.3
https://mvnrepository.com/artifact/com.google.guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava
https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-api/2.15.0
https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-api/2.17.0
https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-api/2.17.1
https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-api/2.17.2
https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-api/2.18.0
https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-core/2.15.0
https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-core/2.17.0
https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-core/2.17.1
https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-core/2.17.2
https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-core/2.18.0
https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-jul/2.17.2
https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-slf4j-impl/2.15.0
https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-slf4j-impl/2.17.0
https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-slf4j-impl/2.17.1
https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-slf4j-impl/2.18.0
https://mvnrepository.com/artifact/com.squareup.okhttp3/logging-interceptor/4.10.0
https://mvnrepository.com/artifact/org.projectlombok/lombok/1.18.24
https://mvnrepository.com/artifact/com.alipay.sofa.lookout/lookout-api/1.4.1
https://mvnrepository.com/artifact/org.apache.lucene/lucene-analyzers-common/8.11.2
https://mvnrepository.com/artifact/org.apache.lucene/lucene-analyzers-smartcn/8.11.2
https://mvnrepository.com/artifact/org.apache.lucene/lucene-core/8.11.2
https://mvnrepository.com/artifact/org.apache.lucene/lucene-queries/4.7.2
https://mvnrepository.com/artifact/org.apache.lucene/lucene-queryparser/4.7.2
https://mvnrepository.com/artifact/org.apache.lucene/lucene-sandbox/4.7.2
https://mvnrepository.com/artifact/org.lz4/lz4-java/1.4.0
https://mvnrepository.com/artifact/org.lz4/lz4-java/1.8.0
https://mvnrepository.com/artifact/io.dropwizard.metrics/metrics-annotation/4.2.4
https://mvnrepository.com/artifact/com.codahale.metrics/metrics-core/3.0.2
https://mvnrepository.com/artifact/io.dropwizard.metrics/metrics-core/3.1.5
https://mvnrepository.com/artifact/io.dropwizard.metrics/metrics-core/4.0.2
https://mvnrepository.com/artifact/io.dropwizard.metrics/metrics-core/4.2.4
https://mvnrepository.com/artifact/io.dropwizard.metrics/metrics-jersey3/4.2.4
https://mvnrepository.com/artifact/io.dropwizard.metrics/metrics-jvm/3.1.5
https://mvnrepository.com/artifact/io.dropwizard.metrics/metrics-logback/3.1.5
https://mvnrepository.com/artifact/io.micrometer/micrometer-core/1.7.12
https://mvnrepository.com/artifact/io.micrometer/micrometer-registry-prometheus/1.7.12
https://mvnrepository.com/artifact/com.chenlb.mmseg4j/mmseg4j-core/1.10.0
https://mvnrepository.com/artifact/org.mockito/mockito-core/3.3.3
https://mvnrepository.com/artifact/org.mockito/mockito-core/3.9.0
https://mvnrepository.com/artifact/org.mockito/mockito-junit-jupiter/3.9.0
https://mvnrepository.com/artifact/org.gridkit.jvmtool/mxdump/0.14
https://mvnrepository.com/artifact/io.netty/netty-all/4.1.42.Final
https://mvnrepository.com/artifact/io.netty/netty-all/4.1.44.Final
https://mvnrepository.com/artifact/io.netty/netty-all/4.1.61.Final
https://mvnrepository.com/artifact/io.netty/netty-buffer/4.1.52.Final
https://mvnrepository.com/artifact/io.netty/netty-buffer/4.1.72.Final
https://mvnrepository.com/artifact/io.netty/netty-codec/4.1.52.Final
https://mvnrepository.com/artifact/io.netty/netty-codec/4.1.72.Final
https://mvnrepository.com/artifact/io.netty/netty-codec-http2/4.1.52.Final
https://mvnrepository.com/artifact/io.netty/netty-codec-http2/4.1.72.Final
https://mvnrepository.com/artifact/io.netty/netty-codec-http/4.1.52.Final
https://mvnrepository.com/artifact/io.netty/netty-codec-http/4.1.72.Final
https://mvnrepository.com/artifact/io.netty/netty-codec-socks/4.1.52.Final
https://mvnrepository.com/artifact/io.netty/netty-codec-socks/4.1.72.Final
https://mvnrepository.com/artifact/io.netty/netty-common/4.1.52.Final
https://mvnrepository.com/artifact/io.netty/netty-common/4.1.72.Final
https://mvnrepository.com/artifact/io.netty/netty-handler/4.1.52.Final
https://mvnrepository.com/artifact/io.netty/netty-handler/4.1.72.Final
https://mvnrepository.com/artifact/io.netty/netty-handler-proxy/4.1.52.Final
https://mvnrepository.com/artifact/io.netty/netty-handler-proxy/4.1.72.Final
https://mvnrepository.com/artifact/io.netty/netty-resolver/4.1.52.Final
https://mvnrepository.com/artifact/io.netty/netty-resolver/4.1.72.Final
https://mvnrepository.com/artifact/io.netty/netty-tcnative-boringssl-static/2.0.25.Final
https://mvnrepository.com/artifact/io.netty/netty-tcnative-boringssl-static/2.0.36.Final
https://mvnrepository.com/artifact/io.netty/netty-tcnative-classes/2.0.46.Final
https://mvnrepository.com/artifact/io.netty/netty-transport/4.1.52.Final
https://mvnrepository.com/artifact/io.netty/netty-transport/4.1.72.Final
https://mvnrepository.com/artifact/io.netty/netty-transport-native-unix-common/4.1.72.Final
https://mvnrepository.com/artifact/com.nimbusds/nimbus-jose-jwt/4.41.2
https://mvnrepository.com/artifact/org.nlpcn/nlp-lang/1.7.7
https://mvnrepository.com/artifact/org.objenesis/objenesis/2.6
https://mvnrepository.com/artifact/org.objenesis/objenesis/3.2
https://mvnrepository.com/artifact/org.caffinitas.ohc/ohc-core/0.7.4
https://mvnrepository.com/artifact/org.caffinitas.ohc/ohc-core-j8/0.5.1
https://mvnrepository.com/artifact/com.squareup.okhttp3/okhttp/4.10.0
https://mvnrepository.com/artifact/com.squareup.okio/okio-jvm/3.0.0
https://mvnrepository.com/artifact/org.opentest4j/opentest4j/1.2.0
https://mvnrepository.com/artifact/io.opentracing/opentracing-api/0.22.0
https://mvnrepository.com/artifact/io.opentracing/opentracing-mock/0.22.0
https://mvnrepository.com/artifact/io.opentracing/opentracing-noop/0.22.0
https://mvnrepository.com/artifact/io.opentracing/opentracing-util/0.22.0
https://mvnrepository.com/artifact/org.glassfish.hk2/osgi-resource-locator/1.0.3
https://mvnrepository.com/artifact/org.parboiled/parboiled-core/1.2.0
https://mvnrepository.com/artifact/org.parboiled/parboiled-scala_2.12/1.2.0
https://mvnrepository.com/artifact/org.opencypher/parser-9.0/9.0.20190305
https://mvnrepository.com/artifact/io.perfmark/perfmark-api/0.19.0
https://mvnrepository.com/artifact/io.perfmark/perfmark-api/0.23.0
https://mvnrepository.com/artifact/io.perfmark/perfmark-api/0.25.0
https://mvnrepository.com/artifact/info.picocli/picocli/4.3.2
https://mvnrepository.com/artifact/org.postgresql/postgresql/42.4.3
https://mvnrepository.com/artifact/org.powermock/powermock-api-mockito2/2.0.0-RC.3
https://mvnrepository.com/artifact/org.powermock/powermock-api-support/2.0.0-RC.3
https://mvnrepository.com/artifact/org.powermock/powermock-classloading-base/2.0.0-RC.3
https://mvnrepository.com/artifact/org.powermock/powermock-classloading-xstream/2.0.0-RC.3
https://mvnrepository.com/artifact/org.powermock/powermock-core/2.0.0-RC.3
https://mvnrepository.com/artifact/org.powermock/powermock-module-junit4/2.0.0-RC.3
https://mvnrepository.com/artifact/org.powermock/powermock-module-junit4-common/2.0.0-RC.3
https://mvnrepository.com/artifact/org.powermock/powermock-module-junit4-rule/2.0.0-RC.3
https://mvnrepository.com/artifact/org.powermock/powermock-reflect/2.0.0-RC.3
https://mvnrepository.com/artifact/com.google.protobuf/protobuf-java/3.11.0
https://mvnrepository.com/artifact/com.google.protobuf/protobuf-java/3.17.2
https://mvnrepository.com/artifact/com.google.protobuf/protobuf-java/3.21.7
https://mvnrepository.com/artifact/com.google.protobuf/protobuf-java/3.5.1
https://mvnrepository.com/artifact/com.google.protobuf/protobuf-java-util/3.17.2
https://mvnrepository.com/artifact/com.google.api.grpc/proto-google-common-protos/1.17.0
https://mvnrepository.com/artifact/com.google.api.grpc/proto-google-common-protos/2.0.1
https://mvnrepository.com/artifact/io.protostuff/protostuff-api/1.6.0
https://mvnrepository.com/artifact/io.protostuff/protostuff-collectionschema/1.6.0
https://mvnrepository.com/artifact/io.protostuff/protostuff-core/1.6.0
https://mvnrepository.com/artifact/io.protostuff/protostuff-runtime/1.6.0
https://mvnrepository.com/artifact/org.psjava/psjava/0.1.19
https://mvnrepository.com/artifact/com.addthis.metrics/reporter-config3/3.0.3
https://mvnrepository.com/artifact/com.addthis.metrics/reporter-config-base/3.0.3
https://mvnrepository.com/artifact/org.opencypher/rewriting-9.0/9.0.20190305
https://mvnrepository.com/artifact/org.rocksdb/rocksdbjni/6.29.5
https://mvnrepository.com/artifact/org.rocksdb/rocksdbjni/7.2.2
https://mvnrepository.com/artifact/org.rocksdb/rocksdbjni/7.7.3
https://mvnrepository.com/artifact/org.scala-lang.modules/scala-java8-compat_2.12/0.8.0
https://mvnrepository.com/artifact/org.scala-lang/scala-library/2.12.7
https://mvnrepository.com/artifact/org.scala-lang/scala-reflect/2.12.7
https://mvnrepository.com/artifact/org.fusesource/sigar/1.6.4
https://mvnrepository.com/artifact/io.prometheus/simpleclient/0.10.0
https://mvnrepository.com/artifact/io.prometheus/simpleclient_common/0.10.0
https://mvnrepository.com/artifact/org.gridkit.jvmtool/sjk-agent/0.22
https://mvnrepository.com/artifact/org.gridkit.jvmtool/sjk-cli/0.14
https://mvnrepository.com/artifact/org.gridkit.jvmtool/sjk-cli/0.22
https://mvnrepository.com/artifact/org.gridkit.jvmtool/sjk-core/0.14
https://mvnrepository.com/artifact/org.gridkit.jvmtool/sjk-core/0.22
https://mvnrepository.com/artifact/org.gridkit.jvmtool/sjk-hflame/0.22
https://mvnrepository.com/artifact/org.perfkit.sjk.parsers/sjk-jfr5/0.5
https://mvnrepository.com/artifact/org.perfkit.sjk.parsers/sjk-jfr6/0.7
https://mvnrepository.com/artifact/org.perfkit.sjk.parsers/sjk-jfr-standalone/0.7
https://mvnrepository.com/artifact/org.gridkit.jvmtool/sjk-json/0.14
https://mvnrepository.com/artifact/org.gridkit.jvmtool/sjk-json/0.22
https://mvnrepository.com/artifact/org.perfkit.sjk.parsers/sjk-nps/0.9
https://mvnrepository.com/artifact/org.gridkit.jvmtool/sjk-stacktrace/0.14
https://mvnrepository.com/artifact/org.gridkit.jvmtool/sjk-stacktrace/0.22
https://mvnrepository.com/artifact/org.slf4j/slf4j-api/1.7.21
https://mvnrepository.com/artifact/org.slf4j/slf4j-api/1.7.25
https://mvnrepository.com/artifact/org.slf4j/slf4j-api/1.7.32
https://mvnrepository.com/artifact/org.slf4j/slf4j-api/2.0.9
https://mvnrepository.com/artifact/org.yaml/snakeyaml/1.18
https://mvnrepository.com/artifact/org.yaml/snakeyaml/1.26
https://mvnrepository.com/artifact/org.yaml/snakeyaml/1.27
https://mvnrepository.com/artifact/org.yaml/snakeyaml/1.28
https://mvnrepository.com/artifact/org.yaml/snakeyaml/2.2
https://mvnrepository.com/artifact/org.xerial.snappy/snappy-java/1.1.2.6
https://mvnrepository.com/artifact/com.github.rholder/snowball-stemmer/1.3.0.581.1
https://mvnrepository.com/artifact/com.alipay.sofa.common/sofa-common-tools/1.0.12
https://mvnrepository.com/artifact/com.alipay.sofa/sofa-rpc-all/5.7.6
https://mvnrepository.com/artifact/com.lihaoyi/sourcecode_2.12/0.1.4
https://mvnrepository.com/artifact/org.springframework/spring-aop/5.3.20
https://mvnrepository.com/artifact/org.springframework/spring-beans/5.3.20
https://mvnrepository.com/artifact/org.springframework.boot/spring-boot/2.5.14
https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-actuator/2.5.14
https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-actuator-autoconfigure/2.5.14
https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-autoconfigure/2.5.0
https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-autoconfigure/2.5.14
https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter/2.5.0
https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter/2.5.14
https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-actuator/2.5.14
https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-jetty/2.5.14
https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-json/2.5.14
https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-log4j2/2.5.14
https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-test/2.5.14
https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-web/2.5.14
https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-test/2.5.14
https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-test-autoconfigure/2.5.14
https://mvnrepository.com/artifact/org.springframework/spring-context/5.3.20
https://mvnrepository.com/artifact/org.springframework/spring-context-support/5.3.20
https://mvnrepository.com/artifact/org.springframework/spring-core/5.3.20
https://mvnrepository.com/artifact/org.springframework/spring-expression/5.3.20
https://mvnrepository.com/artifact/org.springframework/spring-jcl/5.3.20
https://mvnrepository.com/artifact/org.springframework/spring-web/5.3.20
https://mvnrepository.com/artifact/org.springframework/spring-webmvc/5.3.20
https://mvnrepository.com/artifact/org.antlr/ST4/4.0.8
https://mvnrepository.com/artifact/com.clearspring.analytics/stream/2.5.2
https://mvnrepository.com/artifact/io.swagger/swagger-annotations/1.5.18
https://mvnrepository.com/artifact/io.swagger.core.v3/swagger-annotations-jakarta/2.2.18
https://mvnrepository.com/artifact/io.swagger/swagger-core/1.5.18
https://mvnrepository.com/artifact/io.swagger.core.v3/swagger-core-jakarta/2.2.18
https://mvnrepository.com/artifact/io.swagger.core.v3/swagger-integration-jakarta/2.2.18
https://mvnrepository.com/artifact/io.swagger.core.v3/swagger-jaxrs2-jakarta/2.2.18
https://mvnrepository.com/artifact/io.swagger/swagger-models/1.5.18
https://mvnrepository.com/artifact/io.swagger.core.v3/swagger-models-jakarta/2.2.18
https://mvnrepository.com/artifact/org.apache.tinkerpop/tinkergraph-gremlin/3.5.1
https://mvnrepository.com/artifact/org.apache.kerby/token-provider/2.0.0
https://mvnrepository.com/artifact/org.apache.tomcat.embed/tomcat-embed-el/9.0.63
https://mvnrepository.com/artifact/com.alipay.sofa/tracer-core/3.0.8
https://mvnrepository.com/artifact/org.opencypher.gremlin/translation/1.0.4
https://mvnrepository.com/artifact/org.opencypher/util-9.0/9.0.20190305
https://mvnrepository.com/artifact/javax.validation/validation-api/1.1.0.Final
https://mvnrepository.com/artifact/org.eclipse.jetty.websocket/websocket-api/9.4.46.v20220331
https://mvnrepository.com/artifact/org.eclipse.jetty.websocket/websocket-client/9.4.46.v20220331
https://mvnrepository.com/artifact/org.eclipse.jetty.websocket/websocket-common/9.4.46.v20220331
https://mvnrepository.com/artifact/org.eclipse.jetty.websocket/websocket-server/9.4.46.v20220331
https://mvnrepository.com/artifact/org.eclipse.jetty.websocket/websocket-servlet/9.4.46.v20220331
https://mvnrepository.com/artifact/xmlpull/xmlpull/1.1.3.1
https://mvnrepository.com/artifact/org.xmlunit/xmlunit-core/2.8.4
https://mvnrepository.com/artifact/xpp3/xpp3_min/1.1.4c
https://mvnrepository.com/artifact/com.thoughtworks.xstream/xstream/1.4.10
https://mvnrepository.com/artifact/com.github.luben/zstd-jni/1.5.5-1
https://mvnrepository.com/artifact/org.zeroturnaround/zt-zip/1.14

@VGalaxies
Copy link
Contributor Author

https://mvnrepository.com/artifact/net.minidev/accessors-smart/1.2
https://mvnrepository.com/artifact/io.airlift/airline/0.8
https://mvnrepository.com/artifact/com.vaadin.external.google/android-json/0.0.20131108.vaadin1
https://mvnrepository.com/artifact/org.codehaus.mojo/animal-sniffer-annotations/1.18
https://mvnrepository.com/artifact/org.codehaus.mojo/animal-sniffer-annotations/1.19
https://mvnrepository.com/artifact/org.jetbrains/annotations/13.0
https://mvnrepository.com/artifact/com.google.android/annotations/4.1.1.4
https://mvnrepository.com/artifact/org.ansj/ansj_seg/5.1.6
https://mvnrepository.com/artifact/org.antlr/antlr-runtime/3.5.2
https://mvnrepository.com/artifact/org.glassfish.hk2.external/aopalliance-repackaged/3.0.1
https://mvnrepository.com/artifact/org.apiguardian/apiguardian-api/1.1.0
https://mvnrepository.com/artifact/com.taobao.arthas/arthas-agent-attach/3.6.4
https://mvnrepository.com/artifact/com.taobao.arthas/arthas-agent-attach/3.7.1
https://mvnrepository.com/artifact/com.taobao.arthas/arthas-packaging/3.6.4
https://mvnrepository.com/artifact/com.taobao.arthas/arthas-packaging/3.7.1
https://mvnrepository.com/artifact/org.ow2.asm/asm/6.0
https://mvnrepository.com/artifact/org.ow2.asm/asm/7.1
https://mvnrepository.com/artifact/org.ow2.asm/asm-analysis/5.0.3
https://mvnrepository.com/artifact/org.ow2.asm/asm-analysis/9.2
https://mvnrepository.com/artifact/org.ow2.asm/asm-commons/5.0.3
https://mvnrepository.com/artifact/org.ow2.asm/asm-commons/9.2
https://mvnrepository.com/artifact/org.ow2.asm/asm-tree/5.0.3
https://mvnrepository.com/artifact/org.ow2.asm/asm-tree/9.2
https://mvnrepository.com/artifact/org.ow2.asm/asm-util/5.0.3
https://mvnrepository.com/artifact/org.assertj/assertj-core/3.19.0
https://mvnrepository.com/artifact/org.opencypher/ast-9.0/9.0.20190305
https://mvnrepository.com/artifact/org.apache.yetus/audience-annotations/0.5.0
https://mvnrepository.com/artifact/com.google.auto.service/auto-service-annotations/1.0
https://mvnrepository.com/artifact/com.alipay.sofa/bolt/1.6.2
https://mvnrepository.com/artifact/com.alipay.sofa/bolt/1.6.4
https://mvnrepository.com/artifact/net.bytebuddy/byte-buddy/1.10.20
https://mvnrepository.com/artifact/net.bytebuddy/byte-buddy/1.10.5
https://mvnrepository.com/artifact/net.bytebuddy/byte-buddy-agent/1.10.20
https://mvnrepository.com/artifact/net.bytebuddy/byte-buddy-agent/1.10.5
https://mvnrepository.com/artifact/net.bytebuddy/byte-buddy-agent/1.11.6
https://mvnrepository.com/artifact/com.github.ben-manes.caffeine/caffeine/2.3.1
https://mvnrepository.com/artifact/com.github.ben-manes.caffeine/caffeine/2.5.6
https://mvnrepository.com/artifact/org.apache.cassandra/cassandra-all/4.0.10
https://mvnrepository.com/artifact/com.datastax.cassandra/cassandra-driver-core/3.6.0
https://mvnrepository.com/artifact/org.checkerframework/checker-compat-qual/2.5.5
https://mvnrepository.com/artifact/org.checkerframework/checker-qual/3.12.0
https://mvnrepository.com/artifact/org.checkerframework/checker-qual/3.5.0
https://mvnrepository.com/artifact/net.openhft/chronicle-bytes/2.20.111
https://mvnrepository.com/artifact/net.openhft/chronicle-core/2.20.126
https://mvnrepository.com/artifact/net.openhft/chronicle-queue/5.20.123
https://mvnrepository.com/artifact/net.openhft/chronicle-threads/2.20.111
https://mvnrepository.com/artifact/net.openhft/chronicle-wire/2.20.117
https://mvnrepository.com/artifact/io.github.classgraph/classgraph/4.8.162
https://mvnrepository.com/artifact/commons-beanutils/commons-beanutils/1.9.4
https://mvnrepository.com/artifact/commons-cli/commons-cli/1.1
https://mvnrepository.com/artifact/commons-codec/commons-codec/1.11
https://mvnrepository.com/artifact/commons-codec/commons-codec/1.13
https://mvnrepository.com/artifact/commons-codec/commons-codec/1.15
https://mvnrepository.com/artifact/commons-codec/commons-codec/1.9
https://mvnrepository.com/artifact/commons-collections/commons-collections/3.2.2
https://mvnrepository.com/artifact/org.apache.commons/commons-collections4/4.4
https://mvnrepository.com/artifact/org.apache.commons/commons-compress/1.21
https://mvnrepository.com/artifact/commons-configuration/commons-configuration/1.10
https://mvnrepository.com/artifact/org.apache.commons/commons-configuration2/2.8.0
https://mvnrepository.com/artifact/commons-io/commons-io/2.12.0
https://mvnrepository.com/artifact/commons-io/commons-io/2.7
https://mvnrepository.com/artifact/commons-io/commons-io/2.8.0
https://mvnrepository.com/artifact/commons-lang/commons-lang/2.6
https://mvnrepository.com/artifact/org.apache.commons/commons-lang3/3.11
https://mvnrepository.com/artifact/org.apache.commons/commons-lang3/3.12.0
https://mvnrepository.com/artifact/org.apache.commons/commons-lang3/3.13.0
https://mvnrepository.com/artifact/commons-logging/commons-logging/1.1.1
https://mvnrepository.com/artifact/commons-logging/commons-logging/1.2
https://mvnrepository.com/artifact/org.apache.commons/commons-math3/3.2
https://mvnrepository.com/artifact/org.apache.commons/commons-text/1.10.0
https://mvnrepository.com/artifact/org.apache.commons/commons-text/1.9
https://mvnrepository.com/artifact/com.googlecode.concurrent-trees/concurrent-trees/2.4.0
https://mvnrepository.com/artifact/org.opencypher.gremlin/cypher-gremlin-extensions/1.0.4
https://mvnrepository.com/artifact/com.lmax/disruptor/3.3.7
https://mvnrepository.com/artifact/com.lmax/disruptor/3.4.1
https://mvnrepository.com/artifact/org.eclipse.collections/eclipse-collections/11.1.0
https://mvnrepository.com/artifact/org.eclipse.collections/eclipse-collections-api/11.1.0
https://mvnrepository.com/artifact/com.google.errorprone/error_prone_annotations/2.10.0
https://mvnrepository.com/artifact/com.google.errorprone/error_prone_annotations/2.3.4
https://mvnrepository.com/artifact/com.google.errorprone/error_prone_annotations/2.4.0
https://mvnrepository.com/artifact/net.objecthunter/exp4j/0.4.8
https://mvnrepository.com/artifact/org.opencypher/expressions-9.0/9.0.20190305
https://mvnrepository.com/artifact/net.jodah/failsafe/2.4.1
https://mvnrepository.com/artifact/com.google.guava/failureaccess/1.0.1
https://mvnrepository.com/artifact/com.alibaba/fastjson/1.2.83
https://mvnrepository.com/artifact/com.lihaoyi/fastparse_2.12/2.0.4
https://mvnrepository.com/artifact/it.unimi.dsi/fastutil/8.5.9
https://mvnrepository.com/artifact/com.github.stephenc.findbugs/findbugs-annotations/1.3.9-1
https://mvnrepository.com/artifact/org.opencypher/front-end-9.0/9.0.20190305
https://mvnrepository.com/artifact/org.apache.tinkerpop/gremlin-console/3.5.1
https://mvnrepository.com/artifact/org.apache.tinkerpop/gremlin-core/3.5.1
https://mvnrepository.com/artifact/org.apache.tinkerpop/gremlin-driver/3.5.1
https://mvnrepository.com/artifact/org.apache.tinkerpop/gremlin-groovy/3.5.1
https://mvnrepository.com/artifact/org.apache.tinkerpop/gremlin-groovy-test/3.2.11
https://mvnrepository.com/artifact/org.apache.tinkerpop/gremlin-server/3.5.1
https://mvnrepository.com/artifact/org.apache.tinkerpop/gremlin-shaded/3.5.1
https://mvnrepository.com/artifact/org.apache.tinkerpop/gremlin-test/3.5.1
https://mvnrepository.com/artifact/org.glassfish.grizzly/grizzly-framework/3.0.1
https://mvnrepository.com/artifact/org.glassfish.grizzly/grizzly-http/3.0.1
https://mvnrepository.com/artifact/org.glassfish.grizzly/grizzly-http-server/3.0.1
https://mvnrepository.com/artifact/org.glassfish.grizzly/grizzly-http-servlet/3.0.1
https://mvnrepository.com/artifact/org.codehaus.groovy/groovy/2.5.14
https://mvnrepository.com/artifact/org.codehaus.groovy/groovy-cli-picocli/2.5.14
https://mvnrepository.com/artifact/org.codehaus.groovy/groovy-console/2.5.14
https://mvnrepository.com/artifact/org.codehaus.groovy/groovy-groovysh/2.5.14
https://mvnrepository.com/artifact/org.codehaus.groovy/groovy-json/2.5.14
https://mvnrepository.com/artifact/org.codehaus.groovy/groovy-jsr223/2.5.14
https://mvnrepository.com/artifact/org.codehaus.groovy/groovy-swing/2.5.14
https://mvnrepository.com/artifact/org.codehaus.groovy/groovy-templates/2.5.14
https://mvnrepository.com/artifact/org.codehaus.groovy/groovy-xml/2.5.14
https://mvnrepository.com/artifact/io.grpc/grpc-api/1.28.1
https://mvnrepository.com/artifact/io.grpc/grpc-api/1.39.0
https://mvnrepository.com/artifact/io.grpc/grpc-api/1.47.0
https://mvnrepository.com/artifact/io.grpc/grpc-context/1.28.1
https://mvnrepository.com/artifact/io.grpc/grpc-context/1.39.0
https://mvnrepository.com/artifact/io.grpc/grpc-context/1.47.0
https://mvnrepository.com/artifact/io.grpc/grpc-core/1.28.1
https://mvnrepository.com/artifact/io.grpc/grpc-core/1.39.0
https://mvnrepository.com/artifact/io.grpc/grpc-core/1.47.0
https://mvnrepository.com/artifact/io.grpc/grpc-grpclb/1.39.0
https://mvnrepository.com/artifact/io.grpc/grpc-netty/1.39.0
https://mvnrepository.com/artifact/io.grpc/grpc-netty/1.47.0
https://mvnrepository.com/artifact/io.grpc/grpc-netty-shaded/1.28.0
https://mvnrepository.com/artifact/io.grpc/grpc-netty-shaded/1.39.0
https://mvnrepository.com/artifact/io.grpc/grpc-netty-shaded/1.47.0
https://mvnrepository.com/artifact/io.grpc/grpc-protobuf/1.28.0
https://mvnrepository.com/artifact/io.grpc/grpc-protobuf/1.39.0
https://mvnrepository.com/artifact/io.grpc/grpc-protobuf-lite/1.28.0
https://mvnrepository.com/artifact/io.grpc/grpc-protobuf-lite/1.39.0
https://mvnrepository.com/artifact/io.grpc/grpc-services/1.39.0
https://mvnrepository.com/artifact/io.github.lognet/grpc-spring-boot-starter/4.5.5
https://mvnrepository.com/artifact/io.grpc/grpc-stub/1.28.0
https://mvnrepository.com/artifact/io.grpc/grpc-stub/1.39.0
https://mvnrepository.com/artifact/io.grpc/grpc-stub/1.47.0
https://mvnrepository.com/artifact/com.google.code.gson/gson/2.8.6
https://mvnrepository.com/artifact/com.google.code.gson/gson/2.8.9
https://mvnrepository.com/artifact/com.google.guava/guava/27.0-jre
https://mvnrepository.com/artifact/com.google.guava/guava/30.0-jre
https://mvnrepository.com/artifact/com.google.guava/guava/30.1-android
https://mvnrepository.com/artifact/com.google.guava/guava/31.0.1-android
https://mvnrepository.com/artifact/org.hamcrest/hamcrest/2.2
https://mvnrepository.com/artifact/org.hamcrest/hamcrest-core/1.3
https://mvnrepository.com/artifact/com.hankcs/hanlp/portable-1.8.3
https://mvnrepository.com/artifact/com.baidu.hugegraph/hbase-shaded-endpoint/2.0.6
https://mvnrepository.com/artifact/org.hdrhistogram/HdrHistogram/2.1.12
https://mvnrepository.com/artifact/org.hdrhistogram/HdrHistogram/2.1.9
https://mvnrepository.com/artifact/com.alipay.sofa/hessian/3.3.6
https://mvnrepository.com/artifact/com.alipay.sofa/hessian/3.3.7
https://mvnrepository.com/artifact/org.apache.hugegraph/hg-pd-client/1.5.0
https://mvnrepository.com/artifact/org.apache.hugegraph/hg-pd-common/1.5.0
https://mvnrepository.com/artifact/org.apache.hugegraph/hg-pd-core/1.5.0
https://mvnrepository.com/artifact/org.apache.hugegraph/hg-pd-dist/1.5.0
https://mvnrepository.com/artifact/org.apache.hugegraph/hg-pd-grpc/1.5.0
https://mvnrepository.com/artifact/org.apache.hugegraph/hg-pd-service/1.5.0
https://mvnrepository.com/artifact/org.apache.hugegraph/hg-store-client/1.5.0
https://mvnrepository.com/artifact/org.apache.hugegraph/hg-store-common/1.5.0
https://mvnrepository.com/artifact/org.apache.hugegraph/hg-store-core/1.5.0
https://mvnrepository.com/artifact/org.apache.hugegraph/hg-store-grpc/1.5.0
https://mvnrepository.com/artifact/org.apache.hugegraph/hg-store-node/1.5.0
https://mvnrepository.com/artifact/org.apache.hugegraph/hg-store-rocksdb/1.5.0
https://mvnrepository.com/artifact/com.boundary/high-scale-lib/1.0.6
https://mvnrepository.com/artifact/org.glassfish.hk2/hk2-api/3.0.1
https://mvnrepository.com/artifact/org.glassfish.hk2/hk2-locator/3.0.1
https://mvnrepository.com/artifact/org.glassfish.hk2/hk2-utils/3.0.1
https://mvnrepository.com/artifact/com.carrotsearch/hppc/0.7.1
https://mvnrepository.com/artifact/com.carrotsearch/hppc/0.8.1
https://mvnrepository.com/artifact/org.apache.htrace/htrace-core4/4.2.0-incubating
https://mvnrepository.com/artifact/org.apache.httpcomponents/httpclient/4.5.13
https://mvnrepository.com/artifact/org.apache.httpcomponents/httpcore/4.4.13
https://mvnrepository.com/artifact/com.janeluo/ikanalyzer/2012_u6
https://mvnrepository.com/artifact/org.apache.ivy/ivy/2.4.0
https://mvnrepository.com/artifact/com.google.j2objc/j2objc-annotations/1.3
https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-annotations/2.12.6
https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-annotations/2.13.0
https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-annotations/2.13.2
https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-annotations/2.14.0-rc1
https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-core/2.12.6
https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-core/2.13.0
https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-core/2.13.2
https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-core/2.14.0-rc1
https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-databind/2.12.6.1
https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-databind/2.13.0
https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-databind/2.13.2.2
https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-databind/2.14.0-rc1
https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-databind/2.15.2
https://mvnrepository.com/artifact/com.fasterxml.jackson.dataformat/jackson-dataformat-yaml/2.9.3
https://mvnrepository.com/artifact/com.fasterxml.jackson.datatype/jackson-datatype-jdk8/2.12.6
https://mvnrepository.com/artifact/com.fasterxml.jackson.datatype/jackson-datatype-jsr310/2.12.6
https://mvnrepository.com/artifact/com.fasterxml.jackson.datatype/jackson-datatype-jsr310/2.15.2
https://mvnrepository.com/artifact/com.fasterxml.jackson.jakarta.rs/jackson-jakarta-rs-base/2.15.2
https://mvnrepository.com/artifact/com.fasterxml.jackson.jakarta.rs/jackson-jakarta-rs-json-provider/2.15.2
https://mvnrepository.com/artifact/com.fasterxml.jackson.jaxrs/jackson-jaxrs-base/2.14.0-rc1
https://mvnrepository.com/artifact/com.fasterxml.jackson.jaxrs/jackson-jaxrs-json-provider/2.14.0-rc1
https://mvnrepository.com/artifact/com.fasterxml.jackson.module/jackson-module-jakarta-xmlbind-annotations/2.15.2
https://mvnrepository.com/artifact/com.fasterxml.jackson.module/jackson-module-jaxb-annotations/2.14.0-rc1
https://mvnrepository.com/artifact/com.fasterxml.jackson.module/jackson-module-parameter-names/2.12.6
https://mvnrepository.com/artifact/com.sun.activation/jakarta.activation/2.0.0
https://mvnrepository.com/artifact/com.sun.activation/jakarta.activation/2.0.1
https://mvnrepository.com/artifact/jakarta.activation/jakarta.activation-api/1.2.2
https://mvnrepository.com/artifact/jakarta.annotation/jakarta.annotation-api/1.3.5
https://mvnrepository.com/artifact/jakarta.annotation/jakarta.annotation-api/2.0.0
https://mvnrepository.com/artifact/jakarta.inject/jakarta.inject-api/2.0.0
https://mvnrepository.com/artifact/jakarta.servlet/jakarta.servlet-api/4.0.4
https://mvnrepository.com/artifact/jakarta.servlet/jakarta.servlet-api/5.0.0
https://mvnrepository.com/artifact/jakarta.validation/jakarta.validation-api/3.0.0
https://mvnrepository.com/artifact/jakarta.websocket/jakarta.websocket-api/1.1.2
https://mvnrepository.com/artifact/jakarta.ws.rs/jakarta.ws.rs-api/3.0.0
https://mvnrepository.com/artifact/jakarta.xml.bind/jakarta.xml.bind-api/2.3.3
https://mvnrepository.com/artifact/jakarta.xml.bind/jakarta.xml.bind-api/3.0.0
https://mvnrepository.com/artifact/com.github.jbellis/jamm/0.3.2
https://mvnrepository.com/artifact/com.github.vbmacher/java-cup-runtime/11b-20160615
https://mvnrepository.com/artifact/com.squareup/javapoet/1.8.0
https://mvnrepository.com/artifact/org.javassist/javassist/3.21.0-GA
https://mvnrepository.com/artifact/org.javassist/javassist/3.24.0-GA
https://mvnrepository.com/artifact/org.javassist/javassist/3.28.0-GA
https://mvnrepository.com/artifact/org.javatuples/javatuples/1.2
https://mvnrepository.com/artifact/javax.activation/javax.activation-api/1.2.0
https://mvnrepository.com/artifact/javax.annotation/javax.annotation-api/1.3.2
https://mvnrepository.com/artifact/javax.inject/javax.inject/1
https://mvnrepository.com/artifact/org.glassfish/javax.json/1.0
https://mvnrepository.com/artifact/org.eclipse.jetty.websocket/javax-websocket-client-impl/9.4.46.v20220331
https://mvnrepository.com/artifact/org.eclipse.jetty.websocket/javax-websocket-server-impl/9.4.46.v20220331
https://mvnrepository.com/artifact/javax.xml.bind/jaxb-api/2.3.1
https://mvnrepository.com/artifact/com.sun.xml.bind/jaxb-core/3.0.2
https://mvnrepository.com/artifact/com.sun.xml.bind/jaxb-impl/3.0.2
https://mvnrepository.com/artifact/org.mindrot/jbcrypt/0.4
https://mvnrepository.com/artifact/com.jcabi/jcabi-log/0.14
https://mvnrepository.com/artifact/com.jcabi/jcabi-manifests/1.1
https://mvnrepository.com/artifact/com.github.stephenc.jcip/jcip-annotations/1.0-1
https://mvnrepository.com/artifact/org.slf4j/jcl-over-slf4j/1.7.25
https://mvnrepository.com/artifact/com.beust/jcommander/1.30
https://mvnrepository.com/artifact/org.lionsoul/jcseg-core/2.6.2
https://mvnrepository.com/artifact/org.jctools/jctools-core/2.1.1
https://mvnrepository.com/artifact/org.jctools/jctools-core/3.1.0
https://mvnrepository.com/artifact/org.glassfish.jersey.connectors/jersey-apache-connector/3.0.3
https://mvnrepository.com/artifact/org.glassfish.jersey.core/jersey-client/3.0.3
https://mvnrepository.com/artifact/org.glassfish.jersey.core/jersey-common/3.0.3
https://mvnrepository.com/artifact/org.glassfish.jersey.containers/jersey-container-grizzly2-http/3.0.3
https://mvnrepository.com/artifact/org.glassfish.jersey.containers/jersey-container-grizzly2-servlet/3.0.3
https://mvnrepository.com/artifact/org.glassfish.jersey.containers/jersey-container-servlet/3.0.3
https://mvnrepository.com/artifact/org.glassfish.jersey.containers/jersey-container-servlet-core/3.0.3
https://mvnrepository.com/artifact/org.glassfish.jersey.ext/jersey-entity-filtering/3.0.3
https://mvnrepository.com/artifact/org.glassfish.jersey.inject/jersey-hk2/3.0.3
https://mvnrepository.com/artifact/org.glassfish.jersey.media/jersey-media-jaxb/3.0.3
https://mvnrepository.com/artifact/org.glassfish.jersey.media/jersey-media-json-jackson/3.0.3
https://mvnrepository.com/artifact/org.glassfish.jersey.core/jersey-server/3.0.3
https://mvnrepository.com/artifact/org.glassfish.jersey.test-framework/jersey-test-framework-core/3.0.3
https://mvnrepository.com/artifact/org.glassfish.jersey.test-framework.providers/jersey-test-framework-provider-grizzly2/3.0.3
https://mvnrepository.com/artifact/io.etcd/jetcd-common/0.5.9
https://mvnrepository.com/artifact/io.etcd/jetcd-core/0.5.9
https://mvnrepository.com/artifact/org.eclipse.jetty/jetty-annotations/9.4.46.v20220331
https://mvnrepository.com/artifact/org.eclipse.jetty/jetty-client/9.4.46.v20220331
https://mvnrepository.com/artifact/org.eclipse.jetty/jetty-continuation/9.4.46.v20220331
https://mvnrepository.com/artifact/org.eclipse.jetty/jetty-http/9.4.46.v20220331
https://mvnrepository.com/artifact/org.eclipse.jetty/jetty-io/9.4.46.v20220331
https://mvnrepository.com/artifact/org.eclipse.jetty/jetty-plus/9.4.46.v20220331
https://mvnrepository.com/artifact/org.eclipse.jetty/jetty-security/9.4.46.v20220331
https://mvnrepository.com/artifact/org.eclipse.jetty/jetty-server/9.4.46.v20220331
https://mvnrepository.com/artifact/org.eclipse.jetty/jetty-servlet/9.4.46.v20220331
https://mvnrepository.com/artifact/org.eclipse.jetty/jetty-servlets/9.4.46.v20220331
https://mvnrepository.com/artifact/org.eclipse.jetty/jetty-util/9.4.46.v20220331
https://mvnrepository.com/artifact/org.eclipse.jetty/jetty-util-ajax/9.4.46.v20220331
https://mvnrepository.com/artifact/org.eclipse.jetty/jetty-webapp/9.4.46.v20220331
https://mvnrepository.com/artifact/org.eclipse.jetty/jetty-xml/9.4.46.v20220331
https://mvnrepository.com/artifact/com.github.jnr/jffi/1.2.16
https://mvnrepository.com/artifact/de.jflex/jflex/1.8.2
https://mvnrepository.com/artifact/com.huaban/jieba-analysis/1.0.2
https://mvnrepository.com/artifact/io.jsonwebtoken/jjwt-api/0.11.5
https://mvnrepository.com/artifact/io.jsonwebtoken/jjwt-impl/0.11.5
https://mvnrepository.com/artifact/io.jsonwebtoken/jjwt-jackson/0.11.5
https://mvnrepository.com/artifact/jline/jline/2.14.6
https://mvnrepository.com/artifact/net.java.dev.jna/jna/5.12.1
https://mvnrepository.com/artifact/net.java.dev.jna/jna/5.5.0
https://mvnrepository.com/artifact/net.java.dev.jna/jna/5.7.0
https://mvnrepository.com/artifact/com.github.jnr/jnr-ffi/2.1.7
https://mvnrepository.com/artifact/com.github.jnr/jnr-x86asm/1.0.2
https://mvnrepository.com/artifact/joda-time/joda-time/2.10.8
https://mvnrepository.com/artifact/com.alipay.sofa/jraft-core/1.3.11
https://mvnrepository.com/artifact/com.alipay.sofa/jraft-core/1.3.13
https://mvnrepository.com/artifact/com.alipay.sofa/jraft-core/1.3.9
https://mvnrepository.com/artifact/org.json/json/20210307
https://mvnrepository.com/artifact/org.skyscreamer/jsonassert/1.5.0
https://mvnrepository.com/artifact/com.jayway.jsonpath/json-path/2.5.0
https://mvnrepository.com/artifact/com.googlecode.json-simple/json-simple/1.1
https://mvnrepository.com/artifact/net.minidev/json-smart/2.3
https://mvnrepository.com/artifact/com.google.code.findbugs/jsr305/3.0.1
https://mvnrepository.com/artifact/com.google.code.findbugs/jsr305/3.0.2
https://mvnrepository.com/artifact/org.slf4j/jul-to-slf4j/1.7.36
https://mvnrepository.com/artifact/junit/junit/4.13.1
https://mvnrepository.com/artifact/junit/junit/4.13.2
https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter/5.7.2
https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter-api/5.7.2
https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter-engine/5.7.2
https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter-params/5.7.2
https://mvnrepository.com/artifact/org.junit.platform/junit-platform-commons/1.7.2
https://mvnrepository.com/artifact/org.junit.platform/junit-platform-engine/1.7.2
https://mvnrepository.com/artifact/org.gridkit.lab/jvm-attach-api/1.5
https://mvnrepository.com/artifact/org.apache.kerby/kerb-admin/2.0.0
https://mvnrepository.com/artifact/org.apache.kerby/kerb-client/2.0.0
https://mvnrepository.com/artifact/org.apache.kerby/kerb-common/2.0.0
https://mvnrepository.com/artifact/org.apache.kerby/kerb-core/2.0.0
https://mvnrepository.com/artifact/org.apache.kerby/kerb-crypto/2.0.0
https://mvnrepository.com/artifact/org.apache.kerby/kerb-identity/2.0.0
https://mvnrepository.com/artifact/org.apache.kerby/kerb-server/2.0.0
https://mvnrepository.com/artifact/org.apache.kerby/kerb-simplekdc/2.0.0
https://mvnrepository.com/artifact/org.apache.kerby/kerb-util/2.0.0
https://mvnrepository.com/artifact/org.apache.kerby/kerby-asn1/2.0.0
https://mvnrepository.com/artifact/org.apache.kerby/kerby-config/2.0.0
https://mvnrepository.com/artifact/org.apache.kerby/kerby-pkix/2.0.0
https://mvnrepository.com/artifact/org.apache.kerby/kerby-util/2.0.0
https://mvnrepository.com/artifact/org.apache.kerby/kerby-xdr/2.0.0
https://mvnrepository.com/artifact/org.jetbrains.kotlin/kotlin-stdlib/1.6.20
https://mvnrepository.com/artifact/org.jetbrains.kotlin/kotlin-stdlib-common/1.5.31
https://mvnrepository.com/artifact/org.jetbrains.kotlin/kotlin-stdlib-jdk7/1.6.10
https://mvnrepository.com/artifact/org.jetbrains.kotlin/kotlin-stdlib-jdk8/1.6.10
https://mvnrepository.com/artifact/org.latencyutils/LatencyUtils/2.0.3
https://mvnrepository.com/artifact/com.google.guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava
https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-api/2.15.0
https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-api/2.17.0
https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-api/2.17.1
https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-api/2.17.2
https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-api/2.18.0
https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-core/2.15.0
https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-core/2.17.0
https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-core/2.17.1
https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-core/2.17.2
https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-core/2.18.0
https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-jul/2.17.2
https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-slf4j-impl/2.15.0
https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-slf4j-impl/2.17.0
https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-slf4j-impl/2.17.1
https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-slf4j-impl/2.18.0
https://mvnrepository.com/artifact/com.squareup.okhttp3/logging-interceptor/4.10.0
https://mvnrepository.com/artifact/org.projectlombok/lombok/1.18.24
https://mvnrepository.com/artifact/com.alipay.sofa.lookout/lookout-api/1.4.1
https://mvnrepository.com/artifact/org.apache.lucene/lucene-analyzers-common/8.11.2
https://mvnrepository.com/artifact/org.apache.lucene/lucene-analyzers-smartcn/8.11.2
https://mvnrepository.com/artifact/org.apache.lucene/lucene-core/8.11.2
https://mvnrepository.com/artifact/org.apache.lucene/lucene-queries/4.7.2
https://mvnrepository.com/artifact/org.apache.lucene/lucene-queryparser/4.7.2
https://mvnrepository.com/artifact/org.apache.lucene/lucene-sandbox/4.7.2
https://mvnrepository.com/artifact/org.lz4/lz4-java/1.4.0
https://mvnrepository.com/artifact/org.lz4/lz4-java/1.8.0
https://mvnrepository.com/artifact/io.dropwizard.metrics/metrics-annotation/4.2.4
https://mvnrepository.com/artifact/com.codahale.metrics/metrics-core/3.0.2
https://mvnrepository.com/artifact/io.dropwizard.metrics/metrics-core/3.1.5
https://mvnrepository.com/artifact/io.dropwizard.metrics/metrics-core/4.0.2
https://mvnrepository.com/artifact/io.dropwizard.metrics/metrics-core/4.2.4
https://mvnrepository.com/artifact/io.dropwizard.metrics/metrics-jersey3/4.2.4
https://mvnrepository.com/artifact/io.dropwizard.metrics/metrics-jvm/3.1.5
https://mvnrepository.com/artifact/io.dropwizard.metrics/metrics-logback/3.1.5
https://mvnrepository.com/artifact/io.micrometer/micrometer-core/1.7.12
https://mvnrepository.com/artifact/io.micrometer/micrometer-registry-prometheus/1.7.12
https://mvnrepository.com/artifact/com.chenlb.mmseg4j/mmseg4j-core/1.10.0
https://mvnrepository.com/artifact/org.mockito/mockito-core/3.3.3
https://mvnrepository.com/artifact/org.mockito/mockito-core/3.9.0
https://mvnrepository.com/artifact/org.mockito/mockito-junit-jupiter/3.9.0
https://mvnrepository.com/artifact/org.gridkit.jvmtool/mxdump/0.14
https://mvnrepository.com/artifact/io.netty/netty-all/4.1.42.Final
https://mvnrepository.com/artifact/io.netty/netty-all/4.1.44.Final
https://mvnrepository.com/artifact/io.netty/netty-all/4.1.61.Final
https://mvnrepository.com/artifact/io.netty/netty-buffer/4.1.52.Final
https://mvnrepository.com/artifact/io.netty/netty-buffer/4.1.72.Final
https://mvnrepository.com/artifact/io.netty/netty-codec/4.1.52.Final
https://mvnrepository.com/artifact/io.netty/netty-codec/4.1.72.Final
https://mvnrepository.com/artifact/io.netty/netty-codec-http2/4.1.52.Final
https://mvnrepository.com/artifact/io.netty/netty-codec-http2/4.1.72.Final
https://mvnrepository.com/artifact/io.netty/netty-codec-http/4.1.52.Final
https://mvnrepository.com/artifact/io.netty/netty-codec-http/4.1.72.Final
https://mvnrepository.com/artifact/io.netty/netty-codec-socks/4.1.52.Final
https://mvnrepository.com/artifact/io.netty/netty-codec-socks/4.1.72.Final
https://mvnrepository.com/artifact/io.netty/netty-common/4.1.52.Final
https://mvnrepository.com/artifact/io.netty/netty-common/4.1.72.Final
https://mvnrepository.com/artifact/io.netty/netty-handler/4.1.52.Final
https://mvnrepository.com/artifact/io.netty/netty-handler/4.1.72.Final
https://mvnrepository.com/artifact/io.netty/netty-handler-proxy/4.1.52.Final
https://mvnrepository.com/artifact/io.netty/netty-handler-proxy/4.1.72.Final
https://mvnrepository.com/artifact/io.netty/netty-resolver/4.1.52.Final
https://mvnrepository.com/artifact/io.netty/netty-resolver/4.1.72.Final
https://mvnrepository.com/artifact/io.netty/netty-tcnative-boringssl-static/2.0.25.Final
https://mvnrepository.com/artifact/io.netty/netty-tcnative-boringssl-static/2.0.36.Final
https://mvnrepository.com/artifact/io.netty/netty-tcnative-classes/2.0.46.Final
https://mvnrepository.com/artifact/io.netty/netty-transport/4.1.52.Final
https://mvnrepository.com/artifact/io.netty/netty-transport/4.1.72.Final
https://mvnrepository.com/artifact/io.netty/netty-transport-native-unix-common/4.1.72.Final
https://mvnrepository.com/artifact/com.nimbusds/nimbus-jose-jwt/4.41.2
https://mvnrepository.com/artifact/org.nlpcn/nlp-lang/1.7.7
https://mvnrepository.com/artifact/org.objenesis/objenesis/2.6
https://mvnrepository.com/artifact/org.objenesis/objenesis/3.2
https://mvnrepository.com/artifact/org.caffinitas.ohc/ohc-core/0.7.4
https://mvnrepository.com/artifact/org.caffinitas.ohc/ohc-core-j8/0.5.1
https://mvnrepository.com/artifact/com.squareup.okhttp3/okhttp/4.10.0
https://mvnrepository.com/artifact/com.squareup.okio/okio-jvm/3.0.0
https://mvnrepository.com/artifact/org.opentest4j/opentest4j/1.2.0
https://mvnrepository.com/artifact/io.opentracing/opentracing-api/0.22.0
https://mvnrepository.com/artifact/io.opentracing/opentracing-mock/0.22.0
https://mvnrepository.com/artifact/io.opentracing/opentracing-noop/0.22.0
https://mvnrepository.com/artifact/io.opentracing/opentracing-util/0.22.0
https://mvnrepository.com/artifact/org.glassfish.hk2/osgi-resource-locator/1.0.3
https://mvnrepository.com/artifact/org.parboiled/parboiled-core/1.2.0
https://mvnrepository.com/artifact/org.parboiled/parboiled-scala_2.12/1.2.0
https://mvnrepository.com/artifact/org.opencypher/parser-9.0/9.0.20190305
https://mvnrepository.com/artifact/io.perfmark/perfmark-api/0.19.0
https://mvnrepository.com/artifact/io.perfmark/perfmark-api/0.23.0
https://mvnrepository.com/artifact/io.perfmark/perfmark-api/0.25.0
https://mvnrepository.com/artifact/info.picocli/picocli/4.3.2
https://mvnrepository.com/artifact/org.postgresql/postgresql/42.4.3
https://mvnrepository.com/artifact/org.powermock/powermock-api-mockito2/2.0.0-RC.3
https://mvnrepository.com/artifact/org.powermock/powermock-api-support/2.0.0-RC.3
https://mvnrepository.com/artifact/org.powermock/powermock-classloading-base/2.0.0-RC.3
https://mvnrepository.com/artifact/org.powermock/powermock-classloading-xstream/2.0.0-RC.3
https://mvnrepository.com/artifact/org.powermock/powermock-core/2.0.0-RC.3
https://mvnrepository.com/artifact/org.powermock/powermock-module-junit4/2.0.0-RC.3
https://mvnrepository.com/artifact/org.powermock/powermock-module-junit4-common/2.0.0-RC.3
https://mvnrepository.com/artifact/org.powermock/powermock-module-junit4-rule/2.0.0-RC.3
https://mvnrepository.com/artifact/org.powermock/powermock-reflect/2.0.0-RC.3
https://mvnrepository.com/artifact/com.google.protobuf/protobuf-java/3.11.0
https://mvnrepository.com/artifact/com.google.protobuf/protobuf-java/3.17.2
https://mvnrepository.com/artifact/com.google.protobuf/protobuf-java/3.21.7
https://mvnrepository.com/artifact/com.google.protobuf/protobuf-java/3.5.1
https://mvnrepository.com/artifact/com.google.protobuf/protobuf-java-util/3.17.2
https://mvnrepository.com/artifact/com.google.api.grpc/proto-google-common-protos/1.17.0
https://mvnrepository.com/artifact/com.google.api.grpc/proto-google-common-protos/2.0.1
https://mvnrepository.com/artifact/io.protostuff/protostuff-api/1.6.0
https://mvnrepository.com/artifact/io.protostuff/protostuff-collectionschema/1.6.0
https://mvnrepository.com/artifact/io.protostuff/protostuff-core/1.6.0
https://mvnrepository.com/artifact/io.protostuff/protostuff-runtime/1.6.0
https://mvnrepository.com/artifact/org.psjava/psjava/0.1.19
https://mvnrepository.com/artifact/com.addthis.metrics/reporter-config3/3.0.3
https://mvnrepository.com/artifact/com.addthis.metrics/reporter-config-base/3.0.3
https://mvnrepository.com/artifact/org.opencypher/rewriting-9.0/9.0.20190305
https://mvnrepository.com/artifact/org.rocksdb/rocksdbjni/6.29.5
https://mvnrepository.com/artifact/org.rocksdb/rocksdbjni/7.2.2
https://mvnrepository.com/artifact/org.rocksdb/rocksdbjni/7.7.3
https://mvnrepository.com/artifact/org.scala-lang.modules/scala-java8-compat_2.12/0.8.0
https://mvnrepository.com/artifact/org.scala-lang/scala-library/2.12.7
https://mvnrepository.com/artifact/org.scala-lang/scala-reflect/2.12.7
https://mvnrepository.com/artifact/org.fusesource/sigar/1.6.4
https://mvnrepository.com/artifact/io.prometheus/simpleclient/0.10.0
https://mvnrepository.com/artifact/io.prometheus/simpleclient_common/0.10.0
https://mvnrepository.com/artifact/org.gridkit.jvmtool/sjk-agent/0.22
https://mvnrepository.com/artifact/org.gridkit.jvmtool/sjk-cli/0.14
https://mvnrepository.com/artifact/org.gridkit.jvmtool/sjk-cli/0.22
https://mvnrepository.com/artifact/org.gridkit.jvmtool/sjk-core/0.14
https://mvnrepository.com/artifact/org.gridkit.jvmtool/sjk-core/0.22
https://mvnrepository.com/artifact/org.gridkit.jvmtool/sjk-hflame/0.22
https://mvnrepository.com/artifact/org.perfkit.sjk.parsers/sjk-jfr5/0.5
https://mvnrepository.com/artifact/org.perfkit.sjk.parsers/sjk-jfr6/0.7
https://mvnrepository.com/artifact/org.perfkit.sjk.parsers/sjk-jfr-standalone/0.7
https://mvnrepository.com/artifact/org.gridkit.jvmtool/sjk-json/0.14
https://mvnrepository.com/artifact/org.gridkit.jvmtool/sjk-json/0.22
https://mvnrepository.com/artifact/org.perfkit.sjk.parsers/sjk-nps/0.9
https://mvnrepository.com/artifact/org.gridkit.jvmtool/sjk-stacktrace/0.14
https://mvnrepository.com/artifact/org.gridkit.jvmtool/sjk-stacktrace/0.22
https://mvnrepository.com/artifact/org.slf4j/slf4j-api/1.7.21
https://mvnrepository.com/artifact/org.slf4j/slf4j-api/1.7.25
https://mvnrepository.com/artifact/org.slf4j/slf4j-api/1.7.32
https://mvnrepository.com/artifact/org.slf4j/slf4j-api/2.0.9
https://mvnrepository.com/artifact/org.yaml/snakeyaml/1.18
https://mvnrepository.com/artifact/org.yaml/snakeyaml/1.26
https://mvnrepository.com/artifact/org.yaml/snakeyaml/1.27
https://mvnrepository.com/artifact/org.yaml/snakeyaml/1.28
https://mvnrepository.com/artifact/org.yaml/snakeyaml/2.2
https://mvnrepository.com/artifact/org.xerial.snappy/snappy-java/1.1.2.6
https://mvnrepository.com/artifact/com.github.rholder/snowball-stemmer/1.3.0.581.1
https://mvnrepository.com/artifact/com.alipay.sofa.common/sofa-common-tools/1.0.12
https://mvnrepository.com/artifact/com.alipay.sofa/sofa-rpc-all/5.7.6
https://mvnrepository.com/artifact/com.lihaoyi/sourcecode_2.12/0.1.4
https://mvnrepository.com/artifact/org.springframework/spring-aop/5.3.20
https://mvnrepository.com/artifact/org.springframework/spring-beans/5.3.20
https://mvnrepository.com/artifact/org.springframework.boot/spring-boot/2.5.14
https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-actuator/2.5.14
https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-actuator-autoconfigure/2.5.14
https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-autoconfigure/2.5.0
https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-autoconfigure/2.5.14
https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter/2.5.0
https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter/2.5.14
https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-actuator/2.5.14
https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-jetty/2.5.14
https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-json/2.5.14
https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-log4j2/2.5.14
https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-test/2.5.14
https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-web/2.5.14
https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-test/2.5.14
https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-test-autoconfigure/2.5.14
https://mvnrepository.com/artifact/org.springframework/spring-context/5.3.20
https://mvnrepository.com/artifact/org.springframework/spring-context-support/5.3.20
https://mvnrepository.com/artifact/org.springframework/spring-core/5.3.20
https://mvnrepository.com/artifact/org.springframework/spring-expression/5.3.20
https://mvnrepository.com/artifact/org.springframework/spring-jcl/5.3.20
https://mvnrepository.com/artifact/org.springframework/spring-web/5.3.20
https://mvnrepository.com/artifact/org.springframework/spring-webmvc/5.3.20
https://mvnrepository.com/artifact/org.antlr/ST4/4.0.8
https://mvnrepository.com/artifact/com.clearspring.analytics/stream/2.5.2
https://mvnrepository.com/artifact/io.swagger/swagger-annotations/1.5.18
https://mvnrepository.com/artifact/io.swagger.core.v3/swagger-annotations-jakarta/2.2.18
https://mvnrepository.com/artifact/io.swagger/swagger-core/1.5.18
https://mvnrepository.com/artifact/io.swagger.core.v3/swagger-core-jakarta/2.2.18
https://mvnrepository.com/artifact/io.swagger.core.v3/swagger-integration-jakarta/2.2.18
https://mvnrepository.com/artifact/io.swagger.core.v3/swagger-jaxrs2-jakarta/2.2.18
https://mvnrepository.com/artifact/io.swagger/swagger-models/1.5.18
https://mvnrepository.com/artifact/io.swagger.core.v3/swagger-models-jakarta/2.2.18
https://mvnrepository.com/artifact/org.apache.tinkerpop/tinkergraph-gremlin/3.5.1
https://mvnrepository.com/artifact/org.apache.kerby/token-provider/2.0.0
https://mvnrepository.com/artifact/org.apache.tomcat.embed/tomcat-embed-el/9.0.63
https://mvnrepository.com/artifact/com.alipay.sofa/tracer-core/3.0.8
https://mvnrepository.com/artifact/org.opencypher.gremlin/translation/1.0.4
https://mvnrepository.com/artifact/org.opencypher/util-9.0/9.0.20190305
https://mvnrepository.com/artifact/javax.validation/validation-api/1.1.0.Final
https://mvnrepository.com/artifact/org.eclipse.jetty.websocket/websocket-api/9.4.46.v20220331
https://mvnrepository.com/artifact/org.eclipse.jetty.websocket/websocket-client/9.4.46.v20220331
https://mvnrepository.com/artifact/org.eclipse.jetty.websocket/websocket-common/9.4.46.v20220331
https://mvnrepository.com/artifact/org.eclipse.jetty.websocket/websocket-server/9.4.46.v20220331
https://mvnrepository.com/artifact/org.eclipse.jetty.websocket/websocket-servlet/9.4.46.v20220331
https://mvnrepository.com/artifact/xmlpull/xmlpull/1.1.3.1
https://mvnrepository.com/artifact/org.xmlunit/xmlunit-core/2.8.4
https://mvnrepository.com/artifact/xpp3/xpp3_min/1.1.4c
https://mvnrepository.com/artifact/com.thoughtworks.xstream/xstream/1.4.10
https://mvnrepository.com/artifact/com.github.luben/zstd-jni/1.5.5-1
https://mvnrepository.com/artifact/org.zeroturnaround/zt-zip/1.14

@VGalaxies
Copy link
Contributor Author

https://central.sonatype.com/artifact/net.minidev/accessors-smart/1.2
https://central.sonatype.com/artifact/io.airlift/airline/0.8
https://central.sonatype.com/artifact/com.vaadin.external.google/android-json/0.0.20131108.vaadin1
https://central.sonatype.com/artifact/org.codehaus.mojo/animal-sniffer-annotations/1.18
https://central.sonatype.com/artifact/org.codehaus.mojo/animal-sniffer-annotations/1.19
https://central.sonatype.com/artifact/org.jetbrains/annotations/13.0
https://central.sonatype.com/artifact/com.google.android/annotations/4.1.1.4
https://central.sonatype.com/artifact/org.ansj/ansj_seg/5.1.6
https://central.sonatype.com/artifact/org.antlr/antlr-runtime/3.5.2
https://central.sonatype.com/artifact/org.glassfish.hk2.external/aopalliance-repackaged/3.0.1
https://central.sonatype.com/artifact/org.apiguardian/apiguardian-api/1.1.0
https://central.sonatype.com/artifact/com.taobao.arthas/arthas-agent-attach/3.6.4
https://central.sonatype.com/artifact/com.taobao.arthas/arthas-agent-attach/3.7.1
https://central.sonatype.com/artifact/com.taobao.arthas/arthas-packaging/3.6.4
https://central.sonatype.com/artifact/com.taobao.arthas/arthas-packaging/3.7.1
https://central.sonatype.com/artifact/org.ow2.asm/asm/6.0
https://central.sonatype.com/artifact/org.ow2.asm/asm/7.1
https://central.sonatype.com/artifact/org.ow2.asm/asm-analysis/5.0.3
https://central.sonatype.com/artifact/org.ow2.asm/asm-analysis/9.2
https://central.sonatype.com/artifact/org.ow2.asm/asm-commons/5.0.3
https://central.sonatype.com/artifact/org.ow2.asm/asm-commons/9.2
https://central.sonatype.com/artifact/org.ow2.asm/asm-tree/5.0.3
https://central.sonatype.com/artifact/org.ow2.asm/asm-tree/9.2
https://central.sonatype.com/artifact/org.ow2.asm/asm-util/5.0.3
https://central.sonatype.com/artifact/org.assertj/assertj-core/3.19.0
https://central.sonatype.com/artifact/org.opencypher/ast-9.0/9.0.20190305
https://central.sonatype.com/artifact/org.apache.yetus/audience-annotations/0.5.0
https://central.sonatype.com/artifact/com.google.auto.service/auto-service-annotations/1.0
https://central.sonatype.com/artifact/com.alipay.sofa/bolt/1.6.2
https://central.sonatype.com/artifact/com.alipay.sofa/bolt/1.6.4
https://central.sonatype.com/artifact/net.bytebuddy/byte-buddy/1.10.20
https://central.sonatype.com/artifact/net.bytebuddy/byte-buddy/1.10.5
https://central.sonatype.com/artifact/net.bytebuddy/byte-buddy-agent/1.10.20
https://central.sonatype.com/artifact/net.bytebuddy/byte-buddy-agent/1.10.5
https://central.sonatype.com/artifact/net.bytebuddy/byte-buddy-agent/1.11.6
https://central.sonatype.com/artifact/com.github.ben-manes.caffeine/caffeine/2.3.1
https://central.sonatype.com/artifact/com.github.ben-manes.caffeine/caffeine/2.5.6
https://central.sonatype.com/artifact/org.apache.cassandra/cassandra-all/4.0.10
https://central.sonatype.com/artifact/com.datastax.cassandra/cassandra-driver-core/3.6.0
https://central.sonatype.com/artifact/org.checkerframework/checker-compat-qual/2.5.5
https://central.sonatype.com/artifact/org.checkerframework/checker-qual/3.12.0
https://central.sonatype.com/artifact/org.checkerframework/checker-qual/3.5.0
https://central.sonatype.com/artifact/net.openhft/chronicle-bytes/2.20.111
https://central.sonatype.com/artifact/net.openhft/chronicle-core/2.20.126
https://central.sonatype.com/artifact/net.openhft/chronicle-queue/5.20.123
https://central.sonatype.com/artifact/net.openhft/chronicle-threads/2.20.111
https://central.sonatype.com/artifact/net.openhft/chronicle-wire/2.20.117
https://central.sonatype.com/artifact/io.github.classgraph/classgraph/4.8.162
https://central.sonatype.com/artifact/commons-beanutils/commons-beanutils/1.9.4
https://central.sonatype.com/artifact/commons-cli/commons-cli/1.1
https://central.sonatype.com/artifact/commons-codec/commons-codec/1.11
https://central.sonatype.com/artifact/commons-codec/commons-codec/1.13
https://central.sonatype.com/artifact/commons-codec/commons-codec/1.15
https://central.sonatype.com/artifact/commons-codec/commons-codec/1.9
https://central.sonatype.com/artifact/commons-collections/commons-collections/3.2.2
https://central.sonatype.com/artifact/org.apache.commons/commons-collections4/4.4
https://central.sonatype.com/artifact/org.apache.commons/commons-compress/1.21
https://central.sonatype.com/artifact/commons-configuration/commons-configuration/1.10
https://central.sonatype.com/artifact/org.apache.commons/commons-configuration2/2.8.0
https://central.sonatype.com/artifact/commons-io/commons-io/2.12.0
https://central.sonatype.com/artifact/commons-io/commons-io/2.7
https://central.sonatype.com/artifact/commons-io/commons-io/2.8.0
https://central.sonatype.com/artifact/commons-lang/commons-lang/2.6
https://central.sonatype.com/artifact/org.apache.commons/commons-lang3/3.11
https://central.sonatype.com/artifact/org.apache.commons/commons-lang3/3.12.0
https://central.sonatype.com/artifact/org.apache.commons/commons-lang3/3.13.0
https://central.sonatype.com/artifact/commons-logging/commons-logging/1.1.1
https://central.sonatype.com/artifact/commons-logging/commons-logging/1.2
https://central.sonatype.com/artifact/org.apache.commons/commons-math3/3.2
https://central.sonatype.com/artifact/org.apache.commons/commons-text/1.10.0
https://central.sonatype.com/artifact/org.apache.commons/commons-text/1.9
https://central.sonatype.com/artifact/com.googlecode.concurrent-trees/concurrent-trees/2.4.0
https://central.sonatype.com/artifact/org.opencypher.gremlin/cypher-gremlin-extensions/1.0.4
https://central.sonatype.com/artifact/com.lmax/disruptor/3.3.7
https://central.sonatype.com/artifact/com.lmax/disruptor/3.4.1
https://central.sonatype.com/artifact/org.eclipse.collections/eclipse-collections/11.1.0
https://central.sonatype.com/artifact/org.eclipse.collections/eclipse-collections-api/11.1.0
https://central.sonatype.com/artifact/com.google.errorprone/error_prone_annotations/2.10.0
https://central.sonatype.com/artifact/com.google.errorprone/error_prone_annotations/2.3.4
https://central.sonatype.com/artifact/com.google.errorprone/error_prone_annotations/2.4.0
https://central.sonatype.com/artifact/net.objecthunter/exp4j/0.4.8
https://central.sonatype.com/artifact/org.opencypher/expressions-9.0/9.0.20190305
https://central.sonatype.com/artifact/net.jodah/failsafe/2.4.1
https://central.sonatype.com/artifact/com.google.guava/failureaccess/1.0.1
https://central.sonatype.com/artifact/com.alibaba/fastjson/1.2.83
https://central.sonatype.com/artifact/com.lihaoyi/fastparse_2.12/2.0.4
https://central.sonatype.com/artifact/it.unimi.dsi/fastutil/8.5.9
https://central.sonatype.com/artifact/com.github.stephenc.findbugs/findbugs-annotations/1.3.9-1
https://central.sonatype.com/artifact/org.opencypher/front-end-9.0/9.0.20190305
https://central.sonatype.com/artifact/org.apache.tinkerpop/gremlin-console/3.5.1
https://central.sonatype.com/artifact/org.apache.tinkerpop/gremlin-core/3.5.1
https://central.sonatype.com/artifact/org.apache.tinkerpop/gremlin-driver/3.5.1
https://central.sonatype.com/artifact/org.apache.tinkerpop/gremlin-groovy/3.5.1
https://central.sonatype.com/artifact/org.apache.tinkerpop/gremlin-groovy-test/3.2.11
https://central.sonatype.com/artifact/org.apache.tinkerpop/gremlin-server/3.5.1
https://central.sonatype.com/artifact/org.apache.tinkerpop/gremlin-shaded/3.5.1
https://central.sonatype.com/artifact/org.apache.tinkerpop/gremlin-test/3.5.1
https://central.sonatype.com/artifact/org.glassfish.grizzly/grizzly-framework/3.0.1
https://central.sonatype.com/artifact/org.glassfish.grizzly/grizzly-http/3.0.1
https://central.sonatype.com/artifact/org.glassfish.grizzly/grizzly-http-server/3.0.1
https://central.sonatype.com/artifact/org.glassfish.grizzly/grizzly-http-servlet/3.0.1
https://central.sonatype.com/artifact/org.codehaus.groovy/groovy/2.5.14
https://central.sonatype.com/artifact/org.codehaus.groovy/groovy-cli-picocli/2.5.14
https://central.sonatype.com/artifact/org.codehaus.groovy/groovy-console/2.5.14
https://central.sonatype.com/artifact/org.codehaus.groovy/groovy-groovysh/2.5.14
https://central.sonatype.com/artifact/org.codehaus.groovy/groovy-json/2.5.14
https://central.sonatype.com/artifact/org.codehaus.groovy/groovy-jsr223/2.5.14
https://central.sonatype.com/artifact/org.codehaus.groovy/groovy-swing/2.5.14
https://central.sonatype.com/artifact/org.codehaus.groovy/groovy-templates/2.5.14
https://central.sonatype.com/artifact/org.codehaus.groovy/groovy-xml/2.5.14
https://central.sonatype.com/artifact/io.grpc/grpc-api/1.28.1
https://central.sonatype.com/artifact/io.grpc/grpc-api/1.39.0
https://central.sonatype.com/artifact/io.grpc/grpc-api/1.47.0
https://central.sonatype.com/artifact/io.grpc/grpc-context/1.28.1
https://central.sonatype.com/artifact/io.grpc/grpc-context/1.39.0
https://central.sonatype.com/artifact/io.grpc/grpc-context/1.47.0
https://central.sonatype.com/artifact/io.grpc/grpc-core/1.28.1
https://central.sonatype.com/artifact/io.grpc/grpc-core/1.39.0
https://central.sonatype.com/artifact/io.grpc/grpc-core/1.47.0
https://central.sonatype.com/artifact/io.grpc/grpc-grpclb/1.39.0
https://central.sonatype.com/artifact/io.grpc/grpc-netty/1.39.0
https://central.sonatype.com/artifact/io.grpc/grpc-netty/1.47.0
https://central.sonatype.com/artifact/io.grpc/grpc-netty-shaded/1.28.0
https://central.sonatype.com/artifact/io.grpc/grpc-netty-shaded/1.39.0
https://central.sonatype.com/artifact/io.grpc/grpc-netty-shaded/1.47.0
https://central.sonatype.com/artifact/io.grpc/grpc-protobuf/1.28.0
https://central.sonatype.com/artifact/io.grpc/grpc-protobuf/1.39.0
https://central.sonatype.com/artifact/io.grpc/grpc-protobuf-lite/1.28.0
https://central.sonatype.com/artifact/io.grpc/grpc-protobuf-lite/1.39.0
https://central.sonatype.com/artifact/io.grpc/grpc-services/1.39.0
https://central.sonatype.com/artifact/io.github.lognet/grpc-spring-boot-starter/4.5.5
https://central.sonatype.com/artifact/io.grpc/grpc-stub/1.28.0
https://central.sonatype.com/artifact/io.grpc/grpc-stub/1.39.0
https://central.sonatype.com/artifact/io.grpc/grpc-stub/1.47.0
https://central.sonatype.com/artifact/com.google.code.gson/gson/2.8.6
https://central.sonatype.com/artifact/com.google.code.gson/gson/2.8.9
https://central.sonatype.com/artifact/com.google.guava/guava/27.0-jre
https://central.sonatype.com/artifact/com.google.guava/guava/30.0-jre
https://central.sonatype.com/artifact/com.google.guava/guava/30.1-android
https://central.sonatype.com/artifact/com.google.guava/guava/31.0.1-android
https://central.sonatype.com/artifact/org.hamcrest/hamcrest/2.2
https://central.sonatype.com/artifact/org.hamcrest/hamcrest-core/1.3
https://central.sonatype.com/artifact/com.hankcs/hanlp/portable-1.8.3
https://central.sonatype.com/artifact/com.baidu.hugegraph/hbase-shaded-endpoint/2.0.6
https://central.sonatype.com/artifact/org.hdrhistogram/HdrHistogram/2.1.12
https://central.sonatype.com/artifact/org.hdrhistogram/HdrHistogram/2.1.9
https://central.sonatype.com/artifact/com.alipay.sofa/hessian/3.3.6
https://central.sonatype.com/artifact/com.alipay.sofa/hessian/3.3.7
https://central.sonatype.com/artifact/org.apache.hugegraph/hg-pd-client/1.5.0
https://central.sonatype.com/artifact/org.apache.hugegraph/hg-pd-common/1.5.0
https://central.sonatype.com/artifact/org.apache.hugegraph/hg-pd-core/1.5.0
https://central.sonatype.com/artifact/org.apache.hugegraph/hg-pd-dist/1.5.0
https://central.sonatype.com/artifact/org.apache.hugegraph/hg-pd-grpc/1.5.0
https://central.sonatype.com/artifact/org.apache.hugegraph/hg-pd-service/1.5.0
https://central.sonatype.com/artifact/org.apache.hugegraph/hg-store-client/1.5.0
https://central.sonatype.com/artifact/org.apache.hugegraph/hg-store-common/1.5.0
https://central.sonatype.com/artifact/org.apache.hugegraph/hg-store-core/1.5.0
https://central.sonatype.com/artifact/org.apache.hugegraph/hg-store-grpc/1.5.0
https://central.sonatype.com/artifact/org.apache.hugegraph/hg-store-node/1.5.0
https://central.sonatype.com/artifact/org.apache.hugegraph/hg-store-rocksdb/1.5.0
https://central.sonatype.com/artifact/com.boundary/high-scale-lib/1.0.6
https://central.sonatype.com/artifact/org.glassfish.hk2/hk2-api/3.0.1
https://central.sonatype.com/artifact/org.glassfish.hk2/hk2-locator/3.0.1
https://central.sonatype.com/artifact/org.glassfish.hk2/hk2-utils/3.0.1
https://central.sonatype.com/artifact/com.carrotsearch/hppc/0.7.1
https://central.sonatype.com/artifact/com.carrotsearch/hppc/0.8.1
https://central.sonatype.com/artifact/org.apache.htrace/htrace-core4/4.2.0-incubating
https://central.sonatype.com/artifact/org.apache.httpcomponents/httpclient/4.5.13
https://central.sonatype.com/artifact/org.apache.httpcomponents/httpcore/4.4.13
https://central.sonatype.com/artifact/com.janeluo/ikanalyzer/2012_u6
https://central.sonatype.com/artifact/org.apache.ivy/ivy/2.4.0
https://central.sonatype.com/artifact/com.google.j2objc/j2objc-annotations/1.3
https://central.sonatype.com/artifact/com.fasterxml.jackson.core/jackson-annotations/2.12.6
https://central.sonatype.com/artifact/com.fasterxml.jackson.core/jackson-annotations/2.13.0
https://central.sonatype.com/artifact/com.fasterxml.jackson.core/jackson-annotations/2.13.2
https://central.sonatype.com/artifact/com.fasterxml.jackson.core/jackson-annotations/2.14.0-rc1
https://central.sonatype.com/artifact/com.fasterxml.jackson.core/jackson-core/2.12.6
https://central.sonatype.com/artifact/com.fasterxml.jackson.core/jackson-core/2.13.0
https://central.sonatype.com/artifact/com.fasterxml.jackson.core/jackson-core/2.13.2
https://central.sonatype.com/artifact/com.fasterxml.jackson.core/jackson-core/2.14.0-rc1
https://central.sonatype.com/artifact/com.fasterxml.jackson.core/jackson-databind/2.12.6.1
https://central.sonatype.com/artifact/com.fasterxml.jackson.core/jackson-databind/2.13.0
https://central.sonatype.com/artifact/com.fasterxml.jackson.core/jackson-databind/2.13.2.2
https://central.sonatype.com/artifact/com.fasterxml.jackson.core/jackson-databind/2.14.0-rc1
https://central.sonatype.com/artifact/com.fasterxml.jackson.core/jackson-databind/2.15.2
https://central.sonatype.com/artifact/com.fasterxml.jackson.dataformat/jackson-dataformat-yaml/2.9.3
https://central.sonatype.com/artifact/com.fasterxml.jackson.datatype/jackson-datatype-jdk8/2.12.6
https://central.sonatype.com/artifact/com.fasterxml.jackson.datatype/jackson-datatype-jsr310/2.12.6
https://central.sonatype.com/artifact/com.fasterxml.jackson.datatype/jackson-datatype-jsr310/2.15.2
https://central.sonatype.com/artifact/com.fasterxml.jackson.jakarta.rs/jackson-jakarta-rs-base/2.15.2
https://central.sonatype.com/artifact/com.fasterxml.jackson.jakarta.rs/jackson-jakarta-rs-json-provider/2.15.2
https://central.sonatype.com/artifact/com.fasterxml.jackson.jaxrs/jackson-jaxrs-base/2.14.0-rc1
https://central.sonatype.com/artifact/com.fasterxml.jackson.jaxrs/jackson-jaxrs-json-provider/2.14.0-rc1
https://central.sonatype.com/artifact/com.fasterxml.jackson.module/jackson-module-jakarta-xmlbind-annotations/2.15.2
https://central.sonatype.com/artifact/com.fasterxml.jackson.module/jackson-module-jaxb-annotations/2.14.0-rc1
https://central.sonatype.com/artifact/com.fasterxml.jackson.module/jackson-module-parameter-names/2.12.6
https://central.sonatype.com/artifact/com.sun.activation/jakarta.activation/2.0.0
https://central.sonatype.com/artifact/com.sun.activation/jakarta.activation/2.0.1
https://central.sonatype.com/artifact/jakarta.activation/jakarta.activation-api/1.2.2
https://central.sonatype.com/artifact/jakarta.annotation/jakarta.annotation-api/1.3.5
https://central.sonatype.com/artifact/jakarta.annotation/jakarta.annotation-api/2.0.0
https://central.sonatype.com/artifact/jakarta.inject/jakarta.inject-api/2.0.0
https://central.sonatype.com/artifact/jakarta.servlet/jakarta.servlet-api/4.0.4
https://central.sonatype.com/artifact/jakarta.servlet/jakarta.servlet-api/5.0.0
https://central.sonatype.com/artifact/jakarta.validation/jakarta.validation-api/3.0.0
https://central.sonatype.com/artifact/jakarta.websocket/jakarta.websocket-api/1.1.2
https://central.sonatype.com/artifact/jakarta.ws.rs/jakarta.ws.rs-api/3.0.0
https://central.sonatype.com/artifact/jakarta.xml.bind/jakarta.xml.bind-api/2.3.3
https://central.sonatype.com/artifact/jakarta.xml.bind/jakarta.xml.bind-api/3.0.0
https://central.sonatype.com/artifact/com.github.jbellis/jamm/0.3.2
https://central.sonatype.com/artifact/com.github.vbmacher/java-cup-runtime/11b-20160615
https://central.sonatype.com/artifact/com.squareup/javapoet/1.8.0
https://central.sonatype.com/artifact/org.javassist/javassist/3.21.0-GA
https://central.sonatype.com/artifact/org.javassist/javassist/3.24.0-GA
https://central.sonatype.com/artifact/org.javassist/javassist/3.28.0-GA
https://central.sonatype.com/artifact/org.javatuples/javatuples/1.2
https://central.sonatype.com/artifact/javax.activation/javax.activation-api/1.2.0
https://central.sonatype.com/artifact/javax.annotation/javax.annotation-api/1.3.2
https://central.sonatype.com/artifact/javax.inject/javax.inject/1
https://central.sonatype.com/artifact/org.glassfish/javax.json/1.0
https://central.sonatype.com/artifact/org.eclipse.jetty.websocket/javax-websocket-client-impl/9.4.46.v20220331
https://central.sonatype.com/artifact/org.eclipse.jetty.websocket/javax-websocket-server-impl/9.4.46.v20220331
https://central.sonatype.com/artifact/javax.xml.bind/jaxb-api/2.3.1
https://central.sonatype.com/artifact/com.sun.xml.bind/jaxb-core/3.0.2
https://central.sonatype.com/artifact/com.sun.xml.bind/jaxb-impl/3.0.2
https://central.sonatype.com/artifact/org.mindrot/jbcrypt/0.4
https://central.sonatype.com/artifact/com.jcabi/jcabi-log/0.14
https://central.sonatype.com/artifact/com.jcabi/jcabi-manifests/1.1
https://central.sonatype.com/artifact/com.github.stephenc.jcip/jcip-annotations/1.0-1
https://central.sonatype.com/artifact/org.slf4j/jcl-over-slf4j/1.7.25
https://central.sonatype.com/artifact/com.beust/jcommander/1.30
https://central.sonatype.com/artifact/org.lionsoul/jcseg-core/2.6.2
https://central.sonatype.com/artifact/org.jctools/jctools-core/2.1.1
https://central.sonatype.com/artifact/org.jctools/jctools-core/3.1.0
https://central.sonatype.com/artifact/org.glassfish.jersey.connectors/jersey-apache-connector/3.0.3
https://central.sonatype.com/artifact/org.glassfish.jersey.core/jersey-client/3.0.3
https://central.sonatype.com/artifact/org.glassfish.jersey.core/jersey-common/3.0.3
https://central.sonatype.com/artifact/org.glassfish.jersey.containers/jersey-container-grizzly2-http/3.0.3
https://central.sonatype.com/artifact/org.glassfish.jersey.containers/jersey-container-grizzly2-servlet/3.0.3
https://central.sonatype.com/artifact/org.glassfish.jersey.containers/jersey-container-servlet/3.0.3
https://central.sonatype.com/artifact/org.glassfish.jersey.containers/jersey-container-servlet-core/3.0.3
https://central.sonatype.com/artifact/org.glassfish.jersey.ext/jersey-entity-filtering/3.0.3
https://central.sonatype.com/artifact/org.glassfish.jersey.inject/jersey-hk2/3.0.3
https://central.sonatype.com/artifact/org.glassfish.jersey.media/jersey-media-jaxb/3.0.3
https://central.sonatype.com/artifact/org.glassfish.jersey.media/jersey-media-json-jackson/3.0.3
https://central.sonatype.com/artifact/org.glassfish.jersey.core/jersey-server/3.0.3
https://central.sonatype.com/artifact/org.glassfish.jersey.test-framework/jersey-test-framework-core/3.0.3
https://central.sonatype.com/artifact/org.glassfish.jersey.test-framework.providers/jersey-test-framework-provider-grizzly2/3.0.3
https://central.sonatype.com/artifact/io.etcd/jetcd-common/0.5.9
https://central.sonatype.com/artifact/io.etcd/jetcd-core/0.5.9
https://central.sonatype.com/artifact/org.eclipse.jetty/jetty-annotations/9.4.46.v20220331
https://central.sonatype.com/artifact/org.eclipse.jetty/jetty-client/9.4.46.v20220331
https://central.sonatype.com/artifact/org.eclipse.jetty/jetty-continuation/9.4.46.v20220331
https://central.sonatype.com/artifact/org.eclipse.jetty/jetty-http/9.4.46.v20220331
https://central.sonatype.com/artifact/org.eclipse.jetty/jetty-io/9.4.46.v20220331
https://central.sonatype.com/artifact/org.eclipse.jetty/jetty-plus/9.4.46.v20220331
https://central.sonatype.com/artifact/org.eclipse.jetty/jetty-security/9.4.46.v20220331
https://central.sonatype.com/artifact/org.eclipse.jetty/jetty-server/9.4.46.v20220331
https://central.sonatype.com/artifact/org.eclipse.jetty/jetty-servlet/9.4.46.v20220331
https://central.sonatype.com/artifact/org.eclipse.jetty/jetty-servlets/9.4.46.v20220331
https://central.sonatype.com/artifact/org.eclipse.jetty/jetty-util/9.4.46.v20220331
https://central.sonatype.com/artifact/org.eclipse.jetty/jetty-util-ajax/9.4.46.v20220331
https://central.sonatype.com/artifact/org.eclipse.jetty/jetty-webapp/9.4.46.v20220331
https://central.sonatype.com/artifact/org.eclipse.jetty/jetty-xml/9.4.46.v20220331
https://central.sonatype.com/artifact/com.github.jnr/jffi/1.2.16
https://central.sonatype.com/artifact/de.jflex/jflex/1.8.2
https://central.sonatype.com/artifact/com.huaban/jieba-analysis/1.0.2
https://central.sonatype.com/artifact/io.jsonwebtoken/jjwt-api/0.11.5
https://central.sonatype.com/artifact/io.jsonwebtoken/jjwt-impl/0.11.5
https://central.sonatype.com/artifact/io.jsonwebtoken/jjwt-jackson/0.11.5
https://central.sonatype.com/artifact/jline/jline/2.14.6
https://central.sonatype.com/artifact/net.java.dev.jna/jna/5.12.1
https://central.sonatype.com/artifact/net.java.dev.jna/jna/5.5.0
https://central.sonatype.com/artifact/net.java.dev.jna/jna/5.7.0
https://central.sonatype.com/artifact/com.github.jnr/jnr-ffi/2.1.7
https://central.sonatype.com/artifact/com.github.jnr/jnr-x86asm/1.0.2
https://central.sonatype.com/artifact/joda-time/joda-time/2.10.8
https://central.sonatype.com/artifact/com.alipay.sofa/jraft-core/1.3.11
https://central.sonatype.com/artifact/com.alipay.sofa/jraft-core/1.3.13
https://central.sonatype.com/artifact/com.alipay.sofa/jraft-core/1.3.9
https://central.sonatype.com/artifact/org.json/json/20210307
https://central.sonatype.com/artifact/org.skyscreamer/jsonassert/1.5.0
https://central.sonatype.com/artifact/com.jayway.jsonpath/json-path/2.5.0
https://central.sonatype.com/artifact/com.googlecode.json-simple/json-simple/1.1
https://central.sonatype.com/artifact/net.minidev/json-smart/2.3
https://central.sonatype.com/artifact/com.google.code.findbugs/jsr305/3.0.1
https://central.sonatype.com/artifact/com.google.code.findbugs/jsr305/3.0.2
https://central.sonatype.com/artifact/org.slf4j/jul-to-slf4j/1.7.36
https://central.sonatype.com/artifact/junit/junit/4.13.1
https://central.sonatype.com/artifact/junit/junit/4.13.2
https://central.sonatype.com/artifact/org.junit.jupiter/junit-jupiter/5.7.2
https://central.sonatype.com/artifact/org.junit.jupiter/junit-jupiter-api/5.7.2
https://central.sonatype.com/artifact/org.junit.jupiter/junit-jupiter-engine/5.7.2
https://central.sonatype.com/artifact/org.junit.jupiter/junit-jupiter-params/5.7.2
https://central.sonatype.com/artifact/org.junit.platform/junit-platform-commons/1.7.2
https://central.sonatype.com/artifact/org.junit.platform/junit-platform-engine/1.7.2
https://central.sonatype.com/artifact/org.gridkit.lab/jvm-attach-api/1.5
https://central.sonatype.com/artifact/org.apache.kerby/kerb-admin/2.0.0
https://central.sonatype.com/artifact/org.apache.kerby/kerb-client/2.0.0
https://central.sonatype.com/artifact/org.apache.kerby/kerb-common/2.0.0
https://central.sonatype.com/artifact/org.apache.kerby/kerb-core/2.0.0
https://central.sonatype.com/artifact/org.apache.kerby/kerb-crypto/2.0.0
https://central.sonatype.com/artifact/org.apache.kerby/kerb-identity/2.0.0
https://central.sonatype.com/artifact/org.apache.kerby/kerb-server/2.0.0
https://central.sonatype.com/artifact/org.apache.kerby/kerb-simplekdc/2.0.0
https://central.sonatype.com/artifact/org.apache.kerby/kerb-util/2.0.0
https://central.sonatype.com/artifact/org.apache.kerby/kerby-asn1/2.0.0
https://central.sonatype.com/artifact/org.apache.kerby/kerby-config/2.0.0
https://central.sonatype.com/artifact/org.apache.kerby/kerby-pkix/2.0.0
https://central.sonatype.com/artifact/org.apache.kerby/kerby-util/2.0.0
https://central.sonatype.com/artifact/org.apache.kerby/kerby-xdr/2.0.0
https://central.sonatype.com/artifact/org.jetbrains.kotlin/kotlin-stdlib/1.6.20
https://central.sonatype.com/artifact/org.jetbrains.kotlin/kotlin-stdlib-common/1.5.31
https://central.sonatype.com/artifact/org.jetbrains.kotlin/kotlin-stdlib-jdk7/1.6.10
https://central.sonatype.com/artifact/org.jetbrains.kotlin/kotlin-stdlib-jdk8/1.6.10
https://central.sonatype.com/artifact/org.latencyutils/LatencyUtils/2.0.3
https://central.sonatype.com/artifact/com.google.guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava
https://central.sonatype.com/artifact/org.apache.logging.log4j/log4j-api/2.15.0
https://central.sonatype.com/artifact/org.apache.logging.log4j/log4j-api/2.17.0
https://central.sonatype.com/artifact/org.apache.logging.log4j/log4j-api/2.17.1
https://central.sonatype.com/artifact/org.apache.logging.log4j/log4j-api/2.17.2
https://central.sonatype.com/artifact/org.apache.logging.log4j/log4j-api/2.18.0
https://central.sonatype.com/artifact/org.apache.logging.log4j/log4j-core/2.15.0
https://central.sonatype.com/artifact/org.apache.logging.log4j/log4j-core/2.17.0
https://central.sonatype.com/artifact/org.apache.logging.log4j/log4j-core/2.17.1
https://central.sonatype.com/artifact/org.apache.logging.log4j/log4j-core/2.17.2
https://central.sonatype.com/artifact/org.apache.logging.log4j/log4j-core/2.18.0
https://central.sonatype.com/artifact/org.apache.logging.log4j/log4j-jul/2.17.2
https://central.sonatype.com/artifact/org.apache.logging.log4j/log4j-slf4j-impl/2.15.0
https://central.sonatype.com/artifact/org.apache.logging.log4j/log4j-slf4j-impl/2.17.0
https://central.sonatype.com/artifact/org.apache.logging.log4j/log4j-slf4j-impl/2.17.1
https://central.sonatype.com/artifact/org.apache.logging.log4j/log4j-slf4j-impl/2.18.0
https://central.sonatype.com/artifact/com.squareup.okhttp3/logging-interceptor/4.10.0
https://central.sonatype.com/artifact/org.projectlombok/lombok/1.18.24
https://central.sonatype.com/artifact/com.alipay.sofa.lookout/lookout-api/1.4.1
https://central.sonatype.com/artifact/org.apache.lucene/lucene-analyzers-common/8.11.2
https://central.sonatype.com/artifact/org.apache.lucene/lucene-analyzers-smartcn/8.11.2
https://central.sonatype.com/artifact/org.apache.lucene/lucene-core/8.11.2
https://central.sonatype.com/artifact/org.apache.lucene/lucene-queries/4.7.2
https://central.sonatype.com/artifact/org.apache.lucene/lucene-queryparser/4.7.2
https://central.sonatype.com/artifact/org.apache.lucene/lucene-sandbox/4.7.2
https://central.sonatype.com/artifact/org.lz4/lz4-java/1.4.0
https://central.sonatype.com/artifact/org.lz4/lz4-java/1.8.0
https://central.sonatype.com/artifact/io.dropwizard.metrics/metrics-annotation/4.2.4
https://central.sonatype.com/artifact/com.codahale.metrics/metrics-core/3.0.2
https://central.sonatype.com/artifact/io.dropwizard.metrics/metrics-core/3.1.5
https://central.sonatype.com/artifact/io.dropwizard.metrics/metrics-core/4.0.2
https://central.sonatype.com/artifact/io.dropwizard.metrics/metrics-core/4.2.4
https://central.sonatype.com/artifact/io.dropwizard.metrics/metrics-jersey3/4.2.4
https://central.sonatype.com/artifact/io.dropwizard.metrics/metrics-jvm/3.1.5
https://central.sonatype.com/artifact/io.dropwizard.metrics/metrics-logback/3.1.5
https://central.sonatype.com/artifact/io.micrometer/micrometer-core/1.7.12
https://central.sonatype.com/artifact/io.micrometer/micrometer-registry-prometheus/1.7.12
https://central.sonatype.com/artifact/com.chenlb.mmseg4j/mmseg4j-core/1.10.0
https://central.sonatype.com/artifact/org.mockito/mockito-core/3.3.3
https://central.sonatype.com/artifact/org.mockito/mockito-core/3.9.0
https://central.sonatype.com/artifact/org.mockito/mockito-junit-jupiter/3.9.0
https://central.sonatype.com/artifact/org.gridkit.jvmtool/mxdump/0.14
https://central.sonatype.com/artifact/io.netty/netty-all/4.1.42.Final
https://central.sonatype.com/artifact/io.netty/netty-all/4.1.44.Final
https://central.sonatype.com/artifact/io.netty/netty-all/4.1.61.Final
https://central.sonatype.com/artifact/io.netty/netty-buffer/4.1.52.Final
https://central.sonatype.com/artifact/io.netty/netty-buffer/4.1.72.Final
https://central.sonatype.com/artifact/io.netty/netty-codec/4.1.52.Final
https://central.sonatype.com/artifact/io.netty/netty-codec/4.1.72.Final
https://central.sonatype.com/artifact/io.netty/netty-codec-http2/4.1.52.Final
https://central.sonatype.com/artifact/io.netty/netty-codec-http2/4.1.72.Final
https://central.sonatype.com/artifact/io.netty/netty-codec-http/4.1.52.Final
https://central.sonatype.com/artifact/io.netty/netty-codec-http/4.1.72.Final
https://central.sonatype.com/artifact/io.netty/netty-codec-socks/4.1.52.Final
https://central.sonatype.com/artifact/io.netty/netty-codec-socks/4.1.72.Final
https://central.sonatype.com/artifact/io.netty/netty-common/4.1.52.Final
https://central.sonatype.com/artifact/io.netty/netty-common/4.1.72.Final
https://central.sonatype.com/artifact/io.netty/netty-handler/4.1.52.Final
https://central.sonatype.com/artifact/io.netty/netty-handler/4.1.72.Final
https://central.sonatype.com/artifact/io.netty/netty-handler-proxy/4.1.52.Final
https://central.sonatype.com/artifact/io.netty/netty-handler-proxy/4.1.72.Final
https://central.sonatype.com/artifact/io.netty/netty-resolver/4.1.52.Final
https://central.sonatype.com/artifact/io.netty/netty-resolver/4.1.72.Final
https://central.sonatype.com/artifact/io.netty/netty-tcnative-boringssl-static/2.0.25.Final
https://central.sonatype.com/artifact/io.netty/netty-tcnative-boringssl-static/2.0.36.Final
https://central.sonatype.com/artifact/io.netty/netty-tcnative-classes/2.0.46.Final
https://central.sonatype.com/artifact/io.netty/netty-transport/4.1.52.Final
https://central.sonatype.com/artifact/io.netty/netty-transport/4.1.72.Final
https://central.sonatype.com/artifact/io.netty/netty-transport-native-unix-common/4.1.72.Final
https://central.sonatype.com/artifact/com.nimbusds/nimbus-jose-jwt/4.41.2
https://central.sonatype.com/artifact/org.nlpcn/nlp-lang/1.7.7
https://central.sonatype.com/artifact/org.objenesis/objenesis/2.6
https://central.sonatype.com/artifact/org.objenesis/objenesis/3.2
https://central.sonatype.com/artifact/org.caffinitas.ohc/ohc-core/0.7.4
https://central.sonatype.com/artifact/org.caffinitas.ohc/ohc-core-j8/0.5.1
https://central.sonatype.com/artifact/com.squareup.okhttp3/okhttp/4.10.0
https://central.sonatype.com/artifact/com.squareup.okio/okio-jvm/3.0.0
https://central.sonatype.com/artifact/org.opentest4j/opentest4j/1.2.0
https://central.sonatype.com/artifact/io.opentracing/opentracing-api/0.22.0
https://central.sonatype.com/artifact/io.opentracing/opentracing-mock/0.22.0
https://central.sonatype.com/artifact/io.opentracing/opentracing-noop/0.22.0
https://central.sonatype.com/artifact/io.opentracing/opentracing-util/0.22.0
https://central.sonatype.com/artifact/org.glassfish.hk2/osgi-resource-locator/1.0.3
https://central.sonatype.com/artifact/org.parboiled/parboiled-core/1.2.0
https://central.sonatype.com/artifact/org.parboiled/parboiled-scala_2.12/1.2.0
https://central.sonatype.com/artifact/org.opencypher/parser-9.0/9.0.20190305
https://central.sonatype.com/artifact/io.perfmark/perfmark-api/0.19.0
https://central.sonatype.com/artifact/io.perfmark/perfmark-api/0.23.0
https://central.sonatype.com/artifact/io.perfmark/perfmark-api/0.25.0
https://central.sonatype.com/artifact/info.picocli/picocli/4.3.2
https://central.sonatype.com/artifact/org.postgresql/postgresql/42.4.3
https://central.sonatype.com/artifact/org.powermock/powermock-api-mockito2/2.0.0-RC.3
https://central.sonatype.com/artifact/org.powermock/powermock-api-support/2.0.0-RC.3
https://central.sonatype.com/artifact/org.powermock/powermock-classloading-base/2.0.0-RC.3
https://central.sonatype.com/artifact/org.powermock/powermock-classloading-xstream/2.0.0-RC.3
https://central.sonatype.com/artifact/org.powermock/powermock-core/2.0.0-RC.3
https://central.sonatype.com/artifact/org.powermock/powermock-module-junit4/2.0.0-RC.3
https://central.sonatype.com/artifact/org.powermock/powermock-module-junit4-common/2.0.0-RC.3
https://central.sonatype.com/artifact/org.powermock/powermock-module-junit4-rule/2.0.0-RC.3
https://central.sonatype.com/artifact/org.powermock/powermock-reflect/2.0.0-RC.3
https://central.sonatype.com/artifact/com.google.protobuf/protobuf-java/3.11.0
https://central.sonatype.com/artifact/com.google.protobuf/protobuf-java/3.17.2
https://central.sonatype.com/artifact/com.google.protobuf/protobuf-java/3.21.7
https://central.sonatype.com/artifact/com.google.protobuf/protobuf-java/3.5.1
https://central.sonatype.com/artifact/com.google.protobuf/protobuf-java-util/3.17.2
https://central.sonatype.com/artifact/com.google.api.grpc/proto-google-common-protos/1.17.0
https://central.sonatype.com/artifact/com.google.api.grpc/proto-google-common-protos/2.0.1
https://central.sonatype.com/artifact/io.protostuff/protostuff-api/1.6.0
https://central.sonatype.com/artifact/io.protostuff/protostuff-collectionschema/1.6.0
https://central.sonatype.com/artifact/io.protostuff/protostuff-core/1.6.0
https://central.sonatype.com/artifact/io.protostuff/protostuff-runtime/1.6.0
https://central.sonatype.com/artifact/org.psjava/psjava/0.1.19
https://central.sonatype.com/artifact/com.addthis.metrics/reporter-config3/3.0.3
https://central.sonatype.com/artifact/com.addthis.metrics/reporter-config-base/3.0.3
https://central.sonatype.com/artifact/org.opencypher/rewriting-9.0/9.0.20190305
https://central.sonatype.com/artifact/org.rocksdb/rocksdbjni/6.29.5
https://central.sonatype.com/artifact/org.rocksdb/rocksdbjni/7.2.2
https://central.sonatype.com/artifact/org.rocksdb/rocksdbjni/7.7.3
https://central.sonatype.com/artifact/org.scala-lang.modules/scala-java8-compat_2.12/0.8.0
https://central.sonatype.com/artifact/org.scala-lang/scala-library/2.12.7
https://central.sonatype.com/artifact/org.scala-lang/scala-reflect/2.12.7
https://central.sonatype.com/artifact/org.fusesource/sigar/1.6.4
https://central.sonatype.com/artifact/io.prometheus/simpleclient/0.10.0
https://central.sonatype.com/artifact/io.prometheus/simpleclient_common/0.10.0
https://central.sonatype.com/artifact/org.gridkit.jvmtool/sjk-agent/0.22
https://central.sonatype.com/artifact/org.gridkit.jvmtool/sjk-cli/0.14
https://central.sonatype.com/artifact/org.gridkit.jvmtool/sjk-cli/0.22
https://central.sonatype.com/artifact/org.gridkit.jvmtool/sjk-core/0.14
https://central.sonatype.com/artifact/org.gridkit.jvmtool/sjk-core/0.22
https://central.sonatype.com/artifact/org.gridkit.jvmtool/sjk-hflame/0.22
https://central.sonatype.com/artifact/org.perfkit.sjk.parsers/sjk-jfr5/0.5
https://central.sonatype.com/artifact/org.perfkit.sjk.parsers/sjk-jfr6/0.7
https://central.sonatype.com/artifact/org.perfkit.sjk.parsers/sjk-jfr-standalone/0.7
https://central.sonatype.com/artifact/org.gridkit.jvmtool/sjk-json/0.14
https://central.sonatype.com/artifact/org.gridkit.jvmtool/sjk-json/0.22
https://central.sonatype.com/artifact/org.perfkit.sjk.parsers/sjk-nps/0.9
https://central.sonatype.com/artifact/org.gridkit.jvmtool/sjk-stacktrace/0.14
https://central.sonatype.com/artifact/org.gridkit.jvmtool/sjk-stacktrace/0.22
https://central.sonatype.com/artifact/org.slf4j/slf4j-api/1.7.21
https://central.sonatype.com/artifact/org.slf4j/slf4j-api/1.7.25
https://central.sonatype.com/artifact/org.slf4j/slf4j-api/1.7.32
https://central.sonatype.com/artifact/org.slf4j/slf4j-api/2.0.9
https://central.sonatype.com/artifact/org.yaml/snakeyaml/1.18
https://central.sonatype.com/artifact/org.yaml/snakeyaml/1.26
https://central.sonatype.com/artifact/org.yaml/snakeyaml/1.27
https://central.sonatype.com/artifact/org.yaml/snakeyaml/1.28
https://central.sonatype.com/artifact/org.yaml/snakeyaml/2.2
https://central.sonatype.com/artifact/org.xerial.snappy/snappy-java/1.1.2.6
https://central.sonatype.com/artifact/com.github.rholder/snowball-stemmer/1.3.0.581.1
https://central.sonatype.com/artifact/com.alipay.sofa.common/sofa-common-tools/1.0.12
https://central.sonatype.com/artifact/com.alipay.sofa/sofa-rpc-all/5.7.6
https://central.sonatype.com/artifact/com.lihaoyi/sourcecode_2.12/0.1.4
https://central.sonatype.com/artifact/org.springframework/spring-aop/5.3.20
https://central.sonatype.com/artifact/org.springframework/spring-beans/5.3.20
https://central.sonatype.com/artifact/org.springframework.boot/spring-boot/2.5.14
https://central.sonatype.com/artifact/org.springframework.boot/spring-boot-actuator/2.5.14
https://central.sonatype.com/artifact/org.springframework.boot/spring-boot-actuator-autoconfigure/2.5.14
https://central.sonatype.com/artifact/org.springframework.boot/spring-boot-autoconfigure/2.5.0
https://central.sonatype.com/artifact/org.springframework.boot/spring-boot-autoconfigure/2.5.14
https://central.sonatype.com/artifact/org.springframework.boot/spring-boot-starter/2.5.0
https://central.sonatype.com/artifact/org.springframework.boot/spring-boot-starter/2.5.14
https://central.sonatype.com/artifact/org.springframework.boot/spring-boot-starter-actuator/2.5.14
https://central.sonatype.com/artifact/org.springframework.boot/spring-boot-starter-jetty/2.5.14
https://central.sonatype.com/artifact/org.springframework.boot/spring-boot-starter-json/2.5.14
https://central.sonatype.com/artifact/org.springframework.boot/spring-boot-starter-log4j2/2.5.14
https://central.sonatype.com/artifact/org.springframework.boot/spring-boot-starter-test/2.5.14
https://central.sonatype.com/artifact/org.springframework.boot/spring-boot-starter-web/2.5.14
https://central.sonatype.com/artifact/org.springframework.boot/spring-boot-test/2.5.14
https://central.sonatype.com/artifact/org.springframework.boot/spring-boot-test-autoconfigure/2.5.14
https://central.sonatype.com/artifact/org.springframework/spring-context/5.3.20
https://central.sonatype.com/artifact/org.springframework/spring-context-support/5.3.20
https://central.sonatype.com/artifact/org.springframework/spring-core/5.3.20
https://central.sonatype.com/artifact/org.springframework/spring-expression/5.3.20
https://central.sonatype.com/artifact/org.springframework/spring-jcl/5.3.20
https://central.sonatype.com/artifact/org.springframework/spring-web/5.3.20
https://central.sonatype.com/artifact/org.springframework/spring-webmvc/5.3.20
https://central.sonatype.com/artifact/org.antlr/ST4/4.0.8
https://central.sonatype.com/artifact/com.clearspring.analytics/stream/2.5.2
https://central.sonatype.com/artifact/io.swagger/swagger-annotations/1.5.18
https://central.sonatype.com/artifact/io.swagger.core.v3/swagger-annotations-jakarta/2.2.18
https://central.sonatype.com/artifact/io.swagger/swagger-core/1.5.18
https://central.sonatype.com/artifact/io.swagger.core.v3/swagger-core-jakarta/2.2.18
https://central.sonatype.com/artifact/io.swagger.core.v3/swagger-integration-jakarta/2.2.18
https://central.sonatype.com/artifact/io.swagger.core.v3/swagger-jaxrs2-jakarta/2.2.18
https://central.sonatype.com/artifact/io.swagger/swagger-models/1.5.18
https://central.sonatype.com/artifact/io.swagger.core.v3/swagger-models-jakarta/2.2.18
https://central.sonatype.com/artifact/org.apache.tinkerpop/tinkergraph-gremlin/3.5.1
https://central.sonatype.com/artifact/org.apache.kerby/token-provider/2.0.0
https://central.sonatype.com/artifact/org.apache.tomcat.embed/tomcat-embed-el/9.0.63
https://central.sonatype.com/artifact/com.alipay.sofa/tracer-core/3.0.8
https://central.sonatype.com/artifact/org.opencypher.gremlin/translation/1.0.4
https://central.sonatype.com/artifact/org.opencypher/util-9.0/9.0.20190305
https://central.sonatype.com/artifact/javax.validation/validation-api/1.1.0.Final
https://central.sonatype.com/artifact/org.eclipse.jetty.websocket/websocket-api/9.4.46.v20220331
https://central.sonatype.com/artifact/org.eclipse.jetty.websocket/websocket-client/9.4.46.v20220331
https://central.sonatype.com/artifact/org.eclipse.jetty.websocket/websocket-common/9.4.46.v20220331
https://central.sonatype.com/artifact/org.eclipse.jetty.websocket/websocket-server/9.4.46.v20220331
https://central.sonatype.com/artifact/org.eclipse.jetty.websocket/websocket-servlet/9.4.46.v20220331
https://central.sonatype.com/artifact/xmlpull/xmlpull/1.1.3.1
https://central.sonatype.com/artifact/org.xmlunit/xmlunit-core/2.8.4
https://central.sonatype.com/artifact/xpp3/xpp3_min/1.1.4c
https://central.sonatype.com/artifact/com.thoughtworks.xstream/xstream/1.4.10
https://central.sonatype.com/artifact/com.github.luben/zstd-jni/1.5.5-1
https://central.sonatype.com/artifact/org.zeroturnaround/zt-zip/1.14

@VGalaxies
Copy link
Contributor Author

close by #2687

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
apache dependencies Incompatible dependencies of package help wanted Extra attention is needed
Projects
None yet
Development

No branches or pull requests

2 participants