From b637da5b99ab38332f4cb2d3f35a1b3ae43fadf0 Mon Sep 17 00:00:00 2001 From: Arthur Ming Date: Mon, 12 Feb 2024 08:46:35 +0800 Subject: [PATCH] build: use rules_spring bazel rule to build/run spring boot projects --- BUILD.bazel | 24 +- README.md | 23 + WORKSPACE | 24 +- maven_install.json | 4366 ++++++++++++++++++++++++++++++++++++++++++++ 4 files changed, 4431 insertions(+), 6 deletions(-) create mode 100755 maven_install.json diff --git a/BUILD.bazel b/BUILD.bazel index 9411208..fabc0fd 100644 --- a/BUILD.bazel +++ b/BUILD.bazel @@ -1,9 +1,10 @@ load("@rules_java//java:defs.bzl", "java_binary", "java_library", "java_test") +load("@rules_spring//springboot:springboot.bzl", "springboot") package(default_visibility = ["//visibility:public"]) java_library( - name = "java-maven-lib", + name = "jobs-lib", srcs = glob([ "src/main/java/org/daming/jobs/*.java", "src/main/java/org/daming/jobs/api/advice/*.java", @@ -36,11 +37,14 @@ java_library( "@maven//:org_springframework_boot_spring_boot_devtools", "@maven//:org_springframework_boot_spring_boot", + "@maven//:org_springframework_boot_spring_boot_loader", + "@maven//:org_springframework_boot_spring_boot_loader_tools", "@maven//:org_springframework_boot_spring_boot_autoconfigure", "@maven//:org_springframework_spring_aop", "@maven//:org_springframework_spring_beans", "@maven//:org_springframework_spring_core", "@maven//:org_springframework_spring_context", + "@maven//:org_springframework_spring_expression", "@maven//:org_springframework_spring_web", # "@maven//:org_apache_shiro_shiro_spring_boot_starter", @@ -51,10 +55,9 @@ java_library( "@maven//:org_slf4j_slf4j_api", "@maven//:org_quartz_scheduler_quartz", - "@maven//:org_aspectj_aspectjweaver", - "@maven//:org_apache_tomcat_embed_tomcat_embed_core", + "@maven//:jakarta_servlet_jakarta_servlet_api", "@maven//:jakarta_annotation_jakarta_annotation_api", "@maven//:jakarta_xml_bind_jakarta_xml_bind_api", "@maven//:com_fasterxml_jackson_core_jackson_core", @@ -65,18 +68,29 @@ java_library( java_binary( name = "jobs", main_class = "org.daming.jobs.JobsApplication", - runtime_deps = [":java-maven-lib"], + runtime_deps = [":jobs-lib"], deploy_manifest_lines = { "Main-Class": "org.daming.jobs.JobsApplication", }, ) +springboot( + name = "springboot", + # specify the main class + boot_app_class = "org.daming.jobs.JobsApplication", + # refrence the library + java_library = ":jobs-lib", + # https://github.com/salesforce/rules_spring/issues/177 + boot_launcher_class = 'org.springframework.boot.loader.launch.JarLauncher', +) + + # java_test( # name = "tests", # srcs = glob(["src/test/java/com/example/myproject/*.java"]), # test_class = "com.example.myproject.TestApp", # deps = [ -# ":java-maven-lib", +# ":jobs-lib", # "@maven//:com_google_guava_guava", # "@maven//:junit_junit", # ], diff --git a/README.md b/README.md index b9ed59b..8fa5532 100644 --- a/README.md +++ b/README.md @@ -81,6 +81,29 @@ yarn start open the [browser](http://localhost:3000/) ![login](https://raw.githubusercontent.com/damingerdai/jobs/master/screenshots/login.png) +## bazel + +new manve install json + +``` +bazel run @maven//:pin +``` + +update maven install json + +``` +bazel run @unpinned_maven//:pin +``` + + +build and run + +``` +bazel build //:springboot + +bazel run //:springboot +``` + #### Swagger UI `jobs` support [swagger ui](http://127.0.0.1:8443/swagger-ui/index.html). diff --git a/WORKSPACE b/WORKSPACE index 09bf57a..a821fb0 100644 --- a/WORKSPACE +++ b/WORKSPACE @@ -14,6 +14,15 @@ http_archive( ) +http_archive( + name = "rules_spring", + sha256 = "7bb891ccb2f53ca188a769b3a3777be1c38348e18091afea05320f3003b3e886", + urls = [ + "https://github.com/salesforce/rules_spring/releases/download/2.3.1/rules-spring-2.3.1.zip", + "https://mirror.ghproxy.com/https://github.com/salesforce/rules_spring/releases/download/2.3.1/rules-spring-2.3.1.zip", + ], +) + load("@rules_jvm_external//:repositories.bzl", "rules_jvm_external_deps") rules_jvm_external_deps() @@ -54,22 +63,31 @@ shiros = [ artifact = "shiro-web", version = "1.13.0", classifier = "jakarta", - ), ] maven_install( artifacts = [ + "org.springframework.boot:spring-boot:3.2.2", + "org.springframework.boot:spring-boot-starter:3.2.2", + "org.springframework.boot:spring-boot-loader-tools:3.2.2", + "org.springframework.boot:spring-boot-loader:3.2.2", + "org.springframework.boot:spring-boot-starter:3.2.2", "org.springframework.boot:spring-boot-starter-web:3.2.2", "org.springframework.boot:spring-boot-starter-jdbc:3.2.2", "org.springframework.boot:spring-boot-starter-quartz:3.2.2", "org.springframework.boot:spring-boot-starter-aop:3.2.2", + #"org.springframework.boot:spring-boot-configuration-processor:3.2.2", + "io.springfox:springfox-boot-starter:3.0.0", "com.auth0:java-jwt:3.19.4", "org.postgresql:postgresql:42.4.0", + "jakarta.servlet:jakarta.servlet-api:6.0.0", + 'javax.annotation:javax.annotation-api:1.3.2', + "org.springframework.boot:spring-boot-devtools:3.2.2", "org.springframework.boot:spring-boot-starter-test:3.2.2" @@ -82,7 +100,11 @@ maven_install( "https://maven.google.com", "https://repo1.maven.org/maven2", ], + maven_install_json = "//:maven_install.json", # override_targets = { # "javax.servlet:javax.servlet-api": "jakarta.servlet:jakarta.servlet-api", # }, ) + +load("@maven//:defs.bzl", "pinned_maven_install") +pinned_maven_install() diff --git a/maven_install.json b/maven_install.json new file mode 100755 index 0000000..59d6352 --- /dev/null +++ b/maven_install.json @@ -0,0 +1,4366 @@ +{ + "__AUTOGENERATED_FILE_DO_NOT_MODIFY_THIS_FILE_MANUALLY": "THERE_IS_NO_DATA_ONLY_ZUUL", + "__INPUT_ARTIFACTS_HASH": -413228257, + "__RESOLVED_ARTIFACTS_HASH": 126616096, + "artifacts": { + "ch.qos.logback:logback-classic": { + "shasums": { + "jar": "8e832f7263ca606ae36dabb2d8b24c2f43d82cf634e81dad9d1640fa6ee3c596", + "sources": "b3e670ccb6a8f2cfc6445f54c6fbfbc62bdd3912d147498d81e425d578dfb468" + }, + "version": "1.4.14" + }, + "ch.qos.logback:logback-core": { + "shasums": { + "jar": "f8c2f05f42530b1852739507c1792f0080167850ed8f396444c6913d6617a293", + "sources": "760175e067af94b6d43b5d1558e154d60766de320618f78ff8cb8f956a7da92f" + }, + "version": "1.4.14" + }, + "com.auth0:java-jwt": { + "shasums": { + "jar": "0a3a682308d27aa710441860915d40e7c641720b5bed036bb3eaf9683458288e", + "sources": "f9a10219f1b297b07e29535d8a2d3f8137b513f01545a014693e42287343b980" + }, + "version": "3.19.4" + }, + "com.fasterxml.jackson.core:jackson-annotations": { + "shasums": { + "jar": "aae865c3d88256d61b11523cb1e88bd48d5b9ad5855fa1fc859504fd2204708a", + "sources": "9b3f2b6791a3e775cec9b9be575add9406b8423d8b49662b78c1017f22952528" + }, + "version": "2.15.3" + }, + "com.fasterxml.jackson.core:jackson-core": { + "shasums": { + "jar": "51fab7aad51ed588482edc507fd542747936c5094d1ab76ed21ddb63b96b610d", + "sources": "31cb17527c55716c59fb0a10736b1b29306b4db0de8476e1ab6e54f85fe4ff55" + }, + "version": "2.15.3" + }, + "com.fasterxml.jackson.core:jackson-databind": { + "shasums": { + "jar": "c3c53333a2172a80678bda1803e39cff45bec6ae3e9c7d4f44a81ec4e2ab18dc", + "sources": "d692cdf070e03c11e95306da08ecdf312aac559f158019a5bfcdc6e0798d5456" + }, + "version": "2.15.3" + }, + "com.fasterxml.jackson.datatype:jackson-datatype-jdk8": { + "shasums": { + "jar": "29995d3677f72dde74bf32bbf268b96beb952492b742d93f4c70af6c44b2156e", + "sources": "55bd812e461fbcdfae92fbcdacb38afee85669b26ed67ac95edd922cce098d70" + }, + "version": "2.15.3" + }, + "com.fasterxml.jackson.datatype:jackson-datatype-jsr310": { + "shasums": { + "jar": "bea1d78009ebc4e5d54918a3f7aec5da9fbd09f662c191a217ffcf37e8527c5e", + "sources": "cc29cdc2d5261374f435a25402cc54d66717ec890b3944e184e0be2f296229bc" + }, + "version": "2.15.3" + }, + "com.fasterxml.jackson.module:jackson-module-parameter-names": { + "shasums": { + "jar": "baf1a3156a23cb407e05374161a07ed8560f78a7ae249955de04a9a2fa2d0f2b", + "sources": "9c63d4b5ec109ce694fccef4ef5d1d3db57fc5bfc224b31d042c8938cdba58c4" + }, + "version": "2.15.3" + }, + "com.fasterxml:classmate": { + "shasums": { + "jar": "aab4de3006808c09d25dd4ff4a3611cfb63c95463cfd99e73d2e1680d229a33b", + "sources": "6466bab50813b0ce8e908378e53e8e351d647d79308b667cc1bb23a1b7e01093" + }, + "version": "1.5.1" + }, + "com.jayway.jsonpath:json-path": { + "shasums": { + "jar": "9601707e95cd79fb98570a01ea8cfb857b5cde948744d6e0edf733c11002c95b", + "sources": "ce1d02241b445abf7f4c067b94d77c917fa06fbcbb048519b932a2197a2cc3fd" + }, + "version": "2.8.0" + }, + "com.mchange:c3p0": { + "shasums": { + "jar": "60cf2906cd6ad6771f514a3e848b74b3e3da99c1806f2a63c38e2dd8da5ef11f", + "sources": "32fe9ffebcaccc80a6b0f9ca7e3ba3a9402f957b663fa50ad7fef3c306b967b4" + }, + "version": "0.9.5.4" + }, + "com.mchange:mchange-commons-java": { + "shasums": { + "jar": "2b8fce65e95a3e968d5ab3507e2833f43df3daee0635ee51c7ce33343bb3a21c", + "sources": "f23eed91165c5b33c801a80c066abf1430aff1f2dceb5c9bf5db434775962325" + }, + "version": "0.2.15" + }, + "com.vaadin.external.google:android-json": { + "shasums": { + "jar": "dfb7bae2f404cfe0b72b4d23944698cb716b7665171812a0a4d0f5926c0fac79", + "sources": "54c781eea645c450cbbc4a5a1b5a474745465452cec1354cb567b781ea6622c3" + }, + "version": "0.0.20131108.vaadin1" + }, + "com.zaxxer:HikariCP": { + "shasums": { + "jar": "26d492397e6775b4296737a8919bf04047afe5827fdd2c08b4557595436b3a2b", + "sources": "e1253974541ff65b33fa5af3eebd929f4f2d4aacb9b5b74030ff8a04867eac87" + }, + "version": "5.0.1" + }, + "com.zaxxer:HikariCP-java7": { + "shasums": { + "jar": "ed0e2628a7aecbb7ec676041f45c709beb3dcfaa4d9fcba584abdf398a5ecbfd", + "sources": "adb858662db5ef8bc78a703aafbc25e9a0c05f96aace67ba4c5c71de4527b661" + }, + "version": "2.4.13" + }, + "commons-beanutils:commons-beanutils": { + "shasums": { + "jar": "7d938c81789028045c08c065e94be75fc280527620d5bd62b519d5838532368a", + "sources": "132c9cee7ad5045766b76e17cbf23293c873d55f041fabf0e2c3d2168efce696" + }, + "version": "1.9.4" + }, + "commons-collections:commons-collections": { + "shasums": { + "jar": "eeeae917917144a68a741d4c0dff66aa5c5c5fd85593ff217bced3fc8ca783b8", + "sources": "a5b5ee16a02edadf7fe637f250217c19878bc6134f15eb55635c48996f6fed1d" + }, + "version": "3.2.2" + }, + "io.github.classgraph:classgraph": { + "shasums": { + "jar": "54d1fb342ed49ea606dfa647879c893eeac61b05d0cdf3207ed9a7591d93335b", + "sources": "f8620ec5b2e69eb38c0e5b95bd9b5ebd8cceb7da0947458fc657f00a3fd4eee3" + }, + "version": "4.8.83" + }, + "io.micrometer:micrometer-commons": { + "shasums": { + "jar": "feea1eb8302809b7a2d142de1d0de67ef329e02d01c7e5c680a76d7fc3e9309b", + "sources": "7d2eda3c94eee920f54d9b8a209e87012c7bd7db587c81dc2b09c4f947eed2d4" + }, + "version": "1.12.2" + }, + "io.micrometer:micrometer-observation": { + "shasums": { + "jar": "1b7765023228e62570b68f69b2e4b3b3bcc390832c71f50726ee336b34f96941", + "sources": "7c383ec0008af2c6d76b8648c1f6c0e4462385cbe817ba0a339c3aaf562b67c8" + }, + "version": "1.12.2" + }, + "io.springfox:springfox-bean-validators": { + "shasums": { + "jar": "571e916333facc10bdd04496fee1063872f08c3a2c0d56741dccf7d357a66b22", + "sources": "6d4f776e9071c997fa30691ff06313928dd8b2c5b1adc4a4992368028cc6f1f7" + }, + "version": "3.0.0" + }, + "io.springfox:springfox-boot-starter": { + "shasums": { + "jar": "f0a3aaa526e6c6d8ef83ca7fedf716b8bdebee7b3276310e55c344a972721924", + "sources": "0a6bcaa5ccc0ad103ae1297f45a635f2b9f1aba57e9cf27daab46caeabf36ebb" + }, + "version": "3.0.0" + }, + "io.springfox:springfox-core": { + "shasums": { + "jar": "284c2422bec76129550e63d911adf73813cba0c4a60dd7b66efb23b99969df3f", + "sources": "897a061f79c0550dbb76ac7c5e541e623ac6f326651cd4aa8890639d70d02f73" + }, + "version": "3.0.0" + }, + "io.springfox:springfox-data-rest": { + "shasums": { + "jar": "d0ef8f14fba799493d99f21ff13e265d00a069268614dd985d03b4b465660bb3", + "sources": "c7b279d605a937b79952735249e39347dbdd10b9a0ec4e08807082aa498fbb45" + }, + "version": "3.0.0" + }, + "io.springfox:springfox-oas": { + "shasums": { + "jar": "917a274fec28497b6cbc100f1166eb542fa8d760dcf2e7089678c5ceef68fa49", + "sources": "9a3ed8c7662ec1c313b0a5fd2708193acbc72961294411690bf8d3a2e0263b15" + }, + "version": "3.0.0" + }, + "io.springfox:springfox-schema": { + "shasums": { + "jar": "8ec39395e11faf454c084b5ed5ddea692b9705860b0b9e6720b7b958fb9fb6a6", + "sources": "3a5e482bc580c298638c4c8e7aa3932469b5ff215705c7b5eb614fa5277fe329" + }, + "version": "3.0.0" + }, + "io.springfox:springfox-spi": { + "shasums": { + "jar": "0bc4e5186f423a69096315660fc7134b79c90b87e3195d415cc01227c39d7066", + "sources": "62a98636a214d4866c6cf74321f8152b653cf3c198c675f08242e1da95ea1ed9" + }, + "version": "3.0.0" + }, + "io.springfox:springfox-spring-web": { + "shasums": { + "jar": "48e2759084518989cda935e0b2f99c1e6fa6d70f037996454bc5cd4b9074d671", + "sources": "8606cc7c484d2f0d26e513b577fec6d3ea57daa6099305ddbb4ea8e57b60fa03" + }, + "version": "3.0.0" + }, + "io.springfox:springfox-spring-webflux": { + "shasums": { + "jar": "d1c92ac9451d1537bec3806ef9b85ce434977a591659d3bedeab02156965b491", + "sources": "05815b7f82cdaa9ac5e07f8b2df4e677b1947e295b4f56e3048693ba7d0be117" + }, + "version": "3.0.0" + }, + "io.springfox:springfox-spring-webmvc": { + "shasums": { + "jar": "84074711feb4e9d13f82274171550a5fe1386674a89f228669996fa9e298cd47", + "sources": "086e1e756a3be719c5be2b830832963886cd22c3efb20fb08a7d66a84bc34e54" + }, + "version": "3.0.0" + }, + "io.springfox:springfox-swagger-common": { + "shasums": { + "jar": "fc7b489fa8664e5b6426ec65034d2760b28d560ede570040316b1fec08411f2a", + "sources": "f9a06230846b7286a3705931b370c075eaf719a7e7e27ec740ef5eeba0861852" + }, + "version": "3.0.0" + }, + "io.springfox:springfox-swagger-ui": { + "shasums": { + "jar": "40c2556b0c14e06602d23b6fbbad60ab6712e21e63636099035bb1a433cee478", + "sources": "3a2854bde8f7e9129363d8c0b3fe142f7e2f04afb3e59cd22189b396c57db86e" + }, + "version": "3.0.0" + }, + "io.springfox:springfox-swagger2": { + "shasums": { + "jar": "3be97aec137799b6826ea6647e587ca09759bcc01481e0fb6926147cae1dd6d6", + "sources": "957475ef8fb9c1f0660f6e13612a59b5e3bfab3a53acddda682c38177bdc7af5" + }, + "version": "3.0.0" + }, + "io.swagger.core.v3:swagger-annotations": { + "shasums": { + "jar": "6f442341699cdbcdd74246b82fee96a0c09f0145f48063f17b5b693e3aa40b1a", + "sources": "73f9c430635284e362fa7e58db81dfe1b7c16fff9bdb90909c0acce80bc822a8" + }, + "version": "2.1.2" + }, + "io.swagger.core.v3:swagger-models": { + "shasums": { + "jar": "4835c9ab289138ecb52e56d29d6c7e40edf0450fc1eace20c27b1f325cbcbc0d", + "sources": "ba41cb6f1cb654ddfdc044806436331eae86a34d98ed7d289da2155a010dc011" + }, + "version": "2.1.2" + }, + "io.swagger:swagger-annotations": { + "shasums": { + "jar": "69dee1ef78137a3ac5f9716193224049eab41b83fc6b845c2522efceb0af0273", + "sources": "160d632172936026d036366e99d3acbc8ea23d572a35a2eca1e7e31af043a728" + }, + "version": "1.5.20" + }, + "io.swagger:swagger-models": { + "shasums": { + "jar": "0adbb590fc665f17594f8bc7acce6871ed5602c8a50d0ad5419e3b72efaef639", + "sources": "1216e34613dacdba765b856150c8695a28f7e5ad857384ca3e24b099ce311e32" + }, + "version": "1.5.20" + }, + "jakarta.activation:jakarta.activation-api": { + "shasums": { + "jar": "f53f578dd0eb4170c195a4e215c59a38abfb4123dcb95dd902fef92876499fbb", + "sources": "cffd53ecb6895ed462084572cdff1127b12df719900b04c32c587c0e2fde0717" + }, + "version": "2.1.2" + }, + "jakarta.annotation:jakarta.annotation-api": { + "shasums": { + "jar": "5f65fdaf424eee2b55e1d882ba9bb376be93fb09b37b808be6e22e8851c909fe", + "sources": "4b8abc5d33e33ad0cc53588532dafece90135cc83629429534af1c0900747094" + }, + "version": "2.1.1" + }, + "jakarta.servlet:jakarta.servlet-api": { + "shasums": { + "jar": "c034eb1afb158987dbb53a5fea0cadf611c8dae8daadd59c44d9d5ab70129cef", + "sources": "3dc226f976152a4bf78a2b7ee0c67ba0e61029f1ba6f439767d7c5c7afaeef9d" + }, + "version": "6.0.0" + }, + "jakarta.xml.bind:jakarta.xml.bind-api": { + "shasums": { + "jar": "287f3b6d0600082e0b60265d7de32be403ee7d7269369c9718d9424305b89d95", + "sources": "2cf07a603cb0d558de1f24cbdad014de0fdcaa8411b4667922bd895f8c45a8ab" + }, + "version": "4.0.1" + }, + "javax.annotation:javax.annotation-api": { + "shasums": { + "jar": "e04ba5195bcd555dc95650f7cc614d151e4bcd52d29a10b8aa2197f3ab89ab9b", + "sources": "128971e52e0d84a66e3b6e049dab8ad7b2c58b7e1ad37fa2debd3d40c2947b95" + }, + "version": "1.3.2" + }, + "net.bytebuddy:byte-buddy": { + "shasums": { + "jar": "377352e253282bf86f731ac90ed88348e8f40a63ce033c00a85982de7e790e6f", + "sources": "4039b20d06895bf0449161dd5f1cbbc2e81004af196d5b42c5536b91db8e0315" + }, + "version": "1.14.9" + }, + "net.bytebuddy:byte-buddy-agent": { + "shasums": { + "jar": "11ed107d4b78e55f8c3d34250494375081a29bc125a1f5c56db582ccdd48835f", + "sources": "01ba24ea9e0c83e6e8a6d96d5476bd2860a26bc98994af747a6cbd7b015ca85f" + }, + "version": "1.14.9" + }, + "net.minidev:accessors-smart": { + "shasums": { + "jar": "12314fc6881d66a413fd66370787adba16e504fbf7e138690b0f3952e3fbd321", + "sources": "15b7153f0dc43209d9e4d8a75791e076ec738a7b66def3fd26ed2f545ed0725c" + }, + "version": "2.5.0" + }, + "net.minidev:json-smart": { + "shasums": { + "jar": "432b9e545848c4141b80717b26e367f83bf33f19250a228ce75da6e967da2bc7", + "sources": "defc60385f6df8c683ab097874f5057a25a8bfda2e8399256d5e52d9f5bdf541" + }, + "version": "2.5.0" + }, + "org.apache.commons:commons-compress": { + "shasums": { + "jar": "c267f17160e9ef662b4d78b7f29dca7c82b15c5cff2cb6a9865ef4ab3dd5b787", + "sources": "2ba017aee1a90ebd2b27ba245c2338f37bf23948f035a2bd75becf623906b709" + }, + "version": "1.23.0" + }, + "org.apache.logging.log4j:log4j-api": { + "shasums": { + "jar": "1db48e180881bef1deb502022006a025a248d8f6a26186789b0c7ce487c602d6", + "sources": "5d2875725938979d81788cd30234db9e82616ccc2607d9a5f64775824da842dd" + }, + "version": "2.21.1" + }, + "org.apache.logging.log4j:log4j-to-slf4j": { + "shasums": { + "jar": "de143c565ba78b0f2c0be58f132c7aec75e6e1a10845ebda5a4f17c2a35d9990", + "sources": "dbe95b592f6485960f5678cfd17d511b7fb53416d256d00266ee4508f81b14db" + }, + "version": "2.21.1" + }, + "org.apache.shiro:shiro-cache": { + "shasums": { + "jar": "e409e36056060224dc1b0ad42959cd51c61ac3dbbb0558be26c39e387f85c5a3", + "sources": "e71ba74c540c485919358db01a3dbe4019a0290af0e97bffda0acdf0673d21b4" + }, + "version": "1.13.0" + }, + "org.apache.shiro:shiro-config-core": { + "shasums": { + "jar": "2f5cd02a5cf72a9d3e20417ad4b56ca692acfd1579f8c9bafe939e71e02888eb", + "sources": "5b43ed5245ff746cd7488e34508e9434ca9f8520ce2d2293dfd98d2c5a90c9c2" + }, + "version": "1.13.0" + }, + "org.apache.shiro:shiro-config-ogdl": { + "shasums": { + "jar": "f067d8775ebde81e55f78603c0d5b3a0d1ce493726d4eff325b7a848c7bbf6e3", + "sources": "db532bcc2d5252ada29cb25caf0a68b5cad12b8c86a4689f252133c7c6147662" + }, + "version": "1.13.0" + }, + "org.apache.shiro:shiro-core": { + "shasums": { + "jakarta": "ddb03b68cdc08792ec2a18f0ae6edb298ce94073a87862cb44b5db3fa40643ff", + "jar": "ddb03b68cdc08792ec2a18f0ae6edb298ce94073a87862cb44b5db3fa40643ff", + "sources": "d8ef4daf3245da0e42b42acf2c6c82c92fa606a04f58b177fe296dae6d16d04d" + }, + "version": "1.13.0" + }, + "org.apache.shiro:shiro-crypto-cipher": { + "shasums": { + "jar": "aa30868a10055d5fe1e0d8dd8915f174532fabf6d00c810076da94a82deae75f", + "sources": "667a4b4813c1f34719b4c3019d2f7462e6cdee8595c45daa2c5e9ea9de7d1c89" + }, + "version": "1.13.0" + }, + "org.apache.shiro:shiro-crypto-core": { + "shasums": { + "jar": "f9a103b92c4261258b9ae9cfcd83af43c2500309b0689ec149a45565cf44342d", + "sources": "c065a9c5f359a11acc9e4a643a436ea09100853bce880823cf0b6c9dfc289351" + }, + "version": "1.13.0" + }, + "org.apache.shiro:shiro-crypto-hash": { + "shasums": { + "jar": "c06c9f2e37fb8838842853e47035fab0c064c3b144948e60bdcf96e694f286a3", + "sources": "203bb1ae62f080ecbc4ca354fbe55e738a257d60a8901dec2be36040b3e36d1a" + }, + "version": "1.13.0" + }, + "org.apache.shiro:shiro-event": { + "shasums": { + "jar": "a4c6a9304ec16c948eec258fab577c13b446d1e82b6f49c41d40974b7fb191e9", + "sources": "3629190872442c6008829b7aed5cbca2ddc003a826b9f0cda0d7e8e156029520" + }, + "version": "1.13.0" + }, + "org.apache.shiro:shiro-lang": { + "shasums": { + "jar": "8c3eb1676191db97311218d5cccead1cee0f0ecdb3467f1ac9e0c4449378c97d", + "sources": "c7f1435b6cf7f7173216dabbea2b1c55b20d5e8b40cc3a8af4e6ffb0f4f0b878" + }, + "version": "1.13.0" + }, + "org.apache.shiro:shiro-spring": { + "shasums": { + "jakarta": "984ff671596b7f9ea4b8b7fd83b81cde7526cb25847b2aa91620618d05d7b193", + "sources": "19c1546aaa4c089fb41a7f80ed6c89db07a71125ba5dbc732d7962eeb053921a" + }, + "version": "1.13.0" + }, + "org.apache.shiro:shiro-web": { + "shasums": { + "jakarta": "68782a9799495cd48c2cda54a7301fecc618664506a7a43bfe2d93e4286c0761", + "sources": "e5257fce27a96e5ae4e7b37cf321f43b503d11edaec51593376dda42c24774d1" + }, + "version": "1.13.0" + }, + "org.apache.tomcat.embed:tomcat-embed-core": { + "shasums": { + "jar": "496a6ac8e0c410db54cf169f87016161dc9e6a5d509ba9af1f3ac0ce0b5b6a35", + "sources": "bf02e48a8e554f5d56f5f25237465b4b5e36909ad1d67943788f86100bc2b101" + }, + "version": "10.1.18" + }, + "org.apache.tomcat.embed:tomcat-embed-el": { + "shasums": { + "jar": "2ca4d6bd5e1d60ce0846314112541da030634006855f6b1a871879ffe1a9ca86", + "sources": "52a2d8d07c4bb4ed48975eb3b33ce7f43054461f90f54264ad2b686ac44117fb" + }, + "version": "10.1.18" + }, + "org.apache.tomcat.embed:tomcat-embed-websocket": { + "shasums": { + "jar": "0b54e6dcbd21f26d0c1db4466a811f39b04b3c76e811bfb80fe030b4738a4fc2", + "sources": "87b5f94410a1c4c487215032e973106045231077f555517b77c025df00a3c614" + }, + "version": "10.1.18" + }, + "org.apiguardian:apiguardian-api": { + "shasums": { + "jar": "b509448ac506d607319f182537f0b35d71007582ec741832a1f111e5b5b70b38", + "sources": "277a7a4315412817beb6655b324dc7276621e95ebff00b8bf65e17a27b685e2d" + }, + "version": "1.1.2" + }, + "org.aspectj:aspectjweaver": { + "shasums": { + "jar": "cc3397d9d3a114894756fc67779941f5f04b06e32e41aa9408564c671a1504ba", + "sources": "eb10239df8f409ef6117d851dd11eb1d447a23c670d619eb7f447d36bf9a9947" + }, + "version": "1.9.21" + }, + "org.assertj:assertj-core": { + "shasums": { + "jar": "df3d0b348f1fe806bdddcb10fa4ae63c6679e9888d4bc7055f09848517976aa3", + "sources": "67cbf29f82539b16e985a073937b19373443af000983986d05a5962ff9108fa7" + }, + "version": "3.24.2" + }, + "org.awaitility:awaitility": { + "shasums": { + "jar": "2d23b79211fdd19036f6940cc783543779320aaf86f38d6e385a2ff26da41272", + "sources": "26642b9a90d7144d3cca113a3390f316911496735b3f1095f984089426a4fe4d" + }, + "version": "4.2.0" + }, + "org.checkerframework:checker-qual": { + "shasums": { + "jar": "729990b3f18a95606fc2573836b6958bcdb44cb52bfbd1b7aa9c339cff35a5a4", + "sources": "0724b40995c1b05516caa2dd9a3b2f5378f948cf20f3404f4db316af25239368" + }, + "version": "3.5.0" + }, + "org.hamcrest:hamcrest": { + "shasums": { + "jar": "5e62846a89f05cd78cd9c1a553f340d002458380c320455dd1f8fc5497a8a1c1", + "sources": "f49e697dbc70591f91a90dd7f741f5780f53f63f34a416d6a9879499d4d666af" + }, + "version": "2.2" + }, + "org.junit.jupiter:junit-jupiter": { + "shasums": { + "jar": "c1a386e901fae28e493185a47c8cea988fb1a37422b353a0f8b4df2e6c5d6037", + "sources": "bd628b06b83b0d8830b53747b7f466beebca12d4808f117660ac06e47af99d1c" + }, + "version": "5.10.1" + }, + "org.junit.jupiter:junit-jupiter-api": { + "shasums": { + "jar": "60d5c398c32dc7039b99282514ad6064061d8417cf959a1f6bd2038cc907c913", + "sources": "551e054c2e84b79d087f0410c8e6e3dd3e83ae54129593380d48550da441b5ef" + }, + "version": "5.10.1" + }, + "org.junit.jupiter:junit-jupiter-engine": { + "shasums": { + "jar": "02930dfe495f93fe70b26550ace3a28f7e1b900c84426c2e4626ce020c7282d6", + "sources": "00ffb37a2d4a1f5ab224c4cf44b2d050b3d132ca650e9c4251605daf9cd6da9b" + }, + "version": "5.10.1" + }, + "org.junit.jupiter:junit-jupiter-params": { + "shasums": { + "jar": "c8cf62debcbb354deefe1ffd0671eff785514907567d22a615ff8a8de4522b21", + "sources": "532dce2ef436152405567ea75f076dc908c4d21641224ecc53913c9f09bfb131" + }, + "version": "5.10.1" + }, + "org.junit.platform:junit-platform-commons": { + "shasums": { + "jar": "7d9855ee3f3f71f015eb1479559bf923783243c24fbfbd8b29bed8e8099b5672", + "sources": "8ae867cc64b5f6bbb73e7786e0ac2a69ddf6f1e460e08274feef84b249036e53" + }, + "version": "1.10.1" + }, + "org.junit.platform:junit-platform-engine": { + "shasums": { + "jar": "baa48e470d6dee7369a0a8820c51da89c1463279eda6e13a304d11f45922c760", + "sources": "17ac74964fcd82c57130623afe72a99105ca107fc96cb53f169b3a8c9c444c83" + }, + "version": "1.10.1" + }, + "org.mapstruct:mapstruct": { + "shasums": { + "jar": "567c4ce1145ee888716d4c1b00ef48b98256b22fbf0738be77ce1095e0fb9fcf", + "sources": "521f38e58233eb172d910c5ea761fcf0e9a6cb5f2604e690c13a6755ba5aac00" + }, + "version": "1.3.1.Final" + }, + "org.mockito:mockito-core": { + "shasums": { + "jar": "dbad5e746654910a11a59ecb4d01e38461f3e5d16161689dc2588d5554432521", + "sources": "a0a2b963d94a9dbb7057bdf421a4677d578a1db55b7c7e9f94ac44f0780aff3f" + }, + "version": "5.7.0" + }, + "org.mockito:mockito-junit-jupiter": { + "shasums": { + "jar": "e2416a260c3a45ba77d674cfe27d49428e57efe21a7b2ddeae733ebb5c5d85bf", + "sources": "4fde779704b623d797c15441676a14f8362054beca0d72ae21fcab4a35780a00" + }, + "version": "5.7.0" + }, + "org.objenesis:objenesis": { + "shasums": { + "jar": "02dfd0b0439a5591e35b708ed2f5474eb0948f53abf74637e959b8e4ef69bfeb", + "sources": "d06164f8ca002c8ef193cef2d682822014dd330505616af93a3fb64226fc131d" + }, + "version": "3.3" + }, + "org.opentest4j:opentest4j": { + "shasums": { + "jar": "48e2df636cab6563ced64dcdff8abb2355627cb236ef0bf37598682ddf742f1b", + "sources": "724a24e3a68267d5ebac9411389a15638a71e50c62448ffa58f59c34d5c1ebb2" + }, + "version": "1.3.0" + }, + "org.ow2.asm:asm": { + "shasums": { + "jar": "1263369b59e29c943918de11d6d6152e2ec6085ce63e5710516f8c67d368e4bc", + "sources": "5ceb3d0b41a8eb8b416f28778b27c0e290143b6dc29d887b1cf40e2c0727f096" + }, + "version": "9.3" + }, + "org.owasp.encoder:encoder": { + "shasums": { + "jar": "b09e2cd5c36a7127e091df9be628278b1166b40bc08b9de8196ccddb0cccd67f", + "sources": "deca6c8b4d3e7372ebd28a3a837d9959348ddc925665f6996b7066ce3800d7a3" + }, + "version": "1.2.3" + }, + "org.postgresql:postgresql": { + "shasums": { + "jar": "fe25b9c0a2c59458504ec88862853df522ee87f8a02564835d537c29ae4cb125", + "sources": "19301238bdba14e4d77907522eee8c42f91f016d28063b2ccbdd8b58abe15b35" + }, + "version": "42.4.0" + }, + "org.quartz-scheduler:quartz": { + "shasums": { + "jar": "639c6a675bc472e1568df9d8c954ff702da6f83ed27da0ff9a7bd12ed73b8bf0", + "sources": "482e3d38511e5581c641b8b091572373dd8e44a654e184282b843a24e39c8534" + }, + "version": "2.3.2" + }, + "org.skyscreamer:jsonassert": { + "shasums": { + "jar": "1e9a7c443d0dd579906646d767f3701918a78cb88a93112f528305fc9095d261", + "sources": "33b69be7e60f2362deb3200680f6117ede76bd281c86941e7896fe0ea0f5e47b" + }, + "version": "1.5.1" + }, + "org.slf4j:jul-to-slf4j": { + "shasums": { + "jar": "67e605b1f3efd4efcb060e4c11a2e6d8d4dfd2262bba7916aeafa77eeb1bcf89", + "sources": "ecb553c120603c8386303604135465fb4707353963bb24f73eb1868b5de3205a" + }, + "version": "2.0.11" + }, + "org.slf4j:slf4j-api": { + "shasums": { + "jar": "ce0e71d673acb9036bb55d0244b261cf033f8e4c1245f14f931dfb1937dd4c95", + "sources": "3c1357260d1c649aa747bc6ba7b78fb6ea1bd2f7e6fabd9c6412e9d5c6e2ea0c" + }, + "version": "2.0.11" + }, + "org.springframework.boot:spring-boot": { + "shasums": { + "jar": "c3019200b71836bc5a0607b10000a1b8542bc9e53006f97a0d79cc10754e5792", + "sources": "b03f9dd941f02e513b667e8f0f530ff6b5b2aec908c9806d73827f9e92acac34" + }, + "version": "3.2.2" + }, + "org.springframework.boot:spring-boot-autoconfigure": { + "shasums": { + "jar": "78edfd15067b8eb6e23ee3ff7a610f3836849335db6cc51a6da2f9c12f564d30", + "sources": "7f9629c98b4dee84140a602ea0021446697d28779a5859656318c2287348bd08" + }, + "version": "3.2.2" + }, + "org.springframework.boot:spring-boot-devtools": { + "shasums": { + "jar": "538314d61177ed9ed8911241f7c602724be5d37c434e95faf822836e71d1516d", + "sources": "236a0a7e4806da02abbf18ee66bf7235f02708078a74229ce28eb1fbcfc8b25a" + }, + "version": "3.2.2" + }, + "org.springframework.boot:spring-boot-loader": { + "shasums": { + "jar": "0e22fa2272142cba1284800322c3d65e43f828a673c0dde3a2439c6ad398068f", + "sources": "204b1674487bdc4c4e7a2a790daff6d79e3df434ee4298fbeba099a9a7ccfc61" + }, + "version": "3.2.2" + }, + "org.springframework.boot:spring-boot-loader-tools": { + "shasums": { + "jar": "3869a3ea46c5558459a78c7bdde458ba99c20ba539e6c3614369b708a6110ac0", + "sources": "d3758d971adb95c6d1c5a44e219014df2688c3ecbbc96a7c2d016cb35ab638d1" + }, + "version": "3.2.2" + }, + "org.springframework.boot:spring-boot-starter": { + "shasums": { + "jar": "2e7b5a2f475f52f4cd5055a2ae6bae7a9c15e198b43f7e56a4b56df3941a837c", + "sources": "dfa4ad76ef805caae41e24c85722cc0cc07abded122120f5e5b32c48c39e1bcb" + }, + "version": "3.2.2" + }, + "org.springframework.boot:spring-boot-starter-aop": { + "shasums": { + "jar": "6606b39d53c018ad9b51f8713cfcb95a13a137961c88f046be8e0ce95d835de2", + "sources": "0fb5dddff50612b355fc99ff38f15d3e0f4551c3d82b4ba803fd4325a69408c8" + }, + "version": "3.2.2" + }, + "org.springframework.boot:spring-boot-starter-jdbc": { + "shasums": { + "jar": "bc917c31af41473f1b8a257d7ff38d69aa2ac31dca09854ff8e6f8249fff164e", + "sources": "5ac5a8d8703ecae0fea7c7c9dcda972cf5816997ac028fa30898c27bcee6bdb2" + }, + "version": "3.2.2" + }, + "org.springframework.boot:spring-boot-starter-json": { + "shasums": { + "jar": "a1a7672b83f280f069acee6e55101e10ebb943b929943c544993a2f799f9766a", + "sources": "a5aa314179779fa6cafb3ad80d93d189d2274b913c5933cdfa4dbc334f42e2b6" + }, + "version": "3.2.2" + }, + "org.springframework.boot:spring-boot-starter-logging": { + "shasums": { + "jar": "04c8b031e033078d39260794f0286251188cdfd423deff3fafabc9ad0b8c2cdd", + "sources": "307c05a4ed1891f290868b8234f8d4a709cbee8cb9658c45987610061af7bf3a" + }, + "version": "3.2.2" + }, + "org.springframework.boot:spring-boot-starter-quartz": { + "shasums": { + "jar": "7153b08cf11bf790f310609bf32e7dada32786b68a306ef4d5dcd63e7e463f99", + "sources": "fd53b31fe049c4ad3fc3eed6658c24f2432f5189568d199a9ccfec6af9d7fe05" + }, + "version": "3.2.2" + }, + "org.springframework.boot:spring-boot-starter-test": { + "shasums": { + "jar": "507aaf4d63b0d8e873618ec828f0084b727edeec4f8e3f163267d50fe0a2c237", + "sources": "8214ceb6abf564a4bd803f4028b3ba8615730d543d86fecf6258ba058b14de1c" + }, + "version": "3.2.2" + }, + "org.springframework.boot:spring-boot-starter-tomcat": { + "shasums": { + "jar": "23698c3aa0eec1ad50716b5c55711cbb97e1cf25b2b2777316a41448fa8a1889", + "sources": "4475e95974e721073e685123b9528cf228124ed3853ba0891d82684bf5d27269" + }, + "version": "3.2.2" + }, + "org.springframework.boot:spring-boot-starter-web": { + "shasums": { + "jar": "e3a1bb3427484eec50ff5f050a9d183b39fa5140fb5f2f6da2f8d971fd43a03b", + "sources": "0c07f8bdb76bbc8c359952caad85bcd173b4e8a713db227c527b3e39a82cc626" + }, + "version": "3.2.2" + }, + "org.springframework.boot:spring-boot-test": { + "shasums": { + "jar": "eb5f18482931d9f5ee1e0141d67062958b47646123a29dab836634e8e8aef269", + "sources": "7d6752c7dc813736c395effdcde835368426af8ac04dd60ffe2e1607e5c612c6" + }, + "version": "3.2.2" + }, + "org.springframework.boot:spring-boot-test-autoconfigure": { + "shasums": { + "jar": "8a9ed4031c54133d41590e4592aa78d6f2cf68f948690b83c34dfceda7799a31", + "sources": "648e6aa35cb6ff1cc435316bf3e9217a72ca7aae9e7bffd1987cd5275ad4c036" + }, + "version": "3.2.2" + }, + "org.springframework.plugin:spring-plugin-core": { + "shasums": { + "jar": "6e6d026d6b572495533692173a264c6959f48d5ef7f3d6faf4555a577d4a38d2", + "sources": "abbbaf0d0366e83e8c31babd9e70e2bf959b0885068f0a6e8ea297e9135a7a3e" + }, + "version": "2.0.0.RELEASE" + }, + "org.springframework.plugin:spring-plugin-metadata": { + "shasums": { + "jar": "174c6d6ead34d2493efe0c101aec7051d6c8793ca6c4202f271dee9cd7658498", + "sources": "c6520bb5e39a1dc78cf5c302a585ba02d0c3e49985f0d5f196d19a4adba36230" + }, + "version": "2.0.0.RELEASE" + }, + "org.springframework:spring-aop": { + "shasums": { + "jar": "dcf70db1323fd05f85c553db5955e840874e14dbb610b0498a6d2032fcab5f51", + "sources": "ed6470660637ed99f95511dc1858cad271cedce8f3a001127adcace4aed96ca0" + }, + "version": "6.1.3" + }, + "org.springframework:spring-beans": { + "shasums": { + "jar": "aa02cae7dbceb343bafb70f2a5b0140048b6ab6975afa9f9b7d777728901c91c", + "sources": "9fec5d0d66f323fcfb5309e27583561e407f261aad8bcf6449fc688ff85e69cb" + }, + "version": "6.1.3" + }, + "org.springframework:spring-context": { + "shasums": { + "jar": "48801f87034b107f66a199d946cf1f2d5c32b39d5345ca4f4bb26ac60159839e", + "sources": "c31fc3286260e25e65ddff97c2f9f1fc82c88cf39c5695fe5b2cde287339bdb1" + }, + "version": "6.1.3" + }, + "org.springframework:spring-context-support": { + "shasums": { + "jar": "40ad89072205dc20b1c13bd305ad290cdcf101f0bbb64bb9a03274606dfc722f", + "sources": "90371350ef13c35e9c9d435b3bb6af420609595799b5843a6d4599f41a29cf67" + }, + "version": "6.1.3" + }, + "org.springframework:spring-core": { + "shasums": { + "jar": "f4448994a1eb4892b805020e7952aa96a8e3f101b7093a632635d2b0bab887eb", + "sources": "cf023ba8bbd20ace8b2a76f8d4893b46c782bc89522dce954d3eae0737bc6805" + }, + "version": "6.1.3" + }, + "org.springframework:spring-expression": { + "shasums": { + "jar": "b5c64baaa7ac00daed97c0c1ef97e36669b29b6c3b20614d596b392f6953a0d9", + "sources": "8da19bec2b45ae5131a6e134fd6ec04e40e0bbbc0cffa9662bac9d3deee56c56" + }, + "version": "6.1.3" + }, + "org.springframework:spring-jcl": { + "shasums": { + "jar": "9697ce9af92e2534754b37c2b78ca665e6951eb49e3894f33ddad29a046be642", + "sources": "b90943c43c8d3cda65a189c3dc3d735534a99a40d7f0e0706c8f0ce410422c1a" + }, + "version": "6.1.3" + }, + "org.springframework:spring-jdbc": { + "shasums": { + "jar": "a917fd909613c09ba42327d36df66e51937b23dafaa373fc32e70160594e5986", + "sources": "ad30ea7a3f0e0cce161059a35c454bf162e6901cc65954553b3fffc2684c752a" + }, + "version": "6.1.3" + }, + "org.springframework:spring-test": { + "shasums": { + "jar": "523adc94bd9193ddf4ff952a2f4f0c9dfa62217adbbcb2d192423517612e8adf", + "sources": "d23850292a1fba8791e705aa24ddf87670e8963e6f09450fc973ec7961ed4feb" + }, + "version": "6.1.3" + }, + "org.springframework:spring-tx": { + "shasums": { + "jar": "a67bb4a9bff7b38dae4055a85cb1a3a21309f5eb15a38113a6a4f9b600fd6f51", + "sources": "ba6d6d701bede5a9d5fc395571685427fd98a5018fa87470dc9b7bbc46bee46c" + }, + "version": "6.1.3" + }, + "org.springframework:spring-web": { + "shasums": { + "jar": "7c79d4815954d279a744e04892abb9e13ab730dc25db5813f0b1aef2c04bc818", + "sources": "82ef6819b3070a4055ba694eb6260b04b79a581237f2781bd46f6240c181244d" + }, + "version": "6.1.3" + }, + "org.springframework:spring-webmvc": { + "shasums": { + "jar": "b69fb21b86a689392636e0a48ed2fb9e9f9773affe30bb9219a45109c15c1aaf", + "sources": "2d6a8808fdf034b3593c92b1aff2c3ef8f403ea2c73f3dcc344c2b4854934192" + }, + "version": "6.1.3" + }, + "org.xmlunit:xmlunit-core": { + "shasums": { + "jar": "7e70f23d4f75e05f0ee79f0f6b9e13b6cf51d34f36c5fc3a6b839429dde1efef", + "sources": "10d11cebdd597d66ecb0f6d2d2c71955ca30412dbd4debd4c4c669bda4b0557d" + }, + "version": "2.9.1" + }, + "org.yaml:snakeyaml": { + "shasums": { + "jar": "1467931448a0817696ae2805b7b8b20bfb082652bf9c4efaed528930dc49389b", + "sources": "8f7cf911cf63db55fd980a926d155bd846317737351a2f48ef1c1088c414538a" + }, + "version": "2.2" + } + }, + "dependencies": { + "ch.qos.logback:logback-classic": [ + "ch.qos.logback:logback-core", + "org.slf4j:slf4j-api" + ], + "com.auth0:java-jwt": [ + "com.fasterxml.jackson.core:jackson-databind" + ], + "com.fasterxml.jackson.core:jackson-databind": [ + "com.fasterxml.jackson.core:jackson-annotations", + "com.fasterxml.jackson.core:jackson-core" + ], + "com.fasterxml.jackson.datatype:jackson-datatype-jdk8": [ + "com.fasterxml.jackson.core:jackson-core", + "com.fasterxml.jackson.core:jackson-databind" + ], + "com.fasterxml.jackson.datatype:jackson-datatype-jsr310": [ + "com.fasterxml.jackson.core:jackson-annotations", + "com.fasterxml.jackson.core:jackson-core", + "com.fasterxml.jackson.core:jackson-databind" + ], + "com.fasterxml.jackson.module:jackson-module-parameter-names": [ + "com.fasterxml.jackson.core:jackson-core", + "com.fasterxml.jackson.core:jackson-databind" + ], + "com.jayway.jsonpath:json-path": [ + "net.minidev:json-smart", + "org.slf4j:slf4j-api" + ], + "com.mchange:c3p0": [ + "com.mchange:mchange-commons-java" + ], + "com.zaxxer:HikariCP": [ + "org.slf4j:slf4j-api" + ], + "com.zaxxer:HikariCP-java7": [ + "org.slf4j:slf4j-api" + ], + "commons-beanutils:commons-beanutils": [ + "commons-collections:commons-collections" + ], + "io.micrometer:micrometer-observation": [ + "io.micrometer:micrometer-commons" + ], + "io.springfox:springfox-bean-validators": [ + "com.fasterxml:classmate", + "io.springfox:springfox-spring-web", + "org.slf4j:slf4j-api", + "org.springframework.plugin:spring-plugin-core", + "org.springframework.plugin:spring-plugin-metadata" + ], + "io.springfox:springfox-boot-starter": [ + "com.fasterxml:classmate", + "io.springfox:springfox-bean-validators", + "io.springfox:springfox-data-rest", + "io.springfox:springfox-oas", + "io.springfox:springfox-swagger-ui", + "io.springfox:springfox-swagger2", + "org.slf4j:slf4j-api", + "org.springframework.plugin:spring-plugin-core", + "org.springframework.plugin:spring-plugin-metadata" + ], + "io.springfox:springfox-core": [ + "com.fasterxml:classmate", + "net.bytebuddy:byte-buddy", + "org.slf4j:slf4j-api", + "org.springframework.plugin:spring-plugin-core", + "org.springframework.plugin:spring-plugin-metadata" + ], + "io.springfox:springfox-data-rest": [ + "com.fasterxml:classmate", + "io.springfox:springfox-core", + "io.springfox:springfox-spi", + "io.springfox:springfox-spring-webmvc", + "org.slf4j:slf4j-api", + "org.springframework.plugin:spring-plugin-core", + "org.springframework.plugin:spring-plugin-metadata" + ], + "io.springfox:springfox-oas": [ + "com.fasterxml:classmate", + "io.springfox:springfox-core", + "io.springfox:springfox-schema", + "io.springfox:springfox-spi", + "io.springfox:springfox-spring-web", + "io.springfox:springfox-spring-webflux", + "io.springfox:springfox-spring-webmvc", + "io.springfox:springfox-swagger-common", + "io.swagger.core.v3:swagger-annotations", + "io.swagger.core.v3:swagger-models", + "org.mapstruct:mapstruct", + "org.slf4j:slf4j-api", + "org.springframework.plugin:spring-plugin-core", + "org.springframework.plugin:spring-plugin-metadata" + ], + "io.springfox:springfox-schema": [ + "io.springfox:springfox-core", + "io.springfox:springfox-spi" + ], + "io.springfox:springfox-spi": [ + "io.springfox:springfox-core" + ], + "io.springfox:springfox-spring-web": [ + "com.fasterxml:classmate", + "io.github.classgraph:classgraph", + "io.springfox:springfox-core", + "io.springfox:springfox-schema", + "io.springfox:springfox-spi", + "org.slf4j:slf4j-api", + "org.springframework.plugin:spring-plugin-core", + "org.springframework.plugin:spring-plugin-metadata" + ], + "io.springfox:springfox-spring-webflux": [ + "com.fasterxml:classmate", + "io.springfox:springfox-core", + "io.springfox:springfox-schema", + "io.springfox:springfox-spi", + "io.springfox:springfox-spring-web", + "org.slf4j:slf4j-api", + "org.springframework.plugin:spring-plugin-core", + "org.springframework.plugin:spring-plugin-metadata" + ], + "io.springfox:springfox-spring-webmvc": [ + "com.fasterxml:classmate", + "io.springfox:springfox-core", + "io.springfox:springfox-schema", + "io.springfox:springfox-spi", + "io.springfox:springfox-spring-web", + "org.slf4j:slf4j-api", + "org.springframework.plugin:spring-plugin-core", + "org.springframework.plugin:spring-plugin-metadata" + ], + "io.springfox:springfox-swagger-common": [ + "com.fasterxml:classmate", + "io.springfox:springfox-schema", + "io.springfox:springfox-spi", + "io.springfox:springfox-spring-web", + "io.springfox:springfox-spring-webmvc", + "io.swagger.core.v3:swagger-annotations", + "io.swagger:swagger-annotations", + "io.swagger:swagger-models", + "org.slf4j:slf4j-api", + "org.springframework.plugin:spring-plugin-core", + "org.springframework.plugin:spring-plugin-metadata" + ], + "io.springfox:springfox-swagger-ui": [ + "io.springfox:springfox-spring-webmvc" + ], + "io.springfox:springfox-swagger2": [ + "com.fasterxml:classmate", + "io.springfox:springfox-schema", + "io.springfox:springfox-spi", + "io.springfox:springfox-spring-web", + "io.springfox:springfox-spring-webflux", + "io.springfox:springfox-spring-webmvc", + "io.springfox:springfox-swagger-common", + "io.swagger:swagger-annotations", + "io.swagger:swagger-models", + "org.mapstruct:mapstruct", + "org.slf4j:slf4j-api", + "org.springframework.plugin:spring-plugin-core", + "org.springframework.plugin:spring-plugin-metadata" + ], + "io.swagger.core.v3:swagger-models": [ + "com.fasterxml.jackson.core:jackson-annotations" + ], + "io.swagger:swagger-models": [ + "com.fasterxml.jackson.core:jackson-annotations", + "io.swagger:swagger-annotations", + "org.slf4j:slf4j-api" + ], + "jakarta.xml.bind:jakarta.xml.bind-api": [ + "jakarta.activation:jakarta.activation-api" + ], + "net.minidev:accessors-smart": [ + "org.ow2.asm:asm" + ], + "net.minidev:json-smart": [ + "net.minidev:accessors-smart" + ], + "org.apache.logging.log4j:log4j-to-slf4j": [ + "org.apache.logging.log4j:log4j-api", + "org.slf4j:slf4j-api" + ], + "org.apache.shiro:shiro-cache": [ + "org.apache.shiro:shiro-lang" + ], + "org.apache.shiro:shiro-config-core": [ + "org.apache.shiro:shiro-lang" + ], + "org.apache.shiro:shiro-config-ogdl": [ + "commons-beanutils:commons-beanutils", + "org.apache.shiro:shiro-config-core", + "org.apache.shiro:shiro-event", + "org.apache.shiro:shiro-lang", + "org.slf4j:slf4j-api" + ], + "org.apache.shiro:shiro-core": [ + "org.apache.shiro:shiro-cache", + "org.apache.shiro:shiro-config-core", + "org.apache.shiro:shiro-config-ogdl", + "org.apache.shiro:shiro-crypto-cipher", + "org.apache.shiro:shiro-crypto-hash", + "org.apache.shiro:shiro-event", + "org.apache.shiro:shiro-lang" + ], + "org.apache.shiro:shiro-core:jar:jakarta": [ + "org.apache.shiro:shiro-cache", + "org.apache.shiro:shiro-config-core", + "org.apache.shiro:shiro-config-ogdl", + "org.apache.shiro:shiro-crypto-cipher", + "org.apache.shiro:shiro-crypto-hash", + "org.apache.shiro:shiro-event", + "org.apache.shiro:shiro-lang" + ], + "org.apache.shiro:shiro-crypto-cipher": [ + "org.apache.shiro:shiro-crypto-core", + "org.apache.shiro:shiro-lang" + ], + "org.apache.shiro:shiro-crypto-core": [ + "org.apache.shiro:shiro-lang" + ], + "org.apache.shiro:shiro-crypto-hash": [ + "org.apache.shiro:shiro-crypto-core", + "org.apache.shiro:shiro-lang" + ], + "org.apache.shiro:shiro-event": [ + "org.apache.shiro:shiro-lang" + ], + "org.apache.shiro:shiro-lang": [ + "org.slf4j:slf4j-api" + ], + "org.apache.shiro:shiro-web:jar:jakarta": [ + "org.apache.shiro:shiro-core", + "org.owasp.encoder:encoder" + ], + "org.apache.tomcat.embed:tomcat-embed-websocket": [ + "org.apache.tomcat.embed:tomcat-embed-core" + ], + "org.assertj:assertj-core": [ + "net.bytebuddy:byte-buddy" + ], + "org.awaitility:awaitility": [ + "org.hamcrest:hamcrest" + ], + "org.junit.jupiter:junit-jupiter": [ + "org.junit.jupiter:junit-jupiter-api", + "org.junit.jupiter:junit-jupiter-engine", + "org.junit.jupiter:junit-jupiter-params" + ], + "org.junit.jupiter:junit-jupiter-api": [ + "org.apiguardian:apiguardian-api", + "org.junit.platform:junit-platform-commons", + "org.opentest4j:opentest4j" + ], + "org.junit.jupiter:junit-jupiter-engine": [ + "org.apiguardian:apiguardian-api", + "org.junit.jupiter:junit-jupiter-api", + "org.junit.platform:junit-platform-engine" + ], + "org.junit.jupiter:junit-jupiter-params": [ + "org.apiguardian:apiguardian-api", + "org.junit.jupiter:junit-jupiter-api" + ], + "org.junit.platform:junit-platform-commons": [ + "org.apiguardian:apiguardian-api" + ], + "org.junit.platform:junit-platform-engine": [ + "org.apiguardian:apiguardian-api", + "org.junit.platform:junit-platform-commons", + "org.opentest4j:opentest4j" + ], + "org.mockito:mockito-core": [ + "net.bytebuddy:byte-buddy", + "net.bytebuddy:byte-buddy-agent", + "org.objenesis:objenesis" + ], + "org.mockito:mockito-junit-jupiter": [ + "org.junit.jupiter:junit-jupiter-api", + "org.mockito:mockito-core" + ], + "org.postgresql:postgresql": [ + "org.checkerframework:checker-qual" + ], + "org.quartz-scheduler:quartz": [ + "com.mchange:c3p0", + "com.mchange:mchange-commons-java", + "com.zaxxer:HikariCP-java7", + "org.slf4j:slf4j-api" + ], + "org.skyscreamer:jsonassert": [ + "com.vaadin.external.google:android-json" + ], + "org.slf4j:jul-to-slf4j": [ + "org.slf4j:slf4j-api" + ], + "org.springframework.boot:spring-boot": [ + "org.springframework:spring-context", + "org.springframework:spring-core" + ], + "org.springframework.boot:spring-boot-autoconfigure": [ + "org.springframework.boot:spring-boot" + ], + "org.springframework.boot:spring-boot-devtools": [ + "org.springframework.boot:spring-boot", + "org.springframework.boot:spring-boot-autoconfigure" + ], + "org.springframework.boot:spring-boot-loader-tools": [ + "org.apache.commons:commons-compress", + "org.springframework:spring-core" + ], + "org.springframework.boot:spring-boot-starter": [ + "jakarta.annotation:jakarta.annotation-api", + "org.springframework.boot:spring-boot", + "org.springframework.boot:spring-boot-autoconfigure", + "org.springframework.boot:spring-boot-starter-logging", + "org.springframework:spring-core", + "org.yaml:snakeyaml" + ], + "org.springframework.boot:spring-boot-starter-aop": [ + "org.aspectj:aspectjweaver", + "org.springframework.boot:spring-boot-starter", + "org.springframework:spring-aop" + ], + "org.springframework.boot:spring-boot-starter-jdbc": [ + "com.zaxxer:HikariCP", + "org.springframework.boot:spring-boot-starter", + "org.springframework:spring-jdbc" + ], + "org.springframework.boot:spring-boot-starter-json": [ + "com.fasterxml.jackson.core:jackson-databind", + "com.fasterxml.jackson.datatype:jackson-datatype-jdk8", + "com.fasterxml.jackson.datatype:jackson-datatype-jsr310", + "com.fasterxml.jackson.module:jackson-module-parameter-names", + "org.springframework.boot:spring-boot-starter", + "org.springframework:spring-web" + ], + "org.springframework.boot:spring-boot-starter-logging": [ + "ch.qos.logback:logback-classic", + "org.apache.logging.log4j:log4j-to-slf4j", + "org.slf4j:jul-to-slf4j" + ], + "org.springframework.boot:spring-boot-starter-quartz": [ + "org.quartz-scheduler:quartz", + "org.springframework.boot:spring-boot-starter", + "org.springframework:spring-context-support", + "org.springframework:spring-tx" + ], + "org.springframework.boot:spring-boot-starter-test": [ + "com.jayway.jsonpath:json-path", + "jakarta.xml.bind:jakarta.xml.bind-api", + "net.minidev:json-smart", + "org.assertj:assertj-core", + "org.awaitility:awaitility", + "org.hamcrest:hamcrest", + "org.junit.jupiter:junit-jupiter", + "org.mockito:mockito-core", + "org.mockito:mockito-junit-jupiter", + "org.skyscreamer:jsonassert", + "org.springframework.boot:spring-boot-starter", + "org.springframework.boot:spring-boot-test", + "org.springframework.boot:spring-boot-test-autoconfigure", + "org.springframework:spring-core", + "org.springframework:spring-test", + "org.xmlunit:xmlunit-core" + ], + "org.springframework.boot:spring-boot-starter-tomcat": [ + "jakarta.annotation:jakarta.annotation-api", + "org.apache.tomcat.embed:tomcat-embed-core", + "org.apache.tomcat.embed:tomcat-embed-el", + "org.apache.tomcat.embed:tomcat-embed-websocket" + ], + "org.springframework.boot:spring-boot-starter-web": [ + "org.springframework.boot:spring-boot-starter", + "org.springframework.boot:spring-boot-starter-json", + "org.springframework.boot:spring-boot-starter-tomcat", + "org.springframework:spring-web", + "org.springframework:spring-webmvc" + ], + "org.springframework.boot:spring-boot-test": [ + "org.springframework.boot:spring-boot" + ], + "org.springframework.boot:spring-boot-test-autoconfigure": [ + "org.springframework.boot:spring-boot", + "org.springframework.boot:spring-boot-autoconfigure", + "org.springframework.boot:spring-boot-test" + ], + "org.springframework.plugin:spring-plugin-core": [ + "org.slf4j:slf4j-api", + "org.springframework:spring-aop", + "org.springframework:spring-beans", + "org.springframework:spring-context" + ], + "org.springframework.plugin:spring-plugin-metadata": [ + "org.slf4j:slf4j-api", + "org.springframework.plugin:spring-plugin-core" + ], + "org.springframework:spring-aop": [ + "org.springframework:spring-beans", + "org.springframework:spring-core" + ], + "org.springframework:spring-beans": [ + "org.springframework:spring-core" + ], + "org.springframework:spring-context": [ + "io.micrometer:micrometer-observation", + "org.springframework:spring-aop", + "org.springframework:spring-beans", + "org.springframework:spring-core", + "org.springframework:spring-expression" + ], + "org.springframework:spring-context-support": [ + "org.springframework:spring-beans", + "org.springframework:spring-context", + "org.springframework:spring-core" + ], + "org.springframework:spring-core": [ + "org.springframework:spring-jcl" + ], + "org.springframework:spring-expression": [ + "org.springframework:spring-core" + ], + "org.springframework:spring-jdbc": [ + "org.springframework:spring-beans", + "org.springframework:spring-core", + "org.springframework:spring-tx" + ], + "org.springframework:spring-test": [ + "org.springframework:spring-core" + ], + "org.springframework:spring-tx": [ + "org.springframework:spring-beans", + "org.springframework:spring-core" + ], + "org.springframework:spring-web": [ + "io.micrometer:micrometer-observation", + "org.springframework:spring-beans", + "org.springframework:spring-core" + ], + "org.springframework:spring-webmvc": [ + "org.springframework:spring-aop", + "org.springframework:spring-beans", + "org.springframework:spring-context", + "org.springframework:spring-core", + "org.springframework:spring-expression", + "org.springframework:spring-web" + ], + "org.xmlunit:xmlunit-core": [ + "jakarta.xml.bind:jakarta.xml.bind-api" + ] + }, + "packages": { + "ch.qos.logback:logback-classic": [ + "ch.qos.logback.classic", + "ch.qos.logback.classic.boolex", + "ch.qos.logback.classic.encoder", + "ch.qos.logback.classic.filter", + "ch.qos.logback.classic.helpers", + "ch.qos.logback.classic.html", + "ch.qos.logback.classic.joran", + "ch.qos.logback.classic.joran.action", + "ch.qos.logback.classic.joran.sanity", + "ch.qos.logback.classic.joran.serializedModel", + "ch.qos.logback.classic.jul", + "ch.qos.logback.classic.layout", + "ch.qos.logback.classic.log4j", + "ch.qos.logback.classic.model", + "ch.qos.logback.classic.model.processor", + "ch.qos.logback.classic.model.util", + "ch.qos.logback.classic.net", + "ch.qos.logback.classic.net.server", + "ch.qos.logback.classic.pattern", + "ch.qos.logback.classic.pattern.color", + "ch.qos.logback.classic.selector", + "ch.qos.logback.classic.selector.servlet", + "ch.qos.logback.classic.servlet", + "ch.qos.logback.classic.sift", + "ch.qos.logback.classic.spi", + "ch.qos.logback.classic.turbo", + "ch.qos.logback.classic.util" + ], + "ch.qos.logback:logback-core": [ + "ch.qos.logback.core", + "ch.qos.logback.core.boolex", + "ch.qos.logback.core.encoder", + "ch.qos.logback.core.filter", + "ch.qos.logback.core.helpers", + "ch.qos.logback.core.hook", + "ch.qos.logback.core.html", + "ch.qos.logback.core.joran", + "ch.qos.logback.core.joran.action", + "ch.qos.logback.core.joran.conditional", + "ch.qos.logback.core.joran.event", + "ch.qos.logback.core.joran.event.stax", + "ch.qos.logback.core.joran.node", + "ch.qos.logback.core.joran.sanity", + "ch.qos.logback.core.joran.spi", + "ch.qos.logback.core.joran.util", + "ch.qos.logback.core.joran.util.beans", + "ch.qos.logback.core.layout", + "ch.qos.logback.core.model", + "ch.qos.logback.core.model.conditional", + "ch.qos.logback.core.model.processor", + "ch.qos.logback.core.model.processor.conditional", + "ch.qos.logback.core.model.util", + "ch.qos.logback.core.net", + "ch.qos.logback.core.net.server", + "ch.qos.logback.core.net.ssl", + "ch.qos.logback.core.pattern", + "ch.qos.logback.core.pattern.color", + "ch.qos.logback.core.pattern.parser", + "ch.qos.logback.core.pattern.util", + "ch.qos.logback.core.property", + "ch.qos.logback.core.read", + "ch.qos.logback.core.recovery", + "ch.qos.logback.core.rolling", + "ch.qos.logback.core.rolling.helper", + "ch.qos.logback.core.sift", + "ch.qos.logback.core.spi", + "ch.qos.logback.core.status", + "ch.qos.logback.core.subst", + "ch.qos.logback.core.testUtil", + "ch.qos.logback.core.util" + ], + "com.auth0:java-jwt": [ + "com.auth0.jwt", + "com.auth0.jwt.algorithms", + "com.auth0.jwt.exceptions", + "com.auth0.jwt.impl", + "com.auth0.jwt.interfaces" + ], + "com.fasterxml.jackson.core:jackson-annotations": [ + "com.fasterxml.jackson.annotation" + ], + "com.fasterxml.jackson.core:jackson-core": [ + "com.fasterxml.jackson.core", + "com.fasterxml.jackson.core.async", + "com.fasterxml.jackson.core.base", + "com.fasterxml.jackson.core.exc", + "com.fasterxml.jackson.core.filter", + "com.fasterxml.jackson.core.format", + "com.fasterxml.jackson.core.io", + "com.fasterxml.jackson.core.io.doubleparser", + "com.fasterxml.jackson.core.io.schubfach", + "com.fasterxml.jackson.core.json", + "com.fasterxml.jackson.core.json.async", + "com.fasterxml.jackson.core.sym", + "com.fasterxml.jackson.core.type", + "com.fasterxml.jackson.core.util" + ], + "com.fasterxml.jackson.core:jackson-databind": [ + "com.fasterxml.jackson.databind", + "com.fasterxml.jackson.databind.annotation", + "com.fasterxml.jackson.databind.cfg", + "com.fasterxml.jackson.databind.deser", + "com.fasterxml.jackson.databind.deser.impl", + "com.fasterxml.jackson.databind.deser.std", + "com.fasterxml.jackson.databind.exc", + "com.fasterxml.jackson.databind.ext", + "com.fasterxml.jackson.databind.introspect", + "com.fasterxml.jackson.databind.jdk14", + "com.fasterxml.jackson.databind.json", + "com.fasterxml.jackson.databind.jsonFormatVisitors", + "com.fasterxml.jackson.databind.jsonschema", + "com.fasterxml.jackson.databind.jsontype", + "com.fasterxml.jackson.databind.jsontype.impl", + "com.fasterxml.jackson.databind.module", + "com.fasterxml.jackson.databind.node", + "com.fasterxml.jackson.databind.ser", + "com.fasterxml.jackson.databind.ser.impl", + "com.fasterxml.jackson.databind.ser.std", + "com.fasterxml.jackson.databind.type", + "com.fasterxml.jackson.databind.util", + "com.fasterxml.jackson.databind.util.internal" + ], + "com.fasterxml.jackson.datatype:jackson-datatype-jdk8": [ + "com.fasterxml.jackson.datatype.jdk8" + ], + "com.fasterxml.jackson.datatype:jackson-datatype-jsr310": [ + "com.fasterxml.jackson.datatype.jsr310", + "com.fasterxml.jackson.datatype.jsr310.deser", + "com.fasterxml.jackson.datatype.jsr310.deser.key", + "com.fasterxml.jackson.datatype.jsr310.ser", + "com.fasterxml.jackson.datatype.jsr310.ser.key", + "com.fasterxml.jackson.datatype.jsr310.util" + ], + "com.fasterxml.jackson.module:jackson-module-parameter-names": [ + "com.fasterxml.jackson.module.paramnames" + ], + "com.fasterxml:classmate": [ + "com.fasterxml.classmate", + "com.fasterxml.classmate.members", + "com.fasterxml.classmate.types", + "com.fasterxml.classmate.util" + ], + "com.jayway.jsonpath:json-path": [ + "com.jayway.jsonpath", + "com.jayway.jsonpath.internal", + "com.jayway.jsonpath.internal.filter", + "com.jayway.jsonpath.internal.function", + "com.jayway.jsonpath.internal.function.json", + "com.jayway.jsonpath.internal.function.latebinding", + "com.jayway.jsonpath.internal.function.numeric", + "com.jayway.jsonpath.internal.function.sequence", + "com.jayway.jsonpath.internal.function.text", + "com.jayway.jsonpath.internal.path", + "com.jayway.jsonpath.spi.cache", + "com.jayway.jsonpath.spi.json", + "com.jayway.jsonpath.spi.mapper" + ], + "com.mchange:c3p0": [ + "com.mchange", + "com.mchange.v2", + "com.mchange.v2.c3p0", + "com.mchange.v2.c3p0.cfg", + "com.mchange.v2.c3p0.codegen", + "com.mchange.v2.c3p0.debug", + "com.mchange.v2.c3p0.example", + "com.mchange.v2.c3p0.filter", + "com.mchange.v2.c3p0.impl", + "com.mchange.v2.c3p0.jboss", + "com.mchange.v2.c3p0.management", + "com.mchange.v2.c3p0.mbean", + "com.mchange.v2.c3p0.stmt", + "com.mchange.v2.c3p0.subst", + "com.mchange.v2.c3p0.test", + "com.mchange.v2.c3p0.util", + "com.mchange.v2.resourcepool" + ], + "com.mchange:mchange-commons-java": [ + "com.mchange.io", + "com.mchange.io.impl", + "com.mchange.lang", + "com.mchange.net", + "com.mchange.rmi", + "com.mchange.util", + "com.mchange.util.impl", + "com.mchange.v1.cachedstore", + "com.mchange.v1.db.sql", + "com.mchange.v1.db.sql.schemarep", + "com.mchange.v1.db.sql.xmlpropsschema", + "com.mchange.v1.identicator", + "com.mchange.v1.identicator.test", + "com.mchange.v1.io", + "com.mchange.v1.jvm", + "com.mchange.v1.lang", + "com.mchange.v1.lang.holders", + "com.mchange.v1.util", + "com.mchange.v1.xml", + "com.mchange.v1.xmlprops", + "com.mchange.v2.async", + "com.mchange.v2.async.test", + "com.mchange.v2.beans", + "com.mchange.v2.beans.swing", + "com.mchange.v2.cfg", + "com.mchange.v2.cmdline", + "com.mchange.v2.coalesce", + "com.mchange.v2.codegen", + "com.mchange.v2.codegen.bean", + "com.mchange.v2.codegen.intfc", + "com.mchange.v2.collection", + "com.mchange.v2.csv", + "com.mchange.v2.debug", + "com.mchange.v2.encounter", + "com.mchange.v2.holders", + "com.mchange.v2.io", + "com.mchange.v2.lang", + "com.mchange.v2.lang.reflect", + "com.mchange.v2.lock", + "com.mchange.v2.log", + "com.mchange.v2.log.jdk14logging", + "com.mchange.v2.log.log4j", + "com.mchange.v2.log.log4j2", + "com.mchange.v2.log.slf4j", + "com.mchange.v2.management", + "com.mchange.v2.naming", + "com.mchange.v2.net", + "com.mchange.v2.reflect", + "com.mchange.v2.ser", + "com.mchange.v2.sql", + "com.mchange.v2.sql.filter", + "com.mchange.v2.uid", + "com.mchange.v2.util", + "com.mchange.v3.concurrent", + "com.mchange.v3.decode", + "com.mchange.v3.filecache", + "com.mchange.v3.hocon", + "com.mchange.v3.nio" + ], + "com.vaadin.external.google:android-json": [ + "org.json" + ], + "com.zaxxer:HikariCP": [ + "com.zaxxer.hikari", + "com.zaxxer.hikari.hibernate", + "com.zaxxer.hikari.metrics", + "com.zaxxer.hikari.metrics.dropwizard", + "com.zaxxer.hikari.metrics.micrometer", + "com.zaxxer.hikari.metrics.prometheus", + "com.zaxxer.hikari.pool", + "com.zaxxer.hikari.util" + ], + "com.zaxxer:HikariCP-java7": [ + "com.zaxxer.hikari", + "com.zaxxer.hikari.hibernate", + "com.zaxxer.hikari.metrics", + "com.zaxxer.hikari.metrics.dropwizard", + "com.zaxxer.hikari.metrics.prometheus", + "com.zaxxer.hikari.pool", + "com.zaxxer.hikari.util" + ], + "com.zaxxer:HikariCP:jar:sources": [ + "com.zaxxer.hikari", + "com.zaxxer.hikari.hibernate", + "com.zaxxer.hikari.metrics", + "com.zaxxer.hikari.metrics.dropwizard", + "com.zaxxer.hikari.metrics.micrometer", + "com.zaxxer.hikari.metrics.prometheus", + "com.zaxxer.hikari.pool", + "com.zaxxer.hikari.util" + ], + "commons-beanutils:commons-beanutils": [ + "org.apache.commons.beanutils", + "org.apache.commons.beanutils.converters", + "org.apache.commons.beanutils.expression", + "org.apache.commons.beanutils.locale", + "org.apache.commons.beanutils.locale.converters" + ], + "commons-collections:commons-collections": [ + "org.apache.commons.collections", + "org.apache.commons.collections.bag", + "org.apache.commons.collections.bidimap", + "org.apache.commons.collections.buffer", + "org.apache.commons.collections.collection", + "org.apache.commons.collections.comparators", + "org.apache.commons.collections.functors", + "org.apache.commons.collections.iterators", + "org.apache.commons.collections.keyvalue", + "org.apache.commons.collections.list", + "org.apache.commons.collections.map", + "org.apache.commons.collections.set" + ], + "io.github.classgraph:classgraph": [ + "io.github.classgraph", + "nonapi.io.github.classgraph.classloaderhandler", + "nonapi.io.github.classgraph.classpath", + "nonapi.io.github.classgraph.concurrency", + "nonapi.io.github.classgraph.fastzipfilereader", + "nonapi.io.github.classgraph.fileslice", + "nonapi.io.github.classgraph.fileslice.reader", + "nonapi.io.github.classgraph.json", + "nonapi.io.github.classgraph.recycler", + "nonapi.io.github.classgraph.scanspec", + "nonapi.io.github.classgraph.types", + "nonapi.io.github.classgraph.utils" + ], + "io.micrometer:micrometer-commons": [ + "io.micrometer.common", + "io.micrometer.common.annotation", + "io.micrometer.common.docs", + "io.micrometer.common.lang", + "io.micrometer.common.util", + "io.micrometer.common.util.internal.logging" + ], + "io.micrometer:micrometer-observation": [ + "io.micrometer.observation", + "io.micrometer.observation.annotation", + "io.micrometer.observation.aop", + "io.micrometer.observation.contextpropagation", + "io.micrometer.observation.docs", + "io.micrometer.observation.transport" + ], + "io.springfox:springfox-bean-validators": [ + "springfox.bean.validators.configuration", + "springfox.bean.validators.plugins", + "springfox.bean.validators.plugins.parameter", + "springfox.bean.validators.plugins.schema" + ], + "io.springfox:springfox-boot-starter": [ + "springfox.boot.starter.autoconfigure" + ], + "io.springfox:springfox-core": [ + "springfox.documentation", + "springfox.documentation.annotations", + "springfox.documentation.builders", + "springfox.documentation.common", + "springfox.documentation.schema", + "springfox.documentation.service", + "springfox.documentation.spring.wrapper" + ], + "io.springfox:springfox-data-rest": [ + "springfox.documentation.spring.data.rest", + "springfox.documentation.spring.data.rest.configuration", + "springfox.documentation.spring.data.rest.schema" + ], + "io.springfox:springfox-oas": [ + "springfox.documentation.oas.annotations", + "springfox.documentation.oas.configuration", + "springfox.documentation.oas.mappers", + "springfox.documentation.oas.web" + ], + "io.springfox:springfox-schema": [ + "springfox.documentation.schema", + "springfox.documentation.schema.configuration", + "springfox.documentation.schema.plugins", + "springfox.documentation.schema.property", + "springfox.documentation.schema.property.bean", + "springfox.documentation.schema.property.field" + ], + "io.springfox:springfox-spi": [ + "springfox.documentation.service", + "springfox.documentation.spi", + "springfox.documentation.spi.schema", + "springfox.documentation.spi.schema.contexts", + "springfox.documentation.spi.service", + "springfox.documentation.spi.service.contexts" + ], + "io.springfox:springfox-spring-web": [ + "springfox.documentation.spring.web", + "springfox.documentation.spring.web.json", + "springfox.documentation.spring.web.paths", + "springfox.documentation.spring.web.plugins", + "springfox.documentation.spring.web.readers.operation", + "springfox.documentation.spring.web.readers.parameter", + "springfox.documentation.spring.web.scanners" + ], + "io.springfox:springfox-spring-webflux": [ + "springfox.documentation.spring.web", + "springfox.documentation.spring.web.plugins" + ], + "io.springfox:springfox-spring-webmvc": [ + "springfox.documentation.spring.web", + "springfox.documentation.spring.web.plugins" + ], + "io.springfox:springfox-swagger-common": [ + "springfox.documentation.swagger.annotations", + "springfox.documentation.swagger.common", + "springfox.documentation.swagger.configuration", + "springfox.documentation.swagger.readers.operation", + "springfox.documentation.swagger.readers.parameter", + "springfox.documentation.swagger.schema", + "springfox.documentation.swagger.web" + ], + "io.springfox:springfox-swagger2": [ + "springfox.documentation.swagger2.annotations", + "springfox.documentation.swagger2.configuration", + "springfox.documentation.swagger2.mappers", + "springfox.documentation.swagger2.web" + ], + "io.swagger.core.v3:swagger-annotations": [ + "io.swagger.v3.oas.annotations", + "io.swagger.v3.oas.annotations.callbacks", + "io.swagger.v3.oas.annotations.enums", + "io.swagger.v3.oas.annotations.extensions", + "io.swagger.v3.oas.annotations.headers", + "io.swagger.v3.oas.annotations.info", + "io.swagger.v3.oas.annotations.links", + "io.swagger.v3.oas.annotations.media", + "io.swagger.v3.oas.annotations.parameters", + "io.swagger.v3.oas.annotations.responses", + "io.swagger.v3.oas.annotations.security", + "io.swagger.v3.oas.annotations.servers", + "io.swagger.v3.oas.annotations.tags" + ], + "io.swagger.core.v3:swagger-models": [ + "io.swagger.v3.oas.models", + "io.swagger.v3.oas.models.callbacks", + "io.swagger.v3.oas.models.examples", + "io.swagger.v3.oas.models.headers", + "io.swagger.v3.oas.models.info", + "io.swagger.v3.oas.models.links", + "io.swagger.v3.oas.models.media", + "io.swagger.v3.oas.models.parameters", + "io.swagger.v3.oas.models.responses", + "io.swagger.v3.oas.models.security", + "io.swagger.v3.oas.models.servers", + "io.swagger.v3.oas.models.tags" + ], + "io.swagger:swagger-annotations": [ + "io.swagger.annotations" + ], + "io.swagger:swagger-models": [ + "io.swagger.models", + "io.swagger.models.auth", + "io.swagger.models.parameters", + "io.swagger.models.properties", + "io.swagger.models.refs", + "io.swagger.models.utils" + ], + "jakarta.activation:jakarta.activation-api": [ + "jakarta.activation", + "jakarta.activation.spi" + ], + "jakarta.annotation:jakarta.annotation-api": [ + "jakarta.annotation", + "jakarta.annotation.security", + "jakarta.annotation.sql" + ], + "jakarta.servlet:jakarta.servlet-api": [ + "jakarta.servlet", + "jakarta.servlet.annotation", + "jakarta.servlet.descriptor", + "jakarta.servlet.http" + ], + "jakarta.xml.bind:jakarta.xml.bind-api": [ + "jakarta.xml.bind", + "jakarta.xml.bind.annotation", + "jakarta.xml.bind.annotation.adapters", + "jakarta.xml.bind.attachment", + "jakarta.xml.bind.helpers", + "jakarta.xml.bind.util" + ], + "javax.annotation:javax.annotation-api": [ + "javax.annotation", + "javax.annotation.security", + "javax.annotation.sql" + ], + "net.bytebuddy:byte-buddy": [ + "net.bytebuddy", + "net.bytebuddy.agent.builder", + "net.bytebuddy.asm", + "net.bytebuddy.build", + "net.bytebuddy.description", + "net.bytebuddy.description.annotation", + "net.bytebuddy.description.enumeration", + "net.bytebuddy.description.field", + "net.bytebuddy.description.method", + "net.bytebuddy.description.modifier", + "net.bytebuddy.description.type", + "net.bytebuddy.dynamic", + "net.bytebuddy.dynamic.loading", + "net.bytebuddy.dynamic.scaffold", + "net.bytebuddy.dynamic.scaffold.inline", + "net.bytebuddy.dynamic.scaffold.subclass", + "net.bytebuddy.implementation", + "net.bytebuddy.implementation.attribute", + "net.bytebuddy.implementation.auxiliary", + "net.bytebuddy.implementation.bind", + "net.bytebuddy.implementation.bind.annotation", + "net.bytebuddy.implementation.bytecode", + "net.bytebuddy.implementation.bytecode.assign", + "net.bytebuddy.implementation.bytecode.assign.primitive", + "net.bytebuddy.implementation.bytecode.assign.reference", + "net.bytebuddy.implementation.bytecode.collection", + "net.bytebuddy.implementation.bytecode.constant", + "net.bytebuddy.implementation.bytecode.member", + "net.bytebuddy.jar.asm", + "net.bytebuddy.jar.asm.commons", + "net.bytebuddy.jar.asm.signature", + "net.bytebuddy.matcher", + "net.bytebuddy.pool", + "net.bytebuddy.utility", + "net.bytebuddy.utility.dispatcher", + "net.bytebuddy.utility.nullability", + "net.bytebuddy.utility.privilege", + "net.bytebuddy.utility.visitor" + ], + "net.bytebuddy:byte-buddy-agent": [ + "net.bytebuddy.agent", + "net.bytebuddy.agent.utility.nullability" + ], + "net.bytebuddy:byte-buddy:jar:sources": [ + "net.bytebuddy.build" + ], + "net.minidev:accessors-smart": [ + "net.minidev.asm", + "net.minidev.asm.ex" + ], + "net.minidev:json-smart": [ + "net.minidev.json", + "net.minidev.json.annotate", + "net.minidev.json.parser", + "net.minidev.json.reader", + "net.minidev.json.writer" + ], + "org.apache.commons:commons-compress": [ + "org.apache.commons.compress", + "org.apache.commons.compress.archivers", + "org.apache.commons.compress.archivers.ar", + "org.apache.commons.compress.archivers.arj", + "org.apache.commons.compress.archivers.cpio", + "org.apache.commons.compress.archivers.dump", + "org.apache.commons.compress.archivers.examples", + "org.apache.commons.compress.archivers.jar", + "org.apache.commons.compress.archivers.sevenz", + "org.apache.commons.compress.archivers.tar", + "org.apache.commons.compress.archivers.zip", + "org.apache.commons.compress.changes", + "org.apache.commons.compress.compressors", + "org.apache.commons.compress.compressors.brotli", + "org.apache.commons.compress.compressors.bzip2", + "org.apache.commons.compress.compressors.deflate", + "org.apache.commons.compress.compressors.deflate64", + "org.apache.commons.compress.compressors.gzip", + "org.apache.commons.compress.compressors.lz4", + "org.apache.commons.compress.compressors.lz77support", + "org.apache.commons.compress.compressors.lzma", + "org.apache.commons.compress.compressors.lzw", + "org.apache.commons.compress.compressors.pack200", + "org.apache.commons.compress.compressors.snappy", + "org.apache.commons.compress.compressors.xz", + "org.apache.commons.compress.compressors.z", + "org.apache.commons.compress.compressors.zstandard", + "org.apache.commons.compress.harmony", + "org.apache.commons.compress.harmony.archive.internal.nls", + "org.apache.commons.compress.harmony.pack200", + "org.apache.commons.compress.harmony.unpack200", + "org.apache.commons.compress.harmony.unpack200.bytecode", + "org.apache.commons.compress.harmony.unpack200.bytecode.forms", + "org.apache.commons.compress.java.util.jar", + "org.apache.commons.compress.parallel", + "org.apache.commons.compress.utils" + ], + "org.apache.logging.log4j:log4j-api": [ + "org.apache.logging.log4j", + "org.apache.logging.log4j.internal", + "org.apache.logging.log4j.message", + "org.apache.logging.log4j.simple", + "org.apache.logging.log4j.spi", + "org.apache.logging.log4j.status", + "org.apache.logging.log4j.util", + "org.apache.logging.log4j.util.internal" + ], + "org.apache.logging.log4j:log4j-to-slf4j": [ + "org.apache.logging.slf4j" + ], + "org.apache.shiro:shiro-cache": [ + "org.apache.shiro.cache" + ], + "org.apache.shiro:shiro-config-core": [ + "org.apache.shiro.config" + ], + "org.apache.shiro:shiro-config-ogdl": [ + "org.apache.shiro.config", + "org.apache.shiro.config.event" + ], + "org.apache.shiro:shiro-core": [ + "org.apache.shiro", + "org.apache.shiro.aop", + "org.apache.shiro.authc", + "org.apache.shiro.authc.credential", + "org.apache.shiro.authc.pam", + "org.apache.shiro.authz", + "org.apache.shiro.authz.annotation", + "org.apache.shiro.authz.aop", + "org.apache.shiro.authz.permission", + "org.apache.shiro.cache", + "org.apache.shiro.codec", + "org.apache.shiro.concurrent", + "org.apache.shiro.config", + "org.apache.shiro.config.event", + "org.apache.shiro.crypto", + "org.apache.shiro.crypto.hash", + "org.apache.shiro.crypto.hash.format", + "org.apache.shiro.dao", + "org.apache.shiro.env", + "org.apache.shiro.event", + "org.apache.shiro.event.support", + "org.apache.shiro.io", + "org.apache.shiro.jndi", + "org.apache.shiro.ldap", + "org.apache.shiro.mgt", + "org.apache.shiro.realm", + "org.apache.shiro.realm.activedirectory", + "org.apache.shiro.realm.jdbc", + "org.apache.shiro.realm.jndi", + "org.apache.shiro.realm.ldap", + "org.apache.shiro.realm.text", + "org.apache.shiro.session", + "org.apache.shiro.session.mgt", + "org.apache.shiro.session.mgt.eis", + "org.apache.shiro.subject", + "org.apache.shiro.subject.support", + "org.apache.shiro.util" + ], + "org.apache.shiro:shiro-core:jar:jakarta": [ + "org.apache.shiro", + "org.apache.shiro.aop", + "org.apache.shiro.authc", + "org.apache.shiro.authc.credential", + "org.apache.shiro.authc.pam", + "org.apache.shiro.authz", + "org.apache.shiro.authz.annotation", + "org.apache.shiro.authz.aop", + "org.apache.shiro.authz.permission", + "org.apache.shiro.cache", + "org.apache.shiro.codec", + "org.apache.shiro.concurrent", + "org.apache.shiro.config", + "org.apache.shiro.config.event", + "org.apache.shiro.crypto", + "org.apache.shiro.crypto.hash", + "org.apache.shiro.crypto.hash.format", + "org.apache.shiro.dao", + "org.apache.shiro.env", + "org.apache.shiro.event", + "org.apache.shiro.event.support", + "org.apache.shiro.io", + "org.apache.shiro.jndi", + "org.apache.shiro.ldap", + "org.apache.shiro.mgt", + "org.apache.shiro.realm", + "org.apache.shiro.realm.activedirectory", + "org.apache.shiro.realm.jdbc", + "org.apache.shiro.realm.jndi", + "org.apache.shiro.realm.ldap", + "org.apache.shiro.realm.text", + "org.apache.shiro.session", + "org.apache.shiro.session.mgt", + "org.apache.shiro.session.mgt.eis", + "org.apache.shiro.subject", + "org.apache.shiro.subject.support", + "org.apache.shiro.util" + ], + "org.apache.shiro:shiro-crypto-cipher": [ + "org.apache.shiro.crypto" + ], + "org.apache.shiro:shiro-crypto-core": [ + "org.apache.shiro.crypto" + ], + "org.apache.shiro:shiro-crypto-hash": [ + "org.apache.shiro.crypto.hash", + "org.apache.shiro.crypto.hash.format" + ], + "org.apache.shiro:shiro-event": [ + "org.apache.shiro.event", + "org.apache.shiro.event.support" + ], + "org.apache.shiro:shiro-lang": [ + "org.apache.shiro", + "org.apache.shiro.codec", + "org.apache.shiro.io", + "org.apache.shiro.util" + ], + "org.apache.shiro:shiro-spring:jar:jakarta": [ + "org.apache.shiro.spring", + "org.apache.shiro.spring.aop", + "org.apache.shiro.spring.config", + "org.apache.shiro.spring.remoting", + "org.apache.shiro.spring.security.interceptor", + "org.apache.shiro.spring.web", + "org.apache.shiro.spring.web.config" + ], + "org.apache.shiro:shiro-web:jar:jakarta": [ + "org.apache.shiro.web", + "org.apache.shiro.web.config", + "org.apache.shiro.web.env", + "org.apache.shiro.web.filter", + "org.apache.shiro.web.filter.authc", + "org.apache.shiro.web.filter.authz", + "org.apache.shiro.web.filter.mgt", + "org.apache.shiro.web.filter.session", + "org.apache.shiro.web.mgt", + "org.apache.shiro.web.servlet", + "org.apache.shiro.web.session", + "org.apache.shiro.web.session.mgt", + "org.apache.shiro.web.subject", + "org.apache.shiro.web.subject.support", + "org.apache.shiro.web.tags", + "org.apache.shiro.web.util" + ], + "org.apache.tomcat.embed:tomcat-embed-core": [ + "jakarta.security.auth.message", + "jakarta.security.auth.message.callback", + "jakarta.security.auth.message.config", + "jakarta.security.auth.message.module", + "jakarta.servlet", + "jakarta.servlet.annotation", + "jakarta.servlet.descriptor", + "jakarta.servlet.http", + "org.apache.catalina", + "org.apache.catalina.authenticator", + "org.apache.catalina.authenticator.jaspic", + "org.apache.catalina.connector", + "org.apache.catalina.core", + "org.apache.catalina.deploy", + "org.apache.catalina.filters", + "org.apache.catalina.loader", + "org.apache.catalina.manager", + "org.apache.catalina.manager.host", + "org.apache.catalina.manager.util", + "org.apache.catalina.mapper", + "org.apache.catalina.mbeans", + "org.apache.catalina.realm", + "org.apache.catalina.security", + "org.apache.catalina.servlets", + "org.apache.catalina.session", + "org.apache.catalina.startup", + "org.apache.catalina.users", + "org.apache.catalina.util", + "org.apache.catalina.valves", + "org.apache.catalina.valves.rewrite", + "org.apache.catalina.webresources", + "org.apache.catalina.webresources.war", + "org.apache.coyote", + "org.apache.coyote.ajp", + "org.apache.coyote.http11", + "org.apache.coyote.http11.filters", + "org.apache.coyote.http11.upgrade", + "org.apache.coyote.http2", + "org.apache.juli", + "org.apache.juli.logging", + "org.apache.naming", + "org.apache.naming.factory", + "org.apache.naming.factory.webservices", + "org.apache.naming.java", + "org.apache.tomcat", + "org.apache.tomcat.jni", + "org.apache.tomcat.util", + "org.apache.tomcat.util.bcel", + "org.apache.tomcat.util.bcel.classfile", + "org.apache.tomcat.util.buf", + "org.apache.tomcat.util.codec.binary", + "org.apache.tomcat.util.collections", + "org.apache.tomcat.util.compat", + "org.apache.tomcat.util.descriptor", + "org.apache.tomcat.util.descriptor.tagplugin", + "org.apache.tomcat.util.descriptor.web", + "org.apache.tomcat.util.digester", + "org.apache.tomcat.util.file", + "org.apache.tomcat.util.http", + "org.apache.tomcat.util.http.fileupload", + "org.apache.tomcat.util.http.fileupload.disk", + "org.apache.tomcat.util.http.fileupload.impl", + "org.apache.tomcat.util.http.fileupload.servlet", + "org.apache.tomcat.util.http.fileupload.util", + "org.apache.tomcat.util.http.fileupload.util.mime", + "org.apache.tomcat.util.http.parser", + "org.apache.tomcat.util.json", + "org.apache.tomcat.util.log", + "org.apache.tomcat.util.modeler", + "org.apache.tomcat.util.modeler.modules", + "org.apache.tomcat.util.net", + "org.apache.tomcat.util.net.jsse", + "org.apache.tomcat.util.net.openssl", + "org.apache.tomcat.util.net.openssl.ciphers", + "org.apache.tomcat.util.res", + "org.apache.tomcat.util.scan", + "org.apache.tomcat.util.security", + "org.apache.tomcat.util.threads" + ], + "org.apache.tomcat.embed:tomcat-embed-el": [ + "jakarta.el", + "org.apache.el", + "org.apache.el.lang", + "org.apache.el.parser", + "org.apache.el.stream", + "org.apache.el.util" + ], + "org.apache.tomcat.embed:tomcat-embed-websocket": [ + "jakarta.websocket", + "jakarta.websocket.server", + "org.apache.tomcat.websocket", + "org.apache.tomcat.websocket.pojo", + "org.apache.tomcat.websocket.server" + ], + "org.apiguardian:apiguardian-api": [ + "org.apiguardian.api" + ], + "org.aspectj:aspectjweaver": [ + "aj.org.objectweb.asm", + "aj.org.objectweb.asm.signature", + "org.aspectj.apache.bcel", + "org.aspectj.apache.bcel.classfile", + "org.aspectj.apache.bcel.classfile.annotation", + "org.aspectj.apache.bcel.generic", + "org.aspectj.apache.bcel.util", + "org.aspectj.asm", + "org.aspectj.asm.internal", + "org.aspectj.bridge", + "org.aspectj.bridge.context", + "org.aspectj.internal.lang.annotation", + "org.aspectj.internal.lang.reflect", + "org.aspectj.lang", + "org.aspectj.lang.annotation", + "org.aspectj.lang.annotation.control", + "org.aspectj.lang.internal.lang", + "org.aspectj.lang.reflect", + "org.aspectj.runtime", + "org.aspectj.runtime.internal", + "org.aspectj.runtime.internal.cflowstack", + "org.aspectj.runtime.reflect", + "org.aspectj.util", + "org.aspectj.weaver", + "org.aspectj.weaver.ast", + "org.aspectj.weaver.bcel", + "org.aspectj.weaver.bcel.asm", + "org.aspectj.weaver.internal.tools", + "org.aspectj.weaver.loadtime", + "org.aspectj.weaver.loadtime.definition", + "org.aspectj.weaver.ltw", + "org.aspectj.weaver.model", + "org.aspectj.weaver.patterns", + "org.aspectj.weaver.reflect", + "org.aspectj.weaver.tools", + "org.aspectj.weaver.tools.cache" + ], + "org.assertj:assertj-core": [ + "org.assertj.core.annotations", + "org.assertj.core.api", + "org.assertj.core.api.exception", + "org.assertj.core.api.filter", + "org.assertj.core.api.iterable", + "org.assertj.core.api.junit.jupiter", + "org.assertj.core.api.recursive", + "org.assertj.core.api.recursive.assertion", + "org.assertj.core.api.recursive.comparison", + "org.assertj.core.condition", + "org.assertj.core.configuration", + "org.assertj.core.data", + "org.assertj.core.description", + "org.assertj.core.error", + "org.assertj.core.error.array2d", + "org.assertj.core.error.future", + "org.assertj.core.error.uri", + "org.assertj.core.extractor", + "org.assertj.core.groups", + "org.assertj.core.internal", + "org.assertj.core.matcher", + "org.assertj.core.presentation", + "org.assertj.core.util", + "org.assertj.core.util.diff", + "org.assertj.core.util.diff.myers", + "org.assertj.core.util.introspection", + "org.assertj.core.util.xml" + ], + "org.awaitility:awaitility": [ + "org.awaitility", + "org.awaitility.classpath", + "org.awaitility.constraint", + "org.awaitility.core", + "org.awaitility.pollinterval", + "org.awaitility.reflect", + "org.awaitility.reflect.exception", + "org.awaitility.spi" + ], + "org.checkerframework:checker-qual": [ + "org.checkerframework.checker.compilermsgs.qual", + "org.checkerframework.checker.fenum.qual", + "org.checkerframework.checker.formatter", + "org.checkerframework.checker.formatter.qual", + "org.checkerframework.checker.guieffect.qual", + "org.checkerframework.checker.i18n.qual", + "org.checkerframework.checker.i18nformatter", + "org.checkerframework.checker.i18nformatter.qual", + "org.checkerframework.checker.index.qual", + "org.checkerframework.checker.initialization.qual", + "org.checkerframework.checker.interning.qual", + "org.checkerframework.checker.lock.qual", + "org.checkerframework.checker.nullness", + "org.checkerframework.checker.nullness.qual", + "org.checkerframework.checker.optional.qual", + "org.checkerframework.checker.propkey.qual", + "org.checkerframework.checker.regex", + "org.checkerframework.checker.regex.qual", + "org.checkerframework.checker.signature.qual", + "org.checkerframework.checker.signedness", + "org.checkerframework.checker.signedness.qual", + "org.checkerframework.checker.tainting.qual", + "org.checkerframework.checker.units", + "org.checkerframework.checker.units.qual", + "org.checkerframework.common.aliasing.qual", + "org.checkerframework.common.reflection.qual", + "org.checkerframework.common.returnsreceiver.qual", + "org.checkerframework.common.subtyping.qual", + "org.checkerframework.common.util.report.qual", + "org.checkerframework.common.value.qual", + "org.checkerframework.dataflow.qual", + "org.checkerframework.framework.qual", + "org.checkerframework.framework.util" + ], + "org.hamcrest:hamcrest": [ + "org.hamcrest", + "org.hamcrest.beans", + "org.hamcrest.collection", + "org.hamcrest.comparator", + "org.hamcrest.core", + "org.hamcrest.internal", + "org.hamcrest.io", + "org.hamcrest.number", + "org.hamcrest.object", + "org.hamcrest.text", + "org.hamcrest.xml" + ], + "org.junit.jupiter:junit-jupiter-api": [ + "org.junit.jupiter.api", + "org.junit.jupiter.api.condition", + "org.junit.jupiter.api.extension", + "org.junit.jupiter.api.extension.support", + "org.junit.jupiter.api.function", + "org.junit.jupiter.api.io", + "org.junit.jupiter.api.parallel" + ], + "org.junit.jupiter:junit-jupiter-engine": [ + "org.junit.jupiter.engine", + "org.junit.jupiter.engine.config", + "org.junit.jupiter.engine.descriptor", + "org.junit.jupiter.engine.discovery", + "org.junit.jupiter.engine.discovery.predicates", + "org.junit.jupiter.engine.execution", + "org.junit.jupiter.engine.extension", + "org.junit.jupiter.engine.support" + ], + "org.junit.jupiter:junit-jupiter-params": [ + "org.junit.jupiter.params", + "org.junit.jupiter.params.aggregator", + "org.junit.jupiter.params.converter", + "org.junit.jupiter.params.provider", + "org.junit.jupiter.params.shadow.com.univocity.parsers.annotations", + "org.junit.jupiter.params.shadow.com.univocity.parsers.annotations.helpers", + "org.junit.jupiter.params.shadow.com.univocity.parsers.common", + "org.junit.jupiter.params.shadow.com.univocity.parsers.common.beans", + "org.junit.jupiter.params.shadow.com.univocity.parsers.common.fields", + "org.junit.jupiter.params.shadow.com.univocity.parsers.common.input", + "org.junit.jupiter.params.shadow.com.univocity.parsers.common.input.concurrent", + "org.junit.jupiter.params.shadow.com.univocity.parsers.common.iterators", + "org.junit.jupiter.params.shadow.com.univocity.parsers.common.processor", + "org.junit.jupiter.params.shadow.com.univocity.parsers.common.processor.core", + "org.junit.jupiter.params.shadow.com.univocity.parsers.common.record", + "org.junit.jupiter.params.shadow.com.univocity.parsers.common.routine", + "org.junit.jupiter.params.shadow.com.univocity.parsers.conversions", + "org.junit.jupiter.params.shadow.com.univocity.parsers.csv", + "org.junit.jupiter.params.shadow.com.univocity.parsers.fixed", + "org.junit.jupiter.params.shadow.com.univocity.parsers.tsv", + "org.junit.jupiter.params.support" + ], + "org.junit.platform:junit-platform-commons": [ + "org.junit.platform.commons", + "org.junit.platform.commons.annotation", + "org.junit.platform.commons.function", + "org.junit.platform.commons.logging", + "org.junit.platform.commons.support", + "org.junit.platform.commons.util" + ], + "org.junit.platform:junit-platform-engine": [ + "org.junit.platform.engine", + "org.junit.platform.engine.discovery", + "org.junit.platform.engine.reporting", + "org.junit.platform.engine.support.config", + "org.junit.platform.engine.support.descriptor", + "org.junit.platform.engine.support.discovery", + "org.junit.platform.engine.support.filter", + "org.junit.platform.engine.support.hierarchical", + "org.junit.platform.engine.support.store" + ], + "org.mapstruct:mapstruct": [ + "org.mapstruct", + "org.mapstruct.factory", + "org.mapstruct.util" + ], + "org.mockito:mockito-core": [ + "org.mockito", + "org.mockito.codegen", + "org.mockito.configuration", + "org.mockito.creation.instance", + "org.mockito.exceptions.base", + "org.mockito.exceptions.misusing", + "org.mockito.exceptions.stacktrace", + "org.mockito.exceptions.verification", + "org.mockito.exceptions.verification.junit", + "org.mockito.exceptions.verification.opentest4j", + "org.mockito.hamcrest", + "org.mockito.internal", + "org.mockito.internal.configuration", + "org.mockito.internal.configuration.injection", + "org.mockito.internal.configuration.injection.filter", + "org.mockito.internal.configuration.injection.scanner", + "org.mockito.internal.configuration.plugins", + "org.mockito.internal.creation", + "org.mockito.internal.creation.bytebuddy", + "org.mockito.internal.creation.instance", + "org.mockito.internal.creation.proxy", + "org.mockito.internal.creation.settings", + "org.mockito.internal.creation.util", + "org.mockito.internal.debugging", + "org.mockito.internal.exceptions", + "org.mockito.internal.exceptions.stacktrace", + "org.mockito.internal.exceptions.util", + "org.mockito.internal.framework", + "org.mockito.internal.hamcrest", + "org.mockito.internal.handler", + "org.mockito.internal.invocation", + "org.mockito.internal.invocation.finder", + "org.mockito.internal.invocation.mockref", + "org.mockito.internal.junit", + "org.mockito.internal.listeners", + "org.mockito.internal.matchers", + "org.mockito.internal.matchers.apachecommons", + "org.mockito.internal.matchers.text", + "org.mockito.internal.progress", + "org.mockito.internal.reporting", + "org.mockito.internal.runners", + "org.mockito.internal.runners.util", + "org.mockito.internal.session", + "org.mockito.internal.stubbing", + "org.mockito.internal.stubbing.answers", + "org.mockito.internal.stubbing.defaultanswers", + "org.mockito.internal.util", + "org.mockito.internal.util.collections", + "org.mockito.internal.util.concurrent", + "org.mockito.internal.util.io", + "org.mockito.internal.util.reflection", + "org.mockito.internal.verification", + "org.mockito.internal.verification.api", + "org.mockito.internal.verification.argumentmatching", + "org.mockito.internal.verification.checkers", + "org.mockito.invocation", + "org.mockito.junit", + "org.mockito.listeners", + "org.mockito.mock", + "org.mockito.plugins", + "org.mockito.quality", + "org.mockito.session", + "org.mockito.stubbing", + "org.mockito.verification" + ], + "org.mockito:mockito-junit-jupiter": [ + "org.mockito.junit.jupiter", + "org.mockito.junit.jupiter.resolver" + ], + "org.objenesis:objenesis": [ + "org.objenesis", + "org.objenesis.instantiator", + "org.objenesis.instantiator.android", + "org.objenesis.instantiator.annotations", + "org.objenesis.instantiator.basic", + "org.objenesis.instantiator.gcj", + "org.objenesis.instantiator.perc", + "org.objenesis.instantiator.sun", + "org.objenesis.instantiator.util", + "org.objenesis.strategy" + ], + "org.opentest4j:opentest4j": [ + "org.opentest4j" + ], + "org.ow2.asm:asm": [ + "org.objectweb.asm", + "org.objectweb.asm.signature" + ], + "org.owasp.encoder:encoder": [ + "org.owasp.encoder" + ], + "org.postgresql:postgresql": [ + "org.postgresql", + "org.postgresql.copy", + "org.postgresql.core", + "org.postgresql.core.v3", + "org.postgresql.core.v3.adaptivefetch", + "org.postgresql.core.v3.replication", + "org.postgresql.ds", + "org.postgresql.ds.common", + "org.postgresql.fastpath", + "org.postgresql.geometric", + "org.postgresql.gss", + "org.postgresql.hostchooser", + "org.postgresql.jdbc", + "org.postgresql.jdbc2", + "org.postgresql.jdbc2.optional", + "org.postgresql.jdbc3", + "org.postgresql.jre7.sasl", + "org.postgresql.largeobject", + "org.postgresql.osgi", + "org.postgresql.plugin", + "org.postgresql.replication", + "org.postgresql.replication.fluent", + "org.postgresql.replication.fluent.logical", + "org.postgresql.replication.fluent.physical", + "org.postgresql.shaded.com.ongres.saslprep", + "org.postgresql.shaded.com.ongres.scram.client", + "org.postgresql.shaded.com.ongres.scram.common", + "org.postgresql.shaded.com.ongres.scram.common.bouncycastle.base64", + "org.postgresql.shaded.com.ongres.scram.common.bouncycastle.pbkdf2", + "org.postgresql.shaded.com.ongres.scram.common.exception", + "org.postgresql.shaded.com.ongres.scram.common.gssapi", + "org.postgresql.shaded.com.ongres.scram.common.message", + "org.postgresql.shaded.com.ongres.scram.common.stringprep", + "org.postgresql.shaded.com.ongres.scram.common.util", + "org.postgresql.shaded.com.ongres.stringprep", + "org.postgresql.ssl", + "org.postgresql.ssl.jdbc4", + "org.postgresql.sspi", + "org.postgresql.translation", + "org.postgresql.util", + "org.postgresql.util.internal", + "org.postgresql.xa", + "org.postgresql.xml" + ], + "org.quartz-scheduler:quartz": [ + "org.quartz", + "org.quartz.commonj", + "org.quartz.core", + "org.quartz.core.jmx", + "org.quartz.ee.jmx.jboss", + "org.quartz.ee.jta", + "org.quartz.ee.servlet", + "org.quartz.helpers", + "org.quartz.impl", + "org.quartz.impl.calendar", + "org.quartz.impl.jdbcjobstore", + "org.quartz.impl.jdbcjobstore.oracle", + "org.quartz.impl.jdbcjobstore.oracle.weblogic", + "org.quartz.impl.matchers", + "org.quartz.impl.triggers", + "org.quartz.listeners", + "org.quartz.management", + "org.quartz.plugins", + "org.quartz.plugins.history", + "org.quartz.plugins.interrupt", + "org.quartz.plugins.management", + "org.quartz.plugins.xml", + "org.quartz.simpl", + "org.quartz.spi", + "org.quartz.utils", + "org.quartz.utils.counter", + "org.quartz.utils.counter.sampled", + "org.quartz.utils.weblogic", + "org.quartz.xml", + "org.terracotta.quartz", + "org.terracotta.quartz.collections", + "org.terracotta.quartz.wrappers" + ], + "org.skyscreamer:jsonassert": [ + "org.json", + "org.skyscreamer.jsonassert", + "org.skyscreamer.jsonassert.comparator" + ], + "org.slf4j:jul-to-slf4j": [ + "org.slf4j.bridge" + ], + "org.slf4j:slf4j-api": [ + "org.slf4j", + "org.slf4j.event", + "org.slf4j.helpers", + "org.slf4j.spi" + ], + "org.springframework.boot:spring-boot": [ + "org.springframework.boot", + "org.springframework.boot.admin", + "org.springframework.boot.ansi", + "org.springframework.boot.availability", + "org.springframework.boot.builder", + "org.springframework.boot.cloud", + "org.springframework.boot.context", + "org.springframework.boot.context.annotation", + "org.springframework.boot.context.config", + "org.springframework.boot.context.event", + "org.springframework.boot.context.logging", + "org.springframework.boot.context.metrics.buffering", + "org.springframework.boot.context.properties", + "org.springframework.boot.context.properties.bind", + "org.springframework.boot.context.properties.bind.handler", + "org.springframework.boot.context.properties.bind.validation", + "org.springframework.boot.context.properties.source", + "org.springframework.boot.convert", + "org.springframework.boot.diagnostics", + "org.springframework.boot.diagnostics.analyzer", + "org.springframework.boot.env", + "org.springframework.boot.flyway", + "org.springframework.boot.info", + "org.springframework.boot.jackson", + "org.springframework.boot.jdbc", + "org.springframework.boot.jdbc.init", + "org.springframework.boot.jdbc.metadata", + "org.springframework.boot.jms", + "org.springframework.boot.jooq", + "org.springframework.boot.json", + "org.springframework.boot.liquibase", + "org.springframework.boot.logging", + "org.springframework.boot.logging.java", + "org.springframework.boot.logging.log4j2", + "org.springframework.boot.logging.logback", + "org.springframework.boot.origin", + "org.springframework.boot.orm.jpa", + "org.springframework.boot.orm.jpa.hibernate", + "org.springframework.boot.r2dbc", + "org.springframework.boot.r2dbc.init", + "org.springframework.boot.reactor", + "org.springframework.boot.rsocket.context", + "org.springframework.boot.rsocket.messaging", + "org.springframework.boot.rsocket.netty", + "org.springframework.boot.rsocket.server", + "org.springframework.boot.security.reactive", + "org.springframework.boot.security.servlet", + "org.springframework.boot.sql.init", + "org.springframework.boot.sql.init.dependency", + "org.springframework.boot.ssl", + "org.springframework.boot.ssl.jks", + "org.springframework.boot.ssl.pem", + "org.springframework.boot.system", + "org.springframework.boot.task", + "org.springframework.boot.type.classreading", + "org.springframework.boot.util", + "org.springframework.boot.validation", + "org.springframework.boot.validation.beanvalidation", + "org.springframework.boot.web.client", + "org.springframework.boot.web.codec", + "org.springframework.boot.web.context", + "org.springframework.boot.web.embedded.jetty", + "org.springframework.boot.web.embedded.netty", + "org.springframework.boot.web.embedded.tomcat", + "org.springframework.boot.web.embedded.undertow", + "org.springframework.boot.web.error", + "org.springframework.boot.web.reactive.context", + "org.springframework.boot.web.reactive.error", + "org.springframework.boot.web.reactive.filter", + "org.springframework.boot.web.reactive.function.client", + "org.springframework.boot.web.reactive.result.view", + "org.springframework.boot.web.reactive.server", + "org.springframework.boot.web.server", + "org.springframework.boot.web.servlet", + "org.springframework.boot.web.servlet.context", + "org.springframework.boot.web.servlet.error", + "org.springframework.boot.web.servlet.filter", + "org.springframework.boot.web.servlet.server", + "org.springframework.boot.web.servlet.support", + "org.springframework.boot.web.servlet.view", + "org.springframework.boot.webservices.client" + ], + "org.springframework.boot:spring-boot-autoconfigure": [ + "org.springframework.boot.autoconfigure", + "org.springframework.boot.autoconfigure.admin", + "org.springframework.boot.autoconfigure.amqp", + "org.springframework.boot.autoconfigure.aop", + "org.springframework.boot.autoconfigure.availability", + "org.springframework.boot.autoconfigure.batch", + "org.springframework.boot.autoconfigure.cache", + "org.springframework.boot.autoconfigure.cassandra", + "org.springframework.boot.autoconfigure.codec", + "org.springframework.boot.autoconfigure.condition", + "org.springframework.boot.autoconfigure.context", + "org.springframework.boot.autoconfigure.couchbase", + "org.springframework.boot.autoconfigure.dao", + "org.springframework.boot.autoconfigure.data", + "org.springframework.boot.autoconfigure.data.cassandra", + "org.springframework.boot.autoconfigure.data.couchbase", + "org.springframework.boot.autoconfigure.data.elasticsearch", + "org.springframework.boot.autoconfigure.data.jdbc", + "org.springframework.boot.autoconfigure.data.jpa", + "org.springframework.boot.autoconfigure.data.ldap", + "org.springframework.boot.autoconfigure.data.mongo", + "org.springframework.boot.autoconfigure.data.neo4j", + "org.springframework.boot.autoconfigure.data.r2dbc", + "org.springframework.boot.autoconfigure.data.redis", + "org.springframework.boot.autoconfigure.data.rest", + "org.springframework.boot.autoconfigure.data.web", + "org.springframework.boot.autoconfigure.diagnostics.analyzer", + "org.springframework.boot.autoconfigure.domain", + "org.springframework.boot.autoconfigure.elasticsearch", + "org.springframework.boot.autoconfigure.flyway", + "org.springframework.boot.autoconfigure.freemarker", + "org.springframework.boot.autoconfigure.graphql", + "org.springframework.boot.autoconfigure.graphql.data", + "org.springframework.boot.autoconfigure.graphql.reactive", + "org.springframework.boot.autoconfigure.graphql.rsocket", + "org.springframework.boot.autoconfigure.graphql.security", + "org.springframework.boot.autoconfigure.graphql.servlet", + "org.springframework.boot.autoconfigure.groovy.template", + "org.springframework.boot.autoconfigure.gson", + "org.springframework.boot.autoconfigure.h2", + "org.springframework.boot.autoconfigure.hateoas", + "org.springframework.boot.autoconfigure.hazelcast", + "org.springframework.boot.autoconfigure.http", + "org.springframework.boot.autoconfigure.http.codec", + "org.springframework.boot.autoconfigure.influx", + "org.springframework.boot.autoconfigure.info", + "org.springframework.boot.autoconfigure.integration", + "org.springframework.boot.autoconfigure.jackson", + "org.springframework.boot.autoconfigure.jdbc", + "org.springframework.boot.autoconfigure.jdbc.metadata", + "org.springframework.boot.autoconfigure.jersey", + "org.springframework.boot.autoconfigure.jms", + "org.springframework.boot.autoconfigure.jms.activemq", + "org.springframework.boot.autoconfigure.jms.artemis", + "org.springframework.boot.autoconfigure.jmx", + "org.springframework.boot.autoconfigure.jooq", + "org.springframework.boot.autoconfigure.jsonb", + "org.springframework.boot.autoconfigure.kafka", + "org.springframework.boot.autoconfigure.ldap", + "org.springframework.boot.autoconfigure.ldap.embedded", + "org.springframework.boot.autoconfigure.liquibase", + "org.springframework.boot.autoconfigure.logging", + "org.springframework.boot.autoconfigure.mail", + "org.springframework.boot.autoconfigure.mongo", + "org.springframework.boot.autoconfigure.mustache", + "org.springframework.boot.autoconfigure.neo4j", + "org.springframework.boot.autoconfigure.netty", + "org.springframework.boot.autoconfigure.orm.jpa", + "org.springframework.boot.autoconfigure.pulsar", + "org.springframework.boot.autoconfigure.quartz", + "org.springframework.boot.autoconfigure.r2dbc", + "org.springframework.boot.autoconfigure.reactor", + "org.springframework.boot.autoconfigure.reactor.netty", + "org.springframework.boot.autoconfigure.rsocket", + "org.springframework.boot.autoconfigure.security", + "org.springframework.boot.autoconfigure.security.oauth2.client", + "org.springframework.boot.autoconfigure.security.oauth2.client.reactive", + "org.springframework.boot.autoconfigure.security.oauth2.client.servlet", + "org.springframework.boot.autoconfigure.security.oauth2.resource", + "org.springframework.boot.autoconfigure.security.oauth2.resource.reactive", + "org.springframework.boot.autoconfigure.security.oauth2.resource.servlet", + "org.springframework.boot.autoconfigure.security.oauth2.server.servlet", + "org.springframework.boot.autoconfigure.security.reactive", + "org.springframework.boot.autoconfigure.security.rsocket", + "org.springframework.boot.autoconfigure.security.saml2", + "org.springframework.boot.autoconfigure.security.servlet", + "org.springframework.boot.autoconfigure.sendgrid", + "org.springframework.boot.autoconfigure.service.connection", + "org.springframework.boot.autoconfigure.session", + "org.springframework.boot.autoconfigure.sql.init", + "org.springframework.boot.autoconfigure.ssl", + "org.springframework.boot.autoconfigure.task", + "org.springframework.boot.autoconfigure.template", + "org.springframework.boot.autoconfigure.thread", + "org.springframework.boot.autoconfigure.thymeleaf", + "org.springframework.boot.autoconfigure.transaction", + "org.springframework.boot.autoconfigure.transaction.jta", + "org.springframework.boot.autoconfigure.validation", + "org.springframework.boot.autoconfigure.web", + "org.springframework.boot.autoconfigure.web.client", + "org.springframework.boot.autoconfigure.web.embedded", + "org.springframework.boot.autoconfigure.web.format", + "org.springframework.boot.autoconfigure.web.reactive", + "org.springframework.boot.autoconfigure.web.reactive.error", + "org.springframework.boot.autoconfigure.web.reactive.function.client", + "org.springframework.boot.autoconfigure.web.servlet", + "org.springframework.boot.autoconfigure.web.servlet.error", + "org.springframework.boot.autoconfigure.webservices", + "org.springframework.boot.autoconfigure.webservices.client", + "org.springframework.boot.autoconfigure.websocket.reactive", + "org.springframework.boot.autoconfigure.websocket.servlet" + ], + "org.springframework.boot:spring-boot-devtools": [ + "org.springframework.boot.devtools", + "org.springframework.boot.devtools.autoconfigure", + "org.springframework.boot.devtools.classpath", + "org.springframework.boot.devtools.env", + "org.springframework.boot.devtools.filewatch", + "org.springframework.boot.devtools.livereload", + "org.springframework.boot.devtools.logger", + "org.springframework.boot.devtools.remote.client", + "org.springframework.boot.devtools.remote.server", + "org.springframework.boot.devtools.restart", + "org.springframework.boot.devtools.restart.classloader", + "org.springframework.boot.devtools.restart.server", + "org.springframework.boot.devtools.settings", + "org.springframework.boot.devtools.system" + ], + "org.springframework.boot:spring-boot-loader": [ + "org.springframework.boot.loader.jar", + "org.springframework.boot.loader.jarmode", + "org.springframework.boot.loader.launch", + "org.springframework.boot.loader.log", + "org.springframework.boot.loader.net.protocol", + "org.springframework.boot.loader.net.protocol.jar", + "org.springframework.boot.loader.net.protocol.nested", + "org.springframework.boot.loader.net.util", + "org.springframework.boot.loader.nio.file", + "org.springframework.boot.loader.ref", + "org.springframework.boot.loader.zip" + ], + "org.springframework.boot:spring-boot-loader-tools": [ + "org.springframework.boot.loader.tools", + "org.springframework.boot.loader.tools.layer" + ], + "org.springframework.boot:spring-boot-test": [ + "org.springframework.boot.test.context", + "org.springframework.boot.test.context.assertj", + "org.springframework.boot.test.context.filter", + "org.springframework.boot.test.context.runner", + "org.springframework.boot.test.graphql.tester", + "org.springframework.boot.test.json", + "org.springframework.boot.test.mock.mockito", + "org.springframework.boot.test.mock.web", + "org.springframework.boot.test.rsocket.server", + "org.springframework.boot.test.system", + "org.springframework.boot.test.util", + "org.springframework.boot.test.web", + "org.springframework.boot.test.web.client", + "org.springframework.boot.test.web.htmlunit", + "org.springframework.boot.test.web.htmlunit.webdriver", + "org.springframework.boot.test.web.reactive.server", + "org.springframework.boot.test.web.server" + ], + "org.springframework.boot:spring-boot-test-autoconfigure": [ + "org.springframework.boot.test.autoconfigure", + "org.springframework.boot.test.autoconfigure.actuate.observability", + "org.springframework.boot.test.autoconfigure.core", + "org.springframework.boot.test.autoconfigure.data.cassandra", + "org.springframework.boot.test.autoconfigure.data.couchbase", + "org.springframework.boot.test.autoconfigure.data.elasticsearch", + "org.springframework.boot.test.autoconfigure.data.jdbc", + "org.springframework.boot.test.autoconfigure.data.ldap", + "org.springframework.boot.test.autoconfigure.data.mongo", + "org.springframework.boot.test.autoconfigure.data.neo4j", + "org.springframework.boot.test.autoconfigure.data.r2dbc", + "org.springframework.boot.test.autoconfigure.data.redis", + "org.springframework.boot.test.autoconfigure.filter", + "org.springframework.boot.test.autoconfigure.graphql", + "org.springframework.boot.test.autoconfigure.graphql.tester", + "org.springframework.boot.test.autoconfigure.jdbc", + "org.springframework.boot.test.autoconfigure.jooq", + "org.springframework.boot.test.autoconfigure.json", + "org.springframework.boot.test.autoconfigure.orm.jpa", + "org.springframework.boot.test.autoconfigure.properties", + "org.springframework.boot.test.autoconfigure.restdocs", + "org.springframework.boot.test.autoconfigure.web.client", + "org.springframework.boot.test.autoconfigure.web.reactive", + "org.springframework.boot.test.autoconfigure.web.servlet", + "org.springframework.boot.test.autoconfigure.webservices.client", + "org.springframework.boot.test.autoconfigure.webservices.server" + ], + "org.springframework.plugin:spring-plugin-core": [ + "org.springframework.plugin.core", + "org.springframework.plugin.core.config", + "org.springframework.plugin.core.support" + ], + "org.springframework.plugin:spring-plugin-metadata": [ + "org.springframework.plugin.metadata" + ], + "org.springframework:spring-aop": [ + "org.aopalliance.aop", + "org.aopalliance.intercept", + "org.springframework.aop", + "org.springframework.aop.aspectj", + "org.springframework.aop.aspectj.annotation", + "org.springframework.aop.aspectj.autoproxy", + "org.springframework.aop.config", + "org.springframework.aop.framework", + "org.springframework.aop.framework.adapter", + "org.springframework.aop.framework.autoproxy", + "org.springframework.aop.framework.autoproxy.target", + "org.springframework.aop.interceptor", + "org.springframework.aop.scope", + "org.springframework.aop.support", + "org.springframework.aop.support.annotation", + "org.springframework.aop.target", + "org.springframework.aop.target.dynamic" + ], + "org.springframework:spring-beans": [ + "org.springframework.beans", + "org.springframework.beans.factory", + "org.springframework.beans.factory.annotation", + "org.springframework.beans.factory.aot", + "org.springframework.beans.factory.config", + "org.springframework.beans.factory.groovy", + "org.springframework.beans.factory.parsing", + "org.springframework.beans.factory.serviceloader", + "org.springframework.beans.factory.support", + "org.springframework.beans.factory.wiring", + "org.springframework.beans.factory.xml", + "org.springframework.beans.propertyeditors", + "org.springframework.beans.support" + ], + "org.springframework:spring-context": [ + "org.springframework.cache", + "org.springframework.cache.annotation", + "org.springframework.cache.concurrent", + "org.springframework.cache.config", + "org.springframework.cache.interceptor", + "org.springframework.cache.support", + "org.springframework.context", + "org.springframework.context.annotation", + "org.springframework.context.aot", + "org.springframework.context.config", + "org.springframework.context.event", + "org.springframework.context.expression", + "org.springframework.context.i18n", + "org.springframework.context.index", + "org.springframework.context.support", + "org.springframework.context.weaving", + "org.springframework.ejb.config", + "org.springframework.format", + "org.springframework.format.annotation", + "org.springframework.format.datetime", + "org.springframework.format.datetime.standard", + "org.springframework.format.number", + "org.springframework.format.number.money", + "org.springframework.format.support", + "org.springframework.instrument.classloading", + "org.springframework.instrument.classloading.glassfish", + "org.springframework.instrument.classloading.jboss", + "org.springframework.instrument.classloading.tomcat", + "org.springframework.jmx", + "org.springframework.jmx.access", + "org.springframework.jmx.export", + "org.springframework.jmx.export.annotation", + "org.springframework.jmx.export.assembler", + "org.springframework.jmx.export.metadata", + "org.springframework.jmx.export.naming", + "org.springframework.jmx.export.notification", + "org.springframework.jmx.support", + "org.springframework.jndi", + "org.springframework.jndi.support", + "org.springframework.scheduling", + "org.springframework.scheduling.annotation", + "org.springframework.scheduling.concurrent", + "org.springframework.scheduling.config", + "org.springframework.scheduling.support", + "org.springframework.scripting", + "org.springframework.scripting.bsh", + "org.springframework.scripting.config", + "org.springframework.scripting.groovy", + "org.springframework.scripting.support", + "org.springframework.stereotype", + "org.springframework.ui", + "org.springframework.ui.context", + "org.springframework.ui.context.support", + "org.springframework.validation", + "org.springframework.validation.annotation", + "org.springframework.validation.beanvalidation", + "org.springframework.validation.method", + "org.springframework.validation.support" + ], + "org.springframework:spring-context-support": [ + "org.springframework.cache.caffeine", + "org.springframework.cache.jcache", + "org.springframework.cache.jcache.config", + "org.springframework.cache.jcache.interceptor", + "org.springframework.cache.transaction", + "org.springframework.mail", + "org.springframework.mail.javamail", + "org.springframework.scheduling.quartz", + "org.springframework.ui.freemarker" + ], + "org.springframework:spring-core": [ + "org.springframework.aot", + "org.springframework.aot.generate", + "org.springframework.aot.hint", + "org.springframework.aot.hint.annotation", + "org.springframework.aot.hint.predicate", + "org.springframework.aot.hint.support", + "org.springframework.aot.nativex", + "org.springframework.aot.nativex.feature", + "org.springframework.aot.nativex.substitution", + "org.springframework.asm", + "org.springframework.cglib", + "org.springframework.cglib.beans", + "org.springframework.cglib.core", + "org.springframework.cglib.core.internal", + "org.springframework.cglib.proxy", + "org.springframework.cglib.reflect", + "org.springframework.cglib.transform", + "org.springframework.cglib.transform.impl", + "org.springframework.cglib.util", + "org.springframework.core", + "org.springframework.core.annotation", + "org.springframework.core.codec", + "org.springframework.core.convert", + "org.springframework.core.convert.converter", + "org.springframework.core.convert.support", + "org.springframework.core.env", + "org.springframework.core.io", + "org.springframework.core.io.buffer", + "org.springframework.core.io.support", + "org.springframework.core.log", + "org.springframework.core.metrics", + "org.springframework.core.metrics.jfr", + "org.springframework.core.serializer", + "org.springframework.core.serializer.support", + "org.springframework.core.style", + "org.springframework.core.task", + "org.springframework.core.task.support", + "org.springframework.core.type", + "org.springframework.core.type.classreading", + "org.springframework.core.type.filter", + "org.springframework.javapoet", + "org.springframework.lang", + "org.springframework.objenesis", + "org.springframework.objenesis.instantiator", + "org.springframework.objenesis.instantiator.android", + "org.springframework.objenesis.instantiator.annotations", + "org.springframework.objenesis.instantiator.basic", + "org.springframework.objenesis.instantiator.gcj", + "org.springframework.objenesis.instantiator.perc", + "org.springframework.objenesis.instantiator.sun", + "org.springframework.objenesis.instantiator.util", + "org.springframework.objenesis.strategy", + "org.springframework.util", + "org.springframework.util.backoff", + "org.springframework.util.comparator", + "org.springframework.util.concurrent", + "org.springframework.util.function", + "org.springframework.util.unit", + "org.springframework.util.xml" + ], + "org.springframework:spring-expression": [ + "org.springframework.expression", + "org.springframework.expression.common", + "org.springframework.expression.spel", + "org.springframework.expression.spel.ast", + "org.springframework.expression.spel.standard", + "org.springframework.expression.spel.support" + ], + "org.springframework:spring-jcl": [ + "org.apache.commons.logging", + "org.apache.commons.logging.impl" + ], + "org.springframework:spring-jdbc": [ + "org.springframework.jdbc", + "org.springframework.jdbc.config", + "org.springframework.jdbc.core", + "org.springframework.jdbc.core.metadata", + "org.springframework.jdbc.core.namedparam", + "org.springframework.jdbc.core.simple", + "org.springframework.jdbc.core.support", + "org.springframework.jdbc.datasource", + "org.springframework.jdbc.datasource.embedded", + "org.springframework.jdbc.datasource.init", + "org.springframework.jdbc.datasource.lookup", + "org.springframework.jdbc.object", + "org.springframework.jdbc.support", + "org.springframework.jdbc.support.incrementer", + "org.springframework.jdbc.support.lob", + "org.springframework.jdbc.support.rowset", + "org.springframework.jdbc.support.xml" + ], + "org.springframework:spring-test": [ + "org.springframework.mock.env", + "org.springframework.mock.http", + "org.springframework.mock.http.client", + "org.springframework.mock.http.client.reactive", + "org.springframework.mock.http.server.reactive", + "org.springframework.mock.web", + "org.springframework.mock.web.reactive.function.server", + "org.springframework.mock.web.server", + "org.springframework.test.annotation", + "org.springframework.test.context", + "org.springframework.test.context.aot", + "org.springframework.test.context.cache", + "org.springframework.test.context.event", + "org.springframework.test.context.event.annotation", + "org.springframework.test.context.hint", + "org.springframework.test.context.jdbc", + "org.springframework.test.context.junit.jupiter", + "org.springframework.test.context.junit.jupiter.web", + "org.springframework.test.context.junit4", + "org.springframework.test.context.junit4.rules", + "org.springframework.test.context.junit4.statements", + "org.springframework.test.context.observation", + "org.springframework.test.context.support", + "org.springframework.test.context.testng", + "org.springframework.test.context.transaction", + "org.springframework.test.context.util", + "org.springframework.test.context.web", + "org.springframework.test.context.web.socket", + "org.springframework.test.jdbc", + "org.springframework.test.util", + "org.springframework.test.web", + "org.springframework.test.web.client", + "org.springframework.test.web.client.match", + "org.springframework.test.web.client.response", + "org.springframework.test.web.reactive.server", + "org.springframework.test.web.servlet", + "org.springframework.test.web.servlet.client", + "org.springframework.test.web.servlet.htmlunit", + "org.springframework.test.web.servlet.htmlunit.webdriver", + "org.springframework.test.web.servlet.request", + "org.springframework.test.web.servlet.result", + "org.springframework.test.web.servlet.setup" + ], + "org.springframework:spring-tx": [ + "org.springframework.dao", + "org.springframework.dao.annotation", + "org.springframework.dao.support", + "org.springframework.jca.endpoint", + "org.springframework.jca.support", + "org.springframework.transaction", + "org.springframework.transaction.annotation", + "org.springframework.transaction.config", + "org.springframework.transaction.event", + "org.springframework.transaction.interceptor", + "org.springframework.transaction.jta", + "org.springframework.transaction.reactive", + "org.springframework.transaction.support" + ], + "org.springframework:spring-web": [ + "org.springframework.http", + "org.springframework.http.client", + "org.springframework.http.client.observation", + "org.springframework.http.client.reactive", + "org.springframework.http.client.support", + "org.springframework.http.codec", + "org.springframework.http.codec.cbor", + "org.springframework.http.codec.json", + "org.springframework.http.codec.multipart", + "org.springframework.http.codec.protobuf", + "org.springframework.http.codec.support", + "org.springframework.http.codec.xml", + "org.springframework.http.converter", + "org.springframework.http.converter.cbor", + "org.springframework.http.converter.feed", + "org.springframework.http.converter.json", + "org.springframework.http.converter.protobuf", + "org.springframework.http.converter.smile", + "org.springframework.http.converter.support", + "org.springframework.http.converter.xml", + "org.springframework.http.server", + "org.springframework.http.server.observation", + "org.springframework.http.server.reactive", + "org.springframework.http.server.reactive.observation", + "org.springframework.http.support", + "org.springframework.web", + "org.springframework.web.accept", + "org.springframework.web.bind", + "org.springframework.web.bind.annotation", + "org.springframework.web.bind.support", + "org.springframework.web.client", + "org.springframework.web.client.support", + "org.springframework.web.context", + "org.springframework.web.context.annotation", + "org.springframework.web.context.request", + "org.springframework.web.context.request.async", + "org.springframework.web.context.support", + "org.springframework.web.cors", + "org.springframework.web.cors.reactive", + "org.springframework.web.filter", + "org.springframework.web.filter.reactive", + "org.springframework.web.jsf", + "org.springframework.web.jsf.el", + "org.springframework.web.method", + "org.springframework.web.method.annotation", + "org.springframework.web.method.support", + "org.springframework.web.multipart", + "org.springframework.web.multipart.support", + "org.springframework.web.server", + "org.springframework.web.server.adapter", + "org.springframework.web.server.handler", + "org.springframework.web.server.i18n", + "org.springframework.web.server.session", + "org.springframework.web.service", + "org.springframework.web.service.annotation", + "org.springframework.web.service.invoker", + "org.springframework.web.util", + "org.springframework.web.util.pattern" + ], + "org.springframework:spring-webmvc": [ + "org.springframework.web.servlet", + "org.springframework.web.servlet.config", + "org.springframework.web.servlet.config.annotation", + "org.springframework.web.servlet.function", + "org.springframework.web.servlet.function.support", + "org.springframework.web.servlet.handler", + "org.springframework.web.servlet.i18n", + "org.springframework.web.servlet.mvc", + "org.springframework.web.servlet.mvc.annotation", + "org.springframework.web.servlet.mvc.condition", + "org.springframework.web.servlet.mvc.method", + "org.springframework.web.servlet.mvc.method.annotation", + "org.springframework.web.servlet.mvc.support", + "org.springframework.web.servlet.resource", + "org.springframework.web.servlet.support", + "org.springframework.web.servlet.tags", + "org.springframework.web.servlet.tags.form", + "org.springframework.web.servlet.theme", + "org.springframework.web.servlet.view", + "org.springframework.web.servlet.view.document", + "org.springframework.web.servlet.view.feed", + "org.springframework.web.servlet.view.freemarker", + "org.springframework.web.servlet.view.groovy", + "org.springframework.web.servlet.view.json", + "org.springframework.web.servlet.view.script", + "org.springframework.web.servlet.view.xml", + "org.springframework.web.servlet.view.xslt" + ], + "org.xmlunit:xmlunit-core": [ + "org.xmlunit", + "org.xmlunit.builder", + "org.xmlunit.builder.javax_jaxb", + "org.xmlunit.diff", + "org.xmlunit.input", + "org.xmlunit.transform", + "org.xmlunit.util", + "org.xmlunit.validation", + "org.xmlunit.xpath" + ], + "org.yaml:snakeyaml": [ + "org.yaml.snakeyaml", + "org.yaml.snakeyaml.comments", + "org.yaml.snakeyaml.composer", + "org.yaml.snakeyaml.constructor", + "org.yaml.snakeyaml.emitter", + "org.yaml.snakeyaml.env", + "org.yaml.snakeyaml.error", + "org.yaml.snakeyaml.events", + "org.yaml.snakeyaml.extensions.compactnotation", + "org.yaml.snakeyaml.external.biz.base64Coder", + "org.yaml.snakeyaml.external.com.google.gdata.util.common.base", + "org.yaml.snakeyaml.inspector", + "org.yaml.snakeyaml.internal", + "org.yaml.snakeyaml.introspector", + "org.yaml.snakeyaml.nodes", + "org.yaml.snakeyaml.parser", + "org.yaml.snakeyaml.reader", + "org.yaml.snakeyaml.representer", + "org.yaml.snakeyaml.resolver", + "org.yaml.snakeyaml.scanner", + "org.yaml.snakeyaml.serializer", + "org.yaml.snakeyaml.tokens", + "org.yaml.snakeyaml.util" + ] + }, + "repositories": { + "https://maven.aliyun.com/repository/public/": [ + "ch.qos.logback:logback-classic", + "ch.qos.logback:logback-classic:jar:sources", + "ch.qos.logback:logback-core", + "ch.qos.logback:logback-core:jar:sources", + "com.auth0:java-jwt", + "com.auth0:java-jwt:jar:sources", + "com.fasterxml.jackson.core:jackson-annotations", + "com.fasterxml.jackson.core:jackson-annotations:jar:sources", + "com.fasterxml.jackson.core:jackson-core", + "com.fasterxml.jackson.core:jackson-core:jar:sources", + "com.fasterxml.jackson.core:jackson-databind", + "com.fasterxml.jackson.core:jackson-databind:jar:sources", + "com.fasterxml.jackson.datatype:jackson-datatype-jdk8", + "com.fasterxml.jackson.datatype:jackson-datatype-jdk8:jar:sources", + "com.fasterxml.jackson.datatype:jackson-datatype-jsr310", + "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:jar:sources", + "com.fasterxml.jackson.module:jackson-module-parameter-names", + "com.fasterxml.jackson.module:jackson-module-parameter-names:jar:sources", + "com.fasterxml:classmate", + "com.fasterxml:classmate:jar:sources", + "com.jayway.jsonpath:json-path", + "com.jayway.jsonpath:json-path:jar:sources", + "com.mchange:c3p0", + "com.mchange:c3p0:jar:sources", + "com.mchange:mchange-commons-java", + "com.mchange:mchange-commons-java:jar:sources", + "com.vaadin.external.google:android-json", + "com.vaadin.external.google:android-json:jar:sources", + "com.zaxxer:HikariCP", + "com.zaxxer:HikariCP-java7", + "com.zaxxer:HikariCP-java7:jar:sources", + "com.zaxxer:HikariCP:jar:sources", + "commons-beanutils:commons-beanutils", + "commons-beanutils:commons-beanutils:jar:sources", + "commons-collections:commons-collections", + "commons-collections:commons-collections:jar:sources", + "io.github.classgraph:classgraph", + "io.github.classgraph:classgraph:jar:sources", + "io.micrometer:micrometer-commons", + "io.micrometer:micrometer-commons:jar:sources", + "io.micrometer:micrometer-observation", + "io.micrometer:micrometer-observation:jar:sources", + "io.springfox:springfox-bean-validators", + "io.springfox:springfox-bean-validators:jar:sources", + "io.springfox:springfox-boot-starter", + "io.springfox:springfox-boot-starter:jar:sources", + "io.springfox:springfox-core", + "io.springfox:springfox-core:jar:sources", + "io.springfox:springfox-data-rest", + "io.springfox:springfox-data-rest:jar:sources", + "io.springfox:springfox-oas", + "io.springfox:springfox-oas:jar:sources", + "io.springfox:springfox-schema", + "io.springfox:springfox-schema:jar:sources", + "io.springfox:springfox-spi", + "io.springfox:springfox-spi:jar:sources", + "io.springfox:springfox-spring-web", + "io.springfox:springfox-spring-web:jar:sources", + "io.springfox:springfox-spring-webflux", + "io.springfox:springfox-spring-webflux:jar:sources", + "io.springfox:springfox-spring-webmvc", + "io.springfox:springfox-spring-webmvc:jar:sources", + "io.springfox:springfox-swagger-common", + "io.springfox:springfox-swagger-common:jar:sources", + "io.springfox:springfox-swagger-ui", + "io.springfox:springfox-swagger-ui:jar:sources", + "io.springfox:springfox-swagger2", + "io.springfox:springfox-swagger2:jar:sources", + "io.swagger.core.v3:swagger-annotations", + "io.swagger.core.v3:swagger-annotations:jar:sources", + "io.swagger.core.v3:swagger-models", + "io.swagger.core.v3:swagger-models:jar:sources", + "io.swagger:swagger-annotations", + "io.swagger:swagger-annotations:jar:sources", + "io.swagger:swagger-models", + "io.swagger:swagger-models:jar:sources", + "jakarta.activation:jakarta.activation-api", + "jakarta.activation:jakarta.activation-api:jar:sources", + "jakarta.annotation:jakarta.annotation-api", + "jakarta.annotation:jakarta.annotation-api:jar:sources", + "jakarta.servlet:jakarta.servlet-api", + "jakarta.servlet:jakarta.servlet-api:jar:sources", + "jakarta.xml.bind:jakarta.xml.bind-api", + "jakarta.xml.bind:jakarta.xml.bind-api:jar:sources", + "javax.annotation:javax.annotation-api", + "javax.annotation:javax.annotation-api:jar:sources", + "net.bytebuddy:byte-buddy", + "net.bytebuddy:byte-buddy-agent", + "net.bytebuddy:byte-buddy-agent:jar:sources", + "net.bytebuddy:byte-buddy:jar:sources", + "net.minidev:accessors-smart", + "net.minidev:accessors-smart:jar:sources", + "net.minidev:json-smart", + "net.minidev:json-smart:jar:sources", + "org.apache.commons:commons-compress", + "org.apache.commons:commons-compress:jar:sources", + "org.apache.logging.log4j:log4j-api", + "org.apache.logging.log4j:log4j-api:jar:sources", + "org.apache.logging.log4j:log4j-to-slf4j", + "org.apache.logging.log4j:log4j-to-slf4j:jar:sources", + "org.apache.shiro:shiro-cache", + "org.apache.shiro:shiro-cache:jar:sources", + "org.apache.shiro:shiro-config-core", + "org.apache.shiro:shiro-config-core:jar:sources", + "org.apache.shiro:shiro-config-ogdl", + "org.apache.shiro:shiro-config-ogdl:jar:sources", + "org.apache.shiro:shiro-core", + "org.apache.shiro:shiro-core:jar:jakarta", + "org.apache.shiro:shiro-core:jar:sources", + "org.apache.shiro:shiro-crypto-cipher", + "org.apache.shiro:shiro-crypto-cipher:jar:sources", + "org.apache.shiro:shiro-crypto-core", + "org.apache.shiro:shiro-crypto-core:jar:sources", + "org.apache.shiro:shiro-crypto-hash", + "org.apache.shiro:shiro-crypto-hash:jar:sources", + "org.apache.shiro:shiro-event", + "org.apache.shiro:shiro-event:jar:sources", + "org.apache.shiro:shiro-lang", + "org.apache.shiro:shiro-lang:jar:sources", + "org.apache.shiro:shiro-spring:jar:jakarta", + "org.apache.shiro:shiro-spring:jar:sources", + "org.apache.shiro:shiro-web:jar:jakarta", + "org.apache.shiro:shiro-web:jar:sources", + "org.apache.tomcat.embed:tomcat-embed-core", + "org.apache.tomcat.embed:tomcat-embed-core:jar:sources", + "org.apache.tomcat.embed:tomcat-embed-el", + "org.apache.tomcat.embed:tomcat-embed-el:jar:sources", + "org.apache.tomcat.embed:tomcat-embed-websocket", + "org.apache.tomcat.embed:tomcat-embed-websocket:jar:sources", + "org.apiguardian:apiguardian-api", + "org.apiguardian:apiguardian-api:jar:sources", + "org.aspectj:aspectjweaver", + "org.aspectj:aspectjweaver:jar:sources", + "org.assertj:assertj-core", + "org.assertj:assertj-core:jar:sources", + "org.awaitility:awaitility", + "org.awaitility:awaitility:jar:sources", + "org.checkerframework:checker-qual", + "org.checkerframework:checker-qual:jar:sources", + "org.hamcrest:hamcrest", + "org.hamcrest:hamcrest:jar:sources", + "org.junit.jupiter:junit-jupiter", + "org.junit.jupiter:junit-jupiter-api", + "org.junit.jupiter:junit-jupiter-api:jar:sources", + "org.junit.jupiter:junit-jupiter-engine", + "org.junit.jupiter:junit-jupiter-engine:jar:sources", + "org.junit.jupiter:junit-jupiter-params", + "org.junit.jupiter:junit-jupiter-params:jar:sources", + "org.junit.jupiter:junit-jupiter:jar:sources", + "org.junit.platform:junit-platform-commons", + "org.junit.platform:junit-platform-commons:jar:sources", + "org.junit.platform:junit-platform-engine", + "org.junit.platform:junit-platform-engine:jar:sources", + "org.mapstruct:mapstruct", + "org.mapstruct:mapstruct:jar:sources", + "org.mockito:mockito-core", + "org.mockito:mockito-core:jar:sources", + "org.mockito:mockito-junit-jupiter", + "org.mockito:mockito-junit-jupiter:jar:sources", + "org.objenesis:objenesis", + "org.objenesis:objenesis:jar:sources", + "org.opentest4j:opentest4j", + "org.opentest4j:opentest4j:jar:sources", + "org.ow2.asm:asm", + "org.ow2.asm:asm:jar:sources", + "org.owasp.encoder:encoder", + "org.owasp.encoder:encoder:jar:sources", + "org.postgresql:postgresql", + "org.postgresql:postgresql:jar:sources", + "org.quartz-scheduler:quartz", + "org.quartz-scheduler:quartz:jar:sources", + "org.skyscreamer:jsonassert", + "org.skyscreamer:jsonassert:jar:sources", + "org.slf4j:jul-to-slf4j", + "org.slf4j:jul-to-slf4j:jar:sources", + "org.slf4j:slf4j-api", + "org.slf4j:slf4j-api:jar:sources", + "org.springframework.boot:spring-boot", + "org.springframework.boot:spring-boot-autoconfigure", + "org.springframework.boot:spring-boot-autoconfigure:jar:sources", + "org.springframework.boot:spring-boot-devtools", + "org.springframework.boot:spring-boot-devtools:jar:sources", + "org.springframework.boot:spring-boot-loader", + "org.springframework.boot:spring-boot-loader-tools", + "org.springframework.boot:spring-boot-loader-tools:jar:sources", + "org.springframework.boot:spring-boot-loader:jar:sources", + "org.springframework.boot:spring-boot-starter", + "org.springframework.boot:spring-boot-starter-aop", + "org.springframework.boot:spring-boot-starter-aop:jar:sources", + "org.springframework.boot:spring-boot-starter-jdbc", + "org.springframework.boot:spring-boot-starter-jdbc:jar:sources", + "org.springframework.boot:spring-boot-starter-json", + "org.springframework.boot:spring-boot-starter-json:jar:sources", + "org.springframework.boot:spring-boot-starter-logging", + "org.springframework.boot:spring-boot-starter-logging:jar:sources", + "org.springframework.boot:spring-boot-starter-quartz", + "org.springframework.boot:spring-boot-starter-quartz:jar:sources", + "org.springframework.boot:spring-boot-starter-test", + "org.springframework.boot:spring-boot-starter-test:jar:sources", + "org.springframework.boot:spring-boot-starter-tomcat", + "org.springframework.boot:spring-boot-starter-tomcat:jar:sources", + "org.springframework.boot:spring-boot-starter-web", + "org.springframework.boot:spring-boot-starter-web:jar:sources", + "org.springframework.boot:spring-boot-starter:jar:sources", + "org.springframework.boot:spring-boot-test", + "org.springframework.boot:spring-boot-test-autoconfigure", + "org.springframework.boot:spring-boot-test-autoconfigure:jar:sources", + "org.springframework.boot:spring-boot-test:jar:sources", + "org.springframework.boot:spring-boot:jar:sources", + "org.springframework.plugin:spring-plugin-core", + "org.springframework.plugin:spring-plugin-core:jar:sources", + "org.springframework.plugin:spring-plugin-metadata", + "org.springframework.plugin:spring-plugin-metadata:jar:sources", + "org.springframework:spring-aop", + "org.springframework:spring-aop:jar:sources", + "org.springframework:spring-beans", + "org.springframework:spring-beans:jar:sources", + "org.springframework:spring-context", + "org.springframework:spring-context-support", + "org.springframework:spring-context-support:jar:sources", + "org.springframework:spring-context:jar:sources", + "org.springframework:spring-core", + "org.springframework:spring-core:jar:sources", + "org.springframework:spring-expression", + "org.springframework:spring-expression:jar:sources", + "org.springframework:spring-jcl", + "org.springframework:spring-jcl:jar:sources", + "org.springframework:spring-jdbc", + "org.springframework:spring-jdbc:jar:sources", + "org.springframework:spring-test", + "org.springframework:spring-test:jar:sources", + "org.springframework:spring-tx", + "org.springframework:spring-tx:jar:sources", + "org.springframework:spring-web", + "org.springframework:spring-web:jar:sources", + "org.springframework:spring-webmvc", + "org.springframework:spring-webmvc:jar:sources", + "org.xmlunit:xmlunit-core", + "org.xmlunit:xmlunit-core:jar:sources", + "org.yaml:snakeyaml", + "org.yaml:snakeyaml:jar:sources" + ], + "https://maven.aliyun.com/nexus/content/groups/public/": [ + "ch.qos.logback:logback-classic", + "ch.qos.logback:logback-classic:jar:sources", + "ch.qos.logback:logback-core", + "ch.qos.logback:logback-core:jar:sources", + "com.auth0:java-jwt", + "com.auth0:java-jwt:jar:sources", + "com.fasterxml.jackson.core:jackson-annotations", + "com.fasterxml.jackson.core:jackson-annotations:jar:sources", + "com.fasterxml.jackson.core:jackson-core", + "com.fasterxml.jackson.core:jackson-core:jar:sources", + "com.fasterxml.jackson.core:jackson-databind", + "com.fasterxml.jackson.core:jackson-databind:jar:sources", + "com.fasterxml.jackson.datatype:jackson-datatype-jdk8", + "com.fasterxml.jackson.datatype:jackson-datatype-jdk8:jar:sources", + "com.fasterxml.jackson.datatype:jackson-datatype-jsr310", + "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:jar:sources", + "com.fasterxml.jackson.module:jackson-module-parameter-names", + "com.fasterxml.jackson.module:jackson-module-parameter-names:jar:sources", + "com.fasterxml:classmate", + "com.fasterxml:classmate:jar:sources", + "com.jayway.jsonpath:json-path", + "com.jayway.jsonpath:json-path:jar:sources", + "com.mchange:c3p0", + "com.mchange:c3p0:jar:sources", + "com.mchange:mchange-commons-java", + "com.mchange:mchange-commons-java:jar:sources", + "com.vaadin.external.google:android-json", + "com.vaadin.external.google:android-json:jar:sources", + "com.zaxxer:HikariCP", + "com.zaxxer:HikariCP-java7", + "com.zaxxer:HikariCP-java7:jar:sources", + "com.zaxxer:HikariCP:jar:sources", + "commons-beanutils:commons-beanutils", + "commons-beanutils:commons-beanutils:jar:sources", + "commons-collections:commons-collections", + "commons-collections:commons-collections:jar:sources", + "io.github.classgraph:classgraph", + "io.github.classgraph:classgraph:jar:sources", + "io.micrometer:micrometer-commons", + "io.micrometer:micrometer-commons:jar:sources", + "io.micrometer:micrometer-observation", + "io.micrometer:micrometer-observation:jar:sources", + "io.springfox:springfox-bean-validators", + "io.springfox:springfox-bean-validators:jar:sources", + "io.springfox:springfox-boot-starter", + "io.springfox:springfox-boot-starter:jar:sources", + "io.springfox:springfox-core", + "io.springfox:springfox-core:jar:sources", + "io.springfox:springfox-data-rest", + "io.springfox:springfox-data-rest:jar:sources", + "io.springfox:springfox-oas", + "io.springfox:springfox-oas:jar:sources", + "io.springfox:springfox-schema", + "io.springfox:springfox-schema:jar:sources", + "io.springfox:springfox-spi", + "io.springfox:springfox-spi:jar:sources", + "io.springfox:springfox-spring-web", + "io.springfox:springfox-spring-web:jar:sources", + "io.springfox:springfox-spring-webflux", + "io.springfox:springfox-spring-webflux:jar:sources", + "io.springfox:springfox-spring-webmvc", + "io.springfox:springfox-spring-webmvc:jar:sources", + "io.springfox:springfox-swagger-common", + "io.springfox:springfox-swagger-common:jar:sources", + "io.springfox:springfox-swagger-ui", + "io.springfox:springfox-swagger-ui:jar:sources", + "io.springfox:springfox-swagger2", + "io.springfox:springfox-swagger2:jar:sources", + "io.swagger.core.v3:swagger-annotations", + "io.swagger.core.v3:swagger-annotations:jar:sources", + "io.swagger.core.v3:swagger-models", + "io.swagger.core.v3:swagger-models:jar:sources", + "io.swagger:swagger-annotations", + "io.swagger:swagger-annotations:jar:sources", + "io.swagger:swagger-models", + "io.swagger:swagger-models:jar:sources", + "jakarta.activation:jakarta.activation-api", + "jakarta.activation:jakarta.activation-api:jar:sources", + "jakarta.annotation:jakarta.annotation-api", + "jakarta.annotation:jakarta.annotation-api:jar:sources", + "jakarta.servlet:jakarta.servlet-api", + "jakarta.servlet:jakarta.servlet-api:jar:sources", + "jakarta.xml.bind:jakarta.xml.bind-api", + "jakarta.xml.bind:jakarta.xml.bind-api:jar:sources", + "javax.annotation:javax.annotation-api", + "javax.annotation:javax.annotation-api:jar:sources", + "net.bytebuddy:byte-buddy", + "net.bytebuddy:byte-buddy-agent", + "net.bytebuddy:byte-buddy-agent:jar:sources", + "net.bytebuddy:byte-buddy:jar:sources", + "net.minidev:accessors-smart", + "net.minidev:accessors-smart:jar:sources", + "net.minidev:json-smart", + "net.minidev:json-smart:jar:sources", + "org.apache.commons:commons-compress", + "org.apache.commons:commons-compress:jar:sources", + "org.apache.logging.log4j:log4j-api", + "org.apache.logging.log4j:log4j-api:jar:sources", + "org.apache.logging.log4j:log4j-to-slf4j", + "org.apache.logging.log4j:log4j-to-slf4j:jar:sources", + "org.apache.shiro:shiro-cache", + "org.apache.shiro:shiro-cache:jar:sources", + "org.apache.shiro:shiro-config-core", + "org.apache.shiro:shiro-config-core:jar:sources", + "org.apache.shiro:shiro-config-ogdl", + "org.apache.shiro:shiro-config-ogdl:jar:sources", + "org.apache.shiro:shiro-core", + "org.apache.shiro:shiro-core:jar:jakarta", + "org.apache.shiro:shiro-core:jar:sources", + "org.apache.shiro:shiro-crypto-cipher", + "org.apache.shiro:shiro-crypto-cipher:jar:sources", + "org.apache.shiro:shiro-crypto-core", + "org.apache.shiro:shiro-crypto-core:jar:sources", + "org.apache.shiro:shiro-crypto-hash", + "org.apache.shiro:shiro-crypto-hash:jar:sources", + "org.apache.shiro:shiro-event", + "org.apache.shiro:shiro-event:jar:sources", + "org.apache.shiro:shiro-lang", + "org.apache.shiro:shiro-lang:jar:sources", + "org.apache.shiro:shiro-spring:jar:jakarta", + "org.apache.shiro:shiro-spring:jar:sources", + "org.apache.shiro:shiro-web:jar:jakarta", + "org.apache.shiro:shiro-web:jar:sources", + "org.apache.tomcat.embed:tomcat-embed-core", + "org.apache.tomcat.embed:tomcat-embed-core:jar:sources", + "org.apache.tomcat.embed:tomcat-embed-el", + "org.apache.tomcat.embed:tomcat-embed-el:jar:sources", + "org.apache.tomcat.embed:tomcat-embed-websocket", + "org.apache.tomcat.embed:tomcat-embed-websocket:jar:sources", + "org.apiguardian:apiguardian-api", + "org.apiguardian:apiguardian-api:jar:sources", + "org.aspectj:aspectjweaver", + "org.aspectj:aspectjweaver:jar:sources", + "org.assertj:assertj-core", + "org.assertj:assertj-core:jar:sources", + "org.awaitility:awaitility", + "org.awaitility:awaitility:jar:sources", + "org.checkerframework:checker-qual", + "org.checkerframework:checker-qual:jar:sources", + "org.hamcrest:hamcrest", + "org.hamcrest:hamcrest:jar:sources", + "org.junit.jupiter:junit-jupiter", + "org.junit.jupiter:junit-jupiter-api", + "org.junit.jupiter:junit-jupiter-api:jar:sources", + "org.junit.jupiter:junit-jupiter-engine", + "org.junit.jupiter:junit-jupiter-engine:jar:sources", + "org.junit.jupiter:junit-jupiter-params", + "org.junit.jupiter:junit-jupiter-params:jar:sources", + "org.junit.jupiter:junit-jupiter:jar:sources", + "org.junit.platform:junit-platform-commons", + "org.junit.platform:junit-platform-commons:jar:sources", + "org.junit.platform:junit-platform-engine", + "org.junit.platform:junit-platform-engine:jar:sources", + "org.mapstruct:mapstruct", + "org.mapstruct:mapstruct:jar:sources", + "org.mockito:mockito-core", + "org.mockito:mockito-core:jar:sources", + "org.mockito:mockito-junit-jupiter", + "org.mockito:mockito-junit-jupiter:jar:sources", + "org.objenesis:objenesis", + "org.objenesis:objenesis:jar:sources", + "org.opentest4j:opentest4j", + "org.opentest4j:opentest4j:jar:sources", + "org.ow2.asm:asm", + "org.ow2.asm:asm:jar:sources", + "org.owasp.encoder:encoder", + "org.owasp.encoder:encoder:jar:sources", + "org.postgresql:postgresql", + "org.postgresql:postgresql:jar:sources", + "org.quartz-scheduler:quartz", + "org.quartz-scheduler:quartz:jar:sources", + "org.skyscreamer:jsonassert", + "org.skyscreamer:jsonassert:jar:sources", + "org.slf4j:jul-to-slf4j", + "org.slf4j:jul-to-slf4j:jar:sources", + "org.slf4j:slf4j-api", + "org.slf4j:slf4j-api:jar:sources", + "org.springframework.boot:spring-boot", + "org.springframework.boot:spring-boot-autoconfigure", + "org.springframework.boot:spring-boot-autoconfigure:jar:sources", + "org.springframework.boot:spring-boot-devtools", + "org.springframework.boot:spring-boot-devtools:jar:sources", + "org.springframework.boot:spring-boot-loader", + "org.springframework.boot:spring-boot-loader-tools", + "org.springframework.boot:spring-boot-loader-tools:jar:sources", + "org.springframework.boot:spring-boot-loader:jar:sources", + "org.springframework.boot:spring-boot-starter", + "org.springframework.boot:spring-boot-starter-aop", + "org.springframework.boot:spring-boot-starter-aop:jar:sources", + "org.springframework.boot:spring-boot-starter-jdbc", + "org.springframework.boot:spring-boot-starter-jdbc:jar:sources", + "org.springframework.boot:spring-boot-starter-json", + "org.springframework.boot:spring-boot-starter-json:jar:sources", + "org.springframework.boot:spring-boot-starter-logging", + "org.springframework.boot:spring-boot-starter-logging:jar:sources", + "org.springframework.boot:spring-boot-starter-quartz", + "org.springframework.boot:spring-boot-starter-quartz:jar:sources", + "org.springframework.boot:spring-boot-starter-test", + "org.springframework.boot:spring-boot-starter-test:jar:sources", + "org.springframework.boot:spring-boot-starter-tomcat", + "org.springframework.boot:spring-boot-starter-tomcat:jar:sources", + "org.springframework.boot:spring-boot-starter-web", + "org.springframework.boot:spring-boot-starter-web:jar:sources", + "org.springframework.boot:spring-boot-starter:jar:sources", + "org.springframework.boot:spring-boot-test", + "org.springframework.boot:spring-boot-test-autoconfigure", + "org.springframework.boot:spring-boot-test-autoconfigure:jar:sources", + "org.springframework.boot:spring-boot-test:jar:sources", + "org.springframework.boot:spring-boot:jar:sources", + "org.springframework.plugin:spring-plugin-core", + "org.springframework.plugin:spring-plugin-core:jar:sources", + "org.springframework.plugin:spring-plugin-metadata", + "org.springframework.plugin:spring-plugin-metadata:jar:sources", + "org.springframework:spring-aop", + "org.springframework:spring-aop:jar:sources", + "org.springframework:spring-beans", + "org.springframework:spring-beans:jar:sources", + "org.springframework:spring-context", + "org.springframework:spring-context-support", + "org.springframework:spring-context-support:jar:sources", + "org.springframework:spring-context:jar:sources", + "org.springframework:spring-core", + "org.springframework:spring-core:jar:sources", + "org.springframework:spring-expression", + "org.springframework:spring-expression:jar:sources", + "org.springframework:spring-jcl", + "org.springframework:spring-jcl:jar:sources", + "org.springframework:spring-jdbc", + "org.springframework:spring-jdbc:jar:sources", + "org.springframework:spring-test", + "org.springframework:spring-test:jar:sources", + "org.springframework:spring-tx", + "org.springframework:spring-tx:jar:sources", + "org.springframework:spring-web", + "org.springframework:spring-web:jar:sources", + "org.springframework:spring-webmvc", + "org.springframework:spring-webmvc:jar:sources", + "org.xmlunit:xmlunit-core", + "org.xmlunit:xmlunit-core:jar:sources", + "org.yaml:snakeyaml", + "org.yaml:snakeyaml:jar:sources" + ], + "http://uk.maven.org/maven2/": [ + "ch.qos.logback:logback-classic", + "ch.qos.logback:logback-classic:jar:sources", + "ch.qos.logback:logback-core", + "ch.qos.logback:logback-core:jar:sources", + "com.auth0:java-jwt", + "com.auth0:java-jwt:jar:sources", + "com.fasterxml.jackson.core:jackson-annotations", + "com.fasterxml.jackson.core:jackson-annotations:jar:sources", + "com.fasterxml.jackson.core:jackson-core", + "com.fasterxml.jackson.core:jackson-core:jar:sources", + "com.fasterxml.jackson.core:jackson-databind", + "com.fasterxml.jackson.core:jackson-databind:jar:sources", + "com.fasterxml.jackson.datatype:jackson-datatype-jdk8", + "com.fasterxml.jackson.datatype:jackson-datatype-jdk8:jar:sources", + "com.fasterxml.jackson.datatype:jackson-datatype-jsr310", + "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:jar:sources", + "com.fasterxml.jackson.module:jackson-module-parameter-names", + "com.fasterxml.jackson.module:jackson-module-parameter-names:jar:sources", + "com.fasterxml:classmate", + "com.fasterxml:classmate:jar:sources", + "com.jayway.jsonpath:json-path", + "com.jayway.jsonpath:json-path:jar:sources", + "com.mchange:c3p0", + "com.mchange:c3p0:jar:sources", + "com.mchange:mchange-commons-java", + "com.mchange:mchange-commons-java:jar:sources", + "com.vaadin.external.google:android-json", + "com.vaadin.external.google:android-json:jar:sources", + "com.zaxxer:HikariCP", + "com.zaxxer:HikariCP-java7", + "com.zaxxer:HikariCP-java7:jar:sources", + "com.zaxxer:HikariCP:jar:sources", + "commons-beanutils:commons-beanutils", + "commons-beanutils:commons-beanutils:jar:sources", + "commons-collections:commons-collections", + "commons-collections:commons-collections:jar:sources", + "io.github.classgraph:classgraph", + "io.github.classgraph:classgraph:jar:sources", + "io.micrometer:micrometer-commons", + "io.micrometer:micrometer-commons:jar:sources", + "io.micrometer:micrometer-observation", + "io.micrometer:micrometer-observation:jar:sources", + "io.springfox:springfox-bean-validators", + "io.springfox:springfox-bean-validators:jar:sources", + "io.springfox:springfox-boot-starter", + "io.springfox:springfox-boot-starter:jar:sources", + "io.springfox:springfox-core", + "io.springfox:springfox-core:jar:sources", + "io.springfox:springfox-data-rest", + "io.springfox:springfox-data-rest:jar:sources", + "io.springfox:springfox-oas", + "io.springfox:springfox-oas:jar:sources", + "io.springfox:springfox-schema", + "io.springfox:springfox-schema:jar:sources", + "io.springfox:springfox-spi", + "io.springfox:springfox-spi:jar:sources", + "io.springfox:springfox-spring-web", + "io.springfox:springfox-spring-web:jar:sources", + "io.springfox:springfox-spring-webflux", + "io.springfox:springfox-spring-webflux:jar:sources", + "io.springfox:springfox-spring-webmvc", + "io.springfox:springfox-spring-webmvc:jar:sources", + "io.springfox:springfox-swagger-common", + "io.springfox:springfox-swagger-common:jar:sources", + "io.springfox:springfox-swagger-ui", + "io.springfox:springfox-swagger-ui:jar:sources", + "io.springfox:springfox-swagger2", + "io.springfox:springfox-swagger2:jar:sources", + "io.swagger.core.v3:swagger-annotations", + "io.swagger.core.v3:swagger-annotations:jar:sources", + "io.swagger.core.v3:swagger-models", + "io.swagger.core.v3:swagger-models:jar:sources", + "io.swagger:swagger-annotations", + "io.swagger:swagger-annotations:jar:sources", + "io.swagger:swagger-models", + "io.swagger:swagger-models:jar:sources", + "jakarta.activation:jakarta.activation-api", + "jakarta.activation:jakarta.activation-api:jar:sources", + "jakarta.annotation:jakarta.annotation-api", + "jakarta.annotation:jakarta.annotation-api:jar:sources", + "jakarta.servlet:jakarta.servlet-api", + "jakarta.servlet:jakarta.servlet-api:jar:sources", + "jakarta.xml.bind:jakarta.xml.bind-api", + "jakarta.xml.bind:jakarta.xml.bind-api:jar:sources", + "javax.annotation:javax.annotation-api", + "javax.annotation:javax.annotation-api:jar:sources", + "net.bytebuddy:byte-buddy", + "net.bytebuddy:byte-buddy-agent", + "net.bytebuddy:byte-buddy-agent:jar:sources", + "net.bytebuddy:byte-buddy:jar:sources", + "net.minidev:accessors-smart", + "net.minidev:accessors-smart:jar:sources", + "net.minidev:json-smart", + "net.minidev:json-smart:jar:sources", + "org.apache.commons:commons-compress", + "org.apache.commons:commons-compress:jar:sources", + "org.apache.logging.log4j:log4j-api", + "org.apache.logging.log4j:log4j-api:jar:sources", + "org.apache.logging.log4j:log4j-to-slf4j", + "org.apache.logging.log4j:log4j-to-slf4j:jar:sources", + "org.apache.shiro:shiro-cache", + "org.apache.shiro:shiro-cache:jar:sources", + "org.apache.shiro:shiro-config-core", + "org.apache.shiro:shiro-config-core:jar:sources", + "org.apache.shiro:shiro-config-ogdl", + "org.apache.shiro:shiro-config-ogdl:jar:sources", + "org.apache.shiro:shiro-core", + "org.apache.shiro:shiro-core:jar:jakarta", + "org.apache.shiro:shiro-core:jar:sources", + "org.apache.shiro:shiro-crypto-cipher", + "org.apache.shiro:shiro-crypto-cipher:jar:sources", + "org.apache.shiro:shiro-crypto-core", + "org.apache.shiro:shiro-crypto-core:jar:sources", + "org.apache.shiro:shiro-crypto-hash", + "org.apache.shiro:shiro-crypto-hash:jar:sources", + "org.apache.shiro:shiro-event", + "org.apache.shiro:shiro-event:jar:sources", + "org.apache.shiro:shiro-lang", + "org.apache.shiro:shiro-lang:jar:sources", + "org.apache.shiro:shiro-spring:jar:jakarta", + "org.apache.shiro:shiro-spring:jar:sources", + "org.apache.shiro:shiro-web:jar:jakarta", + "org.apache.shiro:shiro-web:jar:sources", + "org.apache.tomcat.embed:tomcat-embed-core", + "org.apache.tomcat.embed:tomcat-embed-core:jar:sources", + "org.apache.tomcat.embed:tomcat-embed-el", + "org.apache.tomcat.embed:tomcat-embed-el:jar:sources", + "org.apache.tomcat.embed:tomcat-embed-websocket", + "org.apache.tomcat.embed:tomcat-embed-websocket:jar:sources", + "org.apiguardian:apiguardian-api", + "org.apiguardian:apiguardian-api:jar:sources", + "org.aspectj:aspectjweaver", + "org.aspectj:aspectjweaver:jar:sources", + "org.assertj:assertj-core", + "org.assertj:assertj-core:jar:sources", + "org.awaitility:awaitility", + "org.awaitility:awaitility:jar:sources", + "org.checkerframework:checker-qual", + "org.checkerframework:checker-qual:jar:sources", + "org.hamcrest:hamcrest", + "org.hamcrest:hamcrest:jar:sources", + "org.junit.jupiter:junit-jupiter", + "org.junit.jupiter:junit-jupiter-api", + "org.junit.jupiter:junit-jupiter-api:jar:sources", + "org.junit.jupiter:junit-jupiter-engine", + "org.junit.jupiter:junit-jupiter-engine:jar:sources", + "org.junit.jupiter:junit-jupiter-params", + "org.junit.jupiter:junit-jupiter-params:jar:sources", + "org.junit.jupiter:junit-jupiter:jar:sources", + "org.junit.platform:junit-platform-commons", + "org.junit.platform:junit-platform-commons:jar:sources", + "org.junit.platform:junit-platform-engine", + "org.junit.platform:junit-platform-engine:jar:sources", + "org.mapstruct:mapstruct", + "org.mapstruct:mapstruct:jar:sources", + "org.mockito:mockito-core", + "org.mockito:mockito-core:jar:sources", + "org.mockito:mockito-junit-jupiter", + "org.mockito:mockito-junit-jupiter:jar:sources", + "org.objenesis:objenesis", + "org.objenesis:objenesis:jar:sources", + "org.opentest4j:opentest4j", + "org.opentest4j:opentest4j:jar:sources", + "org.ow2.asm:asm", + "org.ow2.asm:asm:jar:sources", + "org.owasp.encoder:encoder", + "org.owasp.encoder:encoder:jar:sources", + "org.postgresql:postgresql", + "org.postgresql:postgresql:jar:sources", + "org.quartz-scheduler:quartz", + "org.quartz-scheduler:quartz:jar:sources", + "org.skyscreamer:jsonassert", + "org.skyscreamer:jsonassert:jar:sources", + "org.slf4j:jul-to-slf4j", + "org.slf4j:jul-to-slf4j:jar:sources", + "org.slf4j:slf4j-api", + "org.slf4j:slf4j-api:jar:sources", + "org.springframework.boot:spring-boot", + "org.springframework.boot:spring-boot-autoconfigure", + "org.springframework.boot:spring-boot-autoconfigure:jar:sources", + "org.springframework.boot:spring-boot-devtools", + "org.springframework.boot:spring-boot-devtools:jar:sources", + "org.springframework.boot:spring-boot-loader", + "org.springframework.boot:spring-boot-loader-tools", + "org.springframework.boot:spring-boot-loader-tools:jar:sources", + "org.springframework.boot:spring-boot-loader:jar:sources", + "org.springframework.boot:spring-boot-starter", + "org.springframework.boot:spring-boot-starter-aop", + "org.springframework.boot:spring-boot-starter-aop:jar:sources", + "org.springframework.boot:spring-boot-starter-jdbc", + "org.springframework.boot:spring-boot-starter-jdbc:jar:sources", + "org.springframework.boot:spring-boot-starter-json", + "org.springframework.boot:spring-boot-starter-json:jar:sources", + "org.springframework.boot:spring-boot-starter-logging", + "org.springframework.boot:spring-boot-starter-logging:jar:sources", + "org.springframework.boot:spring-boot-starter-quartz", + "org.springframework.boot:spring-boot-starter-quartz:jar:sources", + "org.springframework.boot:spring-boot-starter-test", + "org.springframework.boot:spring-boot-starter-test:jar:sources", + "org.springframework.boot:spring-boot-starter-tomcat", + "org.springframework.boot:spring-boot-starter-tomcat:jar:sources", + "org.springframework.boot:spring-boot-starter-web", + "org.springframework.boot:spring-boot-starter-web:jar:sources", + "org.springframework.boot:spring-boot-starter:jar:sources", + "org.springframework.boot:spring-boot-test", + "org.springframework.boot:spring-boot-test-autoconfigure", + "org.springframework.boot:spring-boot-test-autoconfigure:jar:sources", + "org.springframework.boot:spring-boot-test:jar:sources", + "org.springframework.boot:spring-boot:jar:sources", + "org.springframework.plugin:spring-plugin-core", + "org.springframework.plugin:spring-plugin-core:jar:sources", + "org.springframework.plugin:spring-plugin-metadata", + "org.springframework.plugin:spring-plugin-metadata:jar:sources", + "org.springframework:spring-aop", + "org.springframework:spring-aop:jar:sources", + "org.springframework:spring-beans", + "org.springframework:spring-beans:jar:sources", + "org.springframework:spring-context", + "org.springframework:spring-context-support", + "org.springframework:spring-context-support:jar:sources", + "org.springframework:spring-context:jar:sources", + "org.springframework:spring-core", + "org.springframework:spring-core:jar:sources", + "org.springframework:spring-expression", + "org.springframework:spring-expression:jar:sources", + "org.springframework:spring-jcl", + "org.springframework:spring-jcl:jar:sources", + "org.springframework:spring-jdbc", + "org.springframework:spring-jdbc:jar:sources", + "org.springframework:spring-test", + "org.springframework:spring-test:jar:sources", + "org.springframework:spring-tx", + "org.springframework:spring-tx:jar:sources", + "org.springframework:spring-web", + "org.springframework:spring-web:jar:sources", + "org.springframework:spring-webmvc", + "org.springframework:spring-webmvc:jar:sources", + "org.xmlunit:xmlunit-core", + "org.xmlunit:xmlunit-core:jar:sources", + "org.yaml:snakeyaml", + "org.yaml:snakeyaml:jar:sources" + ], + "https://maven.google.com/": [ + "ch.qos.logback:logback-classic", + "ch.qos.logback:logback-classic:jar:sources", + "ch.qos.logback:logback-core", + "ch.qos.logback:logback-core:jar:sources", + "com.auth0:java-jwt", + "com.auth0:java-jwt:jar:sources", + "com.fasterxml.jackson.core:jackson-annotations", + "com.fasterxml.jackson.core:jackson-annotations:jar:sources", + "com.fasterxml.jackson.core:jackson-core", + "com.fasterxml.jackson.core:jackson-core:jar:sources", + "com.fasterxml.jackson.core:jackson-databind", + "com.fasterxml.jackson.core:jackson-databind:jar:sources", + "com.fasterxml.jackson.datatype:jackson-datatype-jdk8", + "com.fasterxml.jackson.datatype:jackson-datatype-jdk8:jar:sources", + "com.fasterxml.jackson.datatype:jackson-datatype-jsr310", + "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:jar:sources", + "com.fasterxml.jackson.module:jackson-module-parameter-names", + "com.fasterxml.jackson.module:jackson-module-parameter-names:jar:sources", + "com.fasterxml:classmate", + "com.fasterxml:classmate:jar:sources", + "com.jayway.jsonpath:json-path", + "com.jayway.jsonpath:json-path:jar:sources", + "com.mchange:c3p0", + "com.mchange:c3p0:jar:sources", + "com.mchange:mchange-commons-java", + "com.mchange:mchange-commons-java:jar:sources", + "com.vaadin.external.google:android-json", + "com.vaadin.external.google:android-json:jar:sources", + "com.zaxxer:HikariCP", + "com.zaxxer:HikariCP-java7", + "com.zaxxer:HikariCP-java7:jar:sources", + "com.zaxxer:HikariCP:jar:sources", + "commons-beanutils:commons-beanutils", + "commons-beanutils:commons-beanutils:jar:sources", + "commons-collections:commons-collections", + "commons-collections:commons-collections:jar:sources", + "io.github.classgraph:classgraph", + "io.github.classgraph:classgraph:jar:sources", + "io.micrometer:micrometer-commons", + "io.micrometer:micrometer-commons:jar:sources", + "io.micrometer:micrometer-observation", + "io.micrometer:micrometer-observation:jar:sources", + "io.springfox:springfox-bean-validators", + "io.springfox:springfox-bean-validators:jar:sources", + "io.springfox:springfox-boot-starter", + "io.springfox:springfox-boot-starter:jar:sources", + "io.springfox:springfox-core", + "io.springfox:springfox-core:jar:sources", + "io.springfox:springfox-data-rest", + "io.springfox:springfox-data-rest:jar:sources", + "io.springfox:springfox-oas", + "io.springfox:springfox-oas:jar:sources", + "io.springfox:springfox-schema", + "io.springfox:springfox-schema:jar:sources", + "io.springfox:springfox-spi", + "io.springfox:springfox-spi:jar:sources", + "io.springfox:springfox-spring-web", + "io.springfox:springfox-spring-web:jar:sources", + "io.springfox:springfox-spring-webflux", + "io.springfox:springfox-spring-webflux:jar:sources", + "io.springfox:springfox-spring-webmvc", + "io.springfox:springfox-spring-webmvc:jar:sources", + "io.springfox:springfox-swagger-common", + "io.springfox:springfox-swagger-common:jar:sources", + "io.springfox:springfox-swagger-ui", + "io.springfox:springfox-swagger-ui:jar:sources", + "io.springfox:springfox-swagger2", + "io.springfox:springfox-swagger2:jar:sources", + "io.swagger.core.v3:swagger-annotations", + "io.swagger.core.v3:swagger-annotations:jar:sources", + "io.swagger.core.v3:swagger-models", + "io.swagger.core.v3:swagger-models:jar:sources", + "io.swagger:swagger-annotations", + "io.swagger:swagger-annotations:jar:sources", + "io.swagger:swagger-models", + "io.swagger:swagger-models:jar:sources", + "jakarta.activation:jakarta.activation-api", + "jakarta.activation:jakarta.activation-api:jar:sources", + "jakarta.annotation:jakarta.annotation-api", + "jakarta.annotation:jakarta.annotation-api:jar:sources", + "jakarta.servlet:jakarta.servlet-api", + "jakarta.servlet:jakarta.servlet-api:jar:sources", + "jakarta.xml.bind:jakarta.xml.bind-api", + "jakarta.xml.bind:jakarta.xml.bind-api:jar:sources", + "javax.annotation:javax.annotation-api", + "javax.annotation:javax.annotation-api:jar:sources", + "net.bytebuddy:byte-buddy", + "net.bytebuddy:byte-buddy-agent", + "net.bytebuddy:byte-buddy-agent:jar:sources", + "net.bytebuddy:byte-buddy:jar:sources", + "net.minidev:accessors-smart", + "net.minidev:accessors-smart:jar:sources", + "net.minidev:json-smart", + "net.minidev:json-smart:jar:sources", + "org.apache.commons:commons-compress", + "org.apache.commons:commons-compress:jar:sources", + "org.apache.logging.log4j:log4j-api", + "org.apache.logging.log4j:log4j-api:jar:sources", + "org.apache.logging.log4j:log4j-to-slf4j", + "org.apache.logging.log4j:log4j-to-slf4j:jar:sources", + "org.apache.shiro:shiro-cache", + "org.apache.shiro:shiro-cache:jar:sources", + "org.apache.shiro:shiro-config-core", + "org.apache.shiro:shiro-config-core:jar:sources", + "org.apache.shiro:shiro-config-ogdl", + "org.apache.shiro:shiro-config-ogdl:jar:sources", + "org.apache.shiro:shiro-core", + "org.apache.shiro:shiro-core:jar:jakarta", + "org.apache.shiro:shiro-core:jar:sources", + "org.apache.shiro:shiro-crypto-cipher", + "org.apache.shiro:shiro-crypto-cipher:jar:sources", + "org.apache.shiro:shiro-crypto-core", + "org.apache.shiro:shiro-crypto-core:jar:sources", + "org.apache.shiro:shiro-crypto-hash", + "org.apache.shiro:shiro-crypto-hash:jar:sources", + "org.apache.shiro:shiro-event", + "org.apache.shiro:shiro-event:jar:sources", + "org.apache.shiro:shiro-lang", + "org.apache.shiro:shiro-lang:jar:sources", + "org.apache.shiro:shiro-spring:jar:jakarta", + "org.apache.shiro:shiro-spring:jar:sources", + "org.apache.shiro:shiro-web:jar:jakarta", + "org.apache.shiro:shiro-web:jar:sources", + "org.apache.tomcat.embed:tomcat-embed-core", + "org.apache.tomcat.embed:tomcat-embed-core:jar:sources", + "org.apache.tomcat.embed:tomcat-embed-el", + "org.apache.tomcat.embed:tomcat-embed-el:jar:sources", + "org.apache.tomcat.embed:tomcat-embed-websocket", + "org.apache.tomcat.embed:tomcat-embed-websocket:jar:sources", + "org.apiguardian:apiguardian-api", + "org.apiguardian:apiguardian-api:jar:sources", + "org.aspectj:aspectjweaver", + "org.aspectj:aspectjweaver:jar:sources", + "org.assertj:assertj-core", + "org.assertj:assertj-core:jar:sources", + "org.awaitility:awaitility", + "org.awaitility:awaitility:jar:sources", + "org.checkerframework:checker-qual", + "org.checkerframework:checker-qual:jar:sources", + "org.hamcrest:hamcrest", + "org.hamcrest:hamcrest:jar:sources", + "org.junit.jupiter:junit-jupiter", + "org.junit.jupiter:junit-jupiter-api", + "org.junit.jupiter:junit-jupiter-api:jar:sources", + "org.junit.jupiter:junit-jupiter-engine", + "org.junit.jupiter:junit-jupiter-engine:jar:sources", + "org.junit.jupiter:junit-jupiter-params", + "org.junit.jupiter:junit-jupiter-params:jar:sources", + "org.junit.jupiter:junit-jupiter:jar:sources", + "org.junit.platform:junit-platform-commons", + "org.junit.platform:junit-platform-commons:jar:sources", + "org.junit.platform:junit-platform-engine", + "org.junit.platform:junit-platform-engine:jar:sources", + "org.mapstruct:mapstruct", + "org.mapstruct:mapstruct:jar:sources", + "org.mockito:mockito-core", + "org.mockito:mockito-core:jar:sources", + "org.mockito:mockito-junit-jupiter", + "org.mockito:mockito-junit-jupiter:jar:sources", + "org.objenesis:objenesis", + "org.objenesis:objenesis:jar:sources", + "org.opentest4j:opentest4j", + "org.opentest4j:opentest4j:jar:sources", + "org.ow2.asm:asm", + "org.ow2.asm:asm:jar:sources", + "org.owasp.encoder:encoder", + "org.owasp.encoder:encoder:jar:sources", + "org.postgresql:postgresql", + "org.postgresql:postgresql:jar:sources", + "org.quartz-scheduler:quartz", + "org.quartz-scheduler:quartz:jar:sources", + "org.skyscreamer:jsonassert", + "org.skyscreamer:jsonassert:jar:sources", + "org.slf4j:jul-to-slf4j", + "org.slf4j:jul-to-slf4j:jar:sources", + "org.slf4j:slf4j-api", + "org.slf4j:slf4j-api:jar:sources", + "org.springframework.boot:spring-boot", + "org.springframework.boot:spring-boot-autoconfigure", + "org.springframework.boot:spring-boot-autoconfigure:jar:sources", + "org.springframework.boot:spring-boot-devtools", + "org.springframework.boot:spring-boot-devtools:jar:sources", + "org.springframework.boot:spring-boot-loader", + "org.springframework.boot:spring-boot-loader-tools", + "org.springframework.boot:spring-boot-loader-tools:jar:sources", + "org.springframework.boot:spring-boot-loader:jar:sources", + "org.springframework.boot:spring-boot-starter", + "org.springframework.boot:spring-boot-starter-aop", + "org.springframework.boot:spring-boot-starter-aop:jar:sources", + "org.springframework.boot:spring-boot-starter-jdbc", + "org.springframework.boot:spring-boot-starter-jdbc:jar:sources", + "org.springframework.boot:spring-boot-starter-json", + "org.springframework.boot:spring-boot-starter-json:jar:sources", + "org.springframework.boot:spring-boot-starter-logging", + "org.springframework.boot:spring-boot-starter-logging:jar:sources", + "org.springframework.boot:spring-boot-starter-quartz", + "org.springframework.boot:spring-boot-starter-quartz:jar:sources", + "org.springframework.boot:spring-boot-starter-test", + "org.springframework.boot:spring-boot-starter-test:jar:sources", + "org.springframework.boot:spring-boot-starter-tomcat", + "org.springframework.boot:spring-boot-starter-tomcat:jar:sources", + "org.springframework.boot:spring-boot-starter-web", + "org.springframework.boot:spring-boot-starter-web:jar:sources", + "org.springframework.boot:spring-boot-starter:jar:sources", + "org.springframework.boot:spring-boot-test", + "org.springframework.boot:spring-boot-test-autoconfigure", + "org.springframework.boot:spring-boot-test-autoconfigure:jar:sources", + "org.springframework.boot:spring-boot-test:jar:sources", + "org.springframework.boot:spring-boot:jar:sources", + "org.springframework.plugin:spring-plugin-core", + "org.springframework.plugin:spring-plugin-core:jar:sources", + "org.springframework.plugin:spring-plugin-metadata", + "org.springframework.plugin:spring-plugin-metadata:jar:sources", + "org.springframework:spring-aop", + "org.springframework:spring-aop:jar:sources", + "org.springframework:spring-beans", + "org.springframework:spring-beans:jar:sources", + "org.springframework:spring-context", + "org.springframework:spring-context-support", + "org.springframework:spring-context-support:jar:sources", + "org.springframework:spring-context:jar:sources", + "org.springframework:spring-core", + "org.springframework:spring-core:jar:sources", + "org.springframework:spring-expression", + "org.springframework:spring-expression:jar:sources", + "org.springframework:spring-jcl", + "org.springframework:spring-jcl:jar:sources", + "org.springframework:spring-jdbc", + "org.springframework:spring-jdbc:jar:sources", + "org.springframework:spring-test", + "org.springframework:spring-test:jar:sources", + "org.springframework:spring-tx", + "org.springframework:spring-tx:jar:sources", + "org.springframework:spring-web", + "org.springframework:spring-web:jar:sources", + "org.springframework:spring-webmvc", + "org.springframework:spring-webmvc:jar:sources", + "org.xmlunit:xmlunit-core", + "org.xmlunit:xmlunit-core:jar:sources", + "org.yaml:snakeyaml", + "org.yaml:snakeyaml:jar:sources" + ], + "https://repo1.maven.org/maven2/": [ + "ch.qos.logback:logback-classic", + "ch.qos.logback:logback-classic:jar:sources", + "ch.qos.logback:logback-core", + "ch.qos.logback:logback-core:jar:sources", + "com.auth0:java-jwt", + "com.auth0:java-jwt:jar:sources", + "com.fasterxml.jackson.core:jackson-annotations", + "com.fasterxml.jackson.core:jackson-annotations:jar:sources", + "com.fasterxml.jackson.core:jackson-core", + "com.fasterxml.jackson.core:jackson-core:jar:sources", + "com.fasterxml.jackson.core:jackson-databind", + "com.fasterxml.jackson.core:jackson-databind:jar:sources", + "com.fasterxml.jackson.datatype:jackson-datatype-jdk8", + "com.fasterxml.jackson.datatype:jackson-datatype-jdk8:jar:sources", + "com.fasterxml.jackson.datatype:jackson-datatype-jsr310", + "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:jar:sources", + "com.fasterxml.jackson.module:jackson-module-parameter-names", + "com.fasterxml.jackson.module:jackson-module-parameter-names:jar:sources", + "com.fasterxml:classmate", + "com.fasterxml:classmate:jar:sources", + "com.jayway.jsonpath:json-path", + "com.jayway.jsonpath:json-path:jar:sources", + "com.mchange:c3p0", + "com.mchange:c3p0:jar:sources", + "com.mchange:mchange-commons-java", + "com.mchange:mchange-commons-java:jar:sources", + "com.vaadin.external.google:android-json", + "com.vaadin.external.google:android-json:jar:sources", + "com.zaxxer:HikariCP", + "com.zaxxer:HikariCP-java7", + "com.zaxxer:HikariCP-java7:jar:sources", + "com.zaxxer:HikariCP:jar:sources", + "commons-beanutils:commons-beanutils", + "commons-beanutils:commons-beanutils:jar:sources", + "commons-collections:commons-collections", + "commons-collections:commons-collections:jar:sources", + "io.github.classgraph:classgraph", + "io.github.classgraph:classgraph:jar:sources", + "io.micrometer:micrometer-commons", + "io.micrometer:micrometer-commons:jar:sources", + "io.micrometer:micrometer-observation", + "io.micrometer:micrometer-observation:jar:sources", + "io.springfox:springfox-bean-validators", + "io.springfox:springfox-bean-validators:jar:sources", + "io.springfox:springfox-boot-starter", + "io.springfox:springfox-boot-starter:jar:sources", + "io.springfox:springfox-core", + "io.springfox:springfox-core:jar:sources", + "io.springfox:springfox-data-rest", + "io.springfox:springfox-data-rest:jar:sources", + "io.springfox:springfox-oas", + "io.springfox:springfox-oas:jar:sources", + "io.springfox:springfox-schema", + "io.springfox:springfox-schema:jar:sources", + "io.springfox:springfox-spi", + "io.springfox:springfox-spi:jar:sources", + "io.springfox:springfox-spring-web", + "io.springfox:springfox-spring-web:jar:sources", + "io.springfox:springfox-spring-webflux", + "io.springfox:springfox-spring-webflux:jar:sources", + "io.springfox:springfox-spring-webmvc", + "io.springfox:springfox-spring-webmvc:jar:sources", + "io.springfox:springfox-swagger-common", + "io.springfox:springfox-swagger-common:jar:sources", + "io.springfox:springfox-swagger-ui", + "io.springfox:springfox-swagger-ui:jar:sources", + "io.springfox:springfox-swagger2", + "io.springfox:springfox-swagger2:jar:sources", + "io.swagger.core.v3:swagger-annotations", + "io.swagger.core.v3:swagger-annotations:jar:sources", + "io.swagger.core.v3:swagger-models", + "io.swagger.core.v3:swagger-models:jar:sources", + "io.swagger:swagger-annotations", + "io.swagger:swagger-annotations:jar:sources", + "io.swagger:swagger-models", + "io.swagger:swagger-models:jar:sources", + "jakarta.activation:jakarta.activation-api", + "jakarta.activation:jakarta.activation-api:jar:sources", + "jakarta.annotation:jakarta.annotation-api", + "jakarta.annotation:jakarta.annotation-api:jar:sources", + "jakarta.servlet:jakarta.servlet-api", + "jakarta.servlet:jakarta.servlet-api:jar:sources", + "jakarta.xml.bind:jakarta.xml.bind-api", + "jakarta.xml.bind:jakarta.xml.bind-api:jar:sources", + "javax.annotation:javax.annotation-api", + "javax.annotation:javax.annotation-api:jar:sources", + "net.bytebuddy:byte-buddy", + "net.bytebuddy:byte-buddy-agent", + "net.bytebuddy:byte-buddy-agent:jar:sources", + "net.bytebuddy:byte-buddy:jar:sources", + "net.minidev:accessors-smart", + "net.minidev:accessors-smart:jar:sources", + "net.minidev:json-smart", + "net.minidev:json-smart:jar:sources", + "org.apache.commons:commons-compress", + "org.apache.commons:commons-compress:jar:sources", + "org.apache.logging.log4j:log4j-api", + "org.apache.logging.log4j:log4j-api:jar:sources", + "org.apache.logging.log4j:log4j-to-slf4j", + "org.apache.logging.log4j:log4j-to-slf4j:jar:sources", + "org.apache.shiro:shiro-cache", + "org.apache.shiro:shiro-cache:jar:sources", + "org.apache.shiro:shiro-config-core", + "org.apache.shiro:shiro-config-core:jar:sources", + "org.apache.shiro:shiro-config-ogdl", + "org.apache.shiro:shiro-config-ogdl:jar:sources", + "org.apache.shiro:shiro-core", + "org.apache.shiro:shiro-core:jar:jakarta", + "org.apache.shiro:shiro-core:jar:sources", + "org.apache.shiro:shiro-crypto-cipher", + "org.apache.shiro:shiro-crypto-cipher:jar:sources", + "org.apache.shiro:shiro-crypto-core", + "org.apache.shiro:shiro-crypto-core:jar:sources", + "org.apache.shiro:shiro-crypto-hash", + "org.apache.shiro:shiro-crypto-hash:jar:sources", + "org.apache.shiro:shiro-event", + "org.apache.shiro:shiro-event:jar:sources", + "org.apache.shiro:shiro-lang", + "org.apache.shiro:shiro-lang:jar:sources", + "org.apache.shiro:shiro-spring:jar:jakarta", + "org.apache.shiro:shiro-spring:jar:sources", + "org.apache.shiro:shiro-web:jar:jakarta", + "org.apache.shiro:shiro-web:jar:sources", + "org.apache.tomcat.embed:tomcat-embed-core", + "org.apache.tomcat.embed:tomcat-embed-core:jar:sources", + "org.apache.tomcat.embed:tomcat-embed-el", + "org.apache.tomcat.embed:tomcat-embed-el:jar:sources", + "org.apache.tomcat.embed:tomcat-embed-websocket", + "org.apache.tomcat.embed:tomcat-embed-websocket:jar:sources", + "org.apiguardian:apiguardian-api", + "org.apiguardian:apiguardian-api:jar:sources", + "org.aspectj:aspectjweaver", + "org.aspectj:aspectjweaver:jar:sources", + "org.assertj:assertj-core", + "org.assertj:assertj-core:jar:sources", + "org.awaitility:awaitility", + "org.awaitility:awaitility:jar:sources", + "org.checkerframework:checker-qual", + "org.checkerframework:checker-qual:jar:sources", + "org.hamcrest:hamcrest", + "org.hamcrest:hamcrest:jar:sources", + "org.junit.jupiter:junit-jupiter", + "org.junit.jupiter:junit-jupiter-api", + "org.junit.jupiter:junit-jupiter-api:jar:sources", + "org.junit.jupiter:junit-jupiter-engine", + "org.junit.jupiter:junit-jupiter-engine:jar:sources", + "org.junit.jupiter:junit-jupiter-params", + "org.junit.jupiter:junit-jupiter-params:jar:sources", + "org.junit.jupiter:junit-jupiter:jar:sources", + "org.junit.platform:junit-platform-commons", + "org.junit.platform:junit-platform-commons:jar:sources", + "org.junit.platform:junit-platform-engine", + "org.junit.platform:junit-platform-engine:jar:sources", + "org.mapstruct:mapstruct", + "org.mapstruct:mapstruct:jar:sources", + "org.mockito:mockito-core", + "org.mockito:mockito-core:jar:sources", + "org.mockito:mockito-junit-jupiter", + "org.mockito:mockito-junit-jupiter:jar:sources", + "org.objenesis:objenesis", + "org.objenesis:objenesis:jar:sources", + "org.opentest4j:opentest4j", + "org.opentest4j:opentest4j:jar:sources", + "org.ow2.asm:asm", + "org.ow2.asm:asm:jar:sources", + "org.owasp.encoder:encoder", + "org.owasp.encoder:encoder:jar:sources", + "org.postgresql:postgresql", + "org.postgresql:postgresql:jar:sources", + "org.quartz-scheduler:quartz", + "org.quartz-scheduler:quartz:jar:sources", + "org.skyscreamer:jsonassert", + "org.skyscreamer:jsonassert:jar:sources", + "org.slf4j:jul-to-slf4j", + "org.slf4j:jul-to-slf4j:jar:sources", + "org.slf4j:slf4j-api", + "org.slf4j:slf4j-api:jar:sources", + "org.springframework.boot:spring-boot", + "org.springframework.boot:spring-boot-autoconfigure", + "org.springframework.boot:spring-boot-autoconfigure:jar:sources", + "org.springframework.boot:spring-boot-devtools", + "org.springframework.boot:spring-boot-devtools:jar:sources", + "org.springframework.boot:spring-boot-loader", + "org.springframework.boot:spring-boot-loader-tools", + "org.springframework.boot:spring-boot-loader-tools:jar:sources", + "org.springframework.boot:spring-boot-loader:jar:sources", + "org.springframework.boot:spring-boot-starter", + "org.springframework.boot:spring-boot-starter-aop", + "org.springframework.boot:spring-boot-starter-aop:jar:sources", + "org.springframework.boot:spring-boot-starter-jdbc", + "org.springframework.boot:spring-boot-starter-jdbc:jar:sources", + "org.springframework.boot:spring-boot-starter-json", + "org.springframework.boot:spring-boot-starter-json:jar:sources", + "org.springframework.boot:spring-boot-starter-logging", + "org.springframework.boot:spring-boot-starter-logging:jar:sources", + "org.springframework.boot:spring-boot-starter-quartz", + "org.springframework.boot:spring-boot-starter-quartz:jar:sources", + "org.springframework.boot:spring-boot-starter-test", + "org.springframework.boot:spring-boot-starter-test:jar:sources", + "org.springframework.boot:spring-boot-starter-tomcat", + "org.springframework.boot:spring-boot-starter-tomcat:jar:sources", + "org.springframework.boot:spring-boot-starter-web", + "org.springframework.boot:spring-boot-starter-web:jar:sources", + "org.springframework.boot:spring-boot-starter:jar:sources", + "org.springframework.boot:spring-boot-test", + "org.springframework.boot:spring-boot-test-autoconfigure", + "org.springframework.boot:spring-boot-test-autoconfigure:jar:sources", + "org.springframework.boot:spring-boot-test:jar:sources", + "org.springframework.boot:spring-boot:jar:sources", + "org.springframework.plugin:spring-plugin-core", + "org.springframework.plugin:spring-plugin-core:jar:sources", + "org.springframework.plugin:spring-plugin-metadata", + "org.springframework.plugin:spring-plugin-metadata:jar:sources", + "org.springframework:spring-aop", + "org.springframework:spring-aop:jar:sources", + "org.springframework:spring-beans", + "org.springframework:spring-beans:jar:sources", + "org.springframework:spring-context", + "org.springframework:spring-context-support", + "org.springframework:spring-context-support:jar:sources", + "org.springframework:spring-context:jar:sources", + "org.springframework:spring-core", + "org.springframework:spring-core:jar:sources", + "org.springframework:spring-expression", + "org.springframework:spring-expression:jar:sources", + "org.springframework:spring-jcl", + "org.springframework:spring-jcl:jar:sources", + "org.springframework:spring-jdbc", + "org.springframework:spring-jdbc:jar:sources", + "org.springframework:spring-test", + "org.springframework:spring-test:jar:sources", + "org.springframework:spring-tx", + "org.springframework:spring-tx:jar:sources", + "org.springframework:spring-web", + "org.springframework:spring-web:jar:sources", + "org.springframework:spring-webmvc", + "org.springframework:spring-webmvc:jar:sources", + "org.xmlunit:xmlunit-core", + "org.xmlunit:xmlunit-core:jar:sources", + "org.yaml:snakeyaml", + "org.yaml:snakeyaml:jar:sources" + ] + }, + "version": "2" +}