diff --git a/build.gradle.kts b/build.gradle.kts index f0fb9594..805c9f59 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -1,7 +1,13 @@ // Copyright (c) Cosmo Tech. // Licensed under the MIT license. import com.diffplug.gradle.spotless.SpotlessExtension +import com.github.jk1.license.filter.LicenseBundleNormalizer +import com.github.jk1.license.render.* +import com.github.jk1.license.task.CheckLicenseTask +import com.github.jk1.license.task.ReportTask import io.gitlab.arturbosch.detekt.Detekt +import java.io.FileOutputStream +import org.jetbrains.kotlin.gradle.tasks.KotlinCompile plugins { val kotlinVersion = "1.8.0" @@ -11,6 +17,7 @@ plugins { id("io.gitlab.arturbosch.detekt") version "1.22.0" id("pl.allegro.tech.build.axion-release") version "1.14.3" id("org.jetbrains.kotlinx.kover") version "0.6.1" + id("com.github.jk1.dependency-license-report") version "1.17" `maven-publish` // Apply the java-library plugin for API and implementation separation. `java-library` @@ -28,6 +35,46 @@ val kotlinJvmTarget = 17 java { toolchain { languageVersion.set(JavaLanguageVersion.of(kotlinJvmTarget)) } } +var licenseReportDir = "$projectDir/doc/licenses" + +val configBuildDir = "$buildDir/config" + +mkdir(configBuildDir) + +fun downloadLicenseConfigFile(name: String): String { + val localPath = "$configBuildDir/$name" + val f = file(localPath) + f.delete() + val url = "https://raw.githubusercontent.com/Cosmo-Tech/cosmotech-license/main/config/$name" + logger.info("Downloading license config file from $url to $localPath") + uri(url).toURL().openStream().use { it.copyTo(FileOutputStream(f)) } + return localPath +} + +val licenseNormalizerPath = downloadLicenseConfigFile("license-normalizer-bundle.json") +val licenseAllowedPath = + if (project.properties["useLocalLicenseAllowedFile"] == "true") { + "$projectDir/config/allowed-licenses.json" + } else { + downloadLicenseConfigFile("allowed-licenses.json") + } + +logger.info("Using licenses allowed file: $licenseAllowedPath") + +val licenseEmptyPath = downloadLicenseConfigFile("empty-dependencies-resume.json") +// Plugin uses a generated report to check the licenses in a prepation task +val hardCodedLicensesReportPath = "project-licenses-for-check-license-task.json" + +licenseReport { + outputDir = licenseReportDir + allowedLicensesFile = file(licenseAllowedPath) + renderers = + arrayOf( + InventoryHtmlReportRenderer("index.html"), + JsonReportRenderer("project-licenses-for-check-license-task.json", false)) + filters = arrayOf(LicenseBundleNormalizer(licenseNormalizerPath, true)) +} + publishing { repositories { maven { @@ -233,3 +280,45 @@ kover { } } } + +// https://github.com/jk1/Gradle-License-Report/blob/master/README.md +tasks.register("generateLicenseDoc") {} + +tasks.register("validateLicense") { + dependsOn("generateLicenseDoc") + // Gradle task must be rerun each time to take new allowed-license into account. + // Due to an issue in the plugin, we must define each module name for null licenses + // to avoid false negatives in the allowed-license file. + outputs.upToDateWhen { false } +} + +tasks.withType { + // Run licensing tasks before compiling + if (project.properties["skipLicenses"] != "true") { + dependsOn("validateLicense") + } +} + +tasks.register("displayLicensesNotAllowed") { + val notAllowedFile = + file( + buildString { + append(licenseReportDir) + append("/dependencies-without-allowed-license.json") + }) + val dependenciesEmptyResumeTemplate = file(licenseEmptyPath) + if (notAllowedFile.exists() && + (notAllowedFile.readText() != dependenciesEmptyResumeTemplate.readText())) { + logger.warn("Licenses not allowed:") + logger.warn(notAllowedFile.readText()) + logger.warn( + "Please review licenses and add new license check rules in https://github.com/Cosmo-Tech/cosmotech-license") + } +} + +gradle.buildFinished { + if (project.properties["skipLicenses"] != "true") { + val displayTask = tasks.getByName("displayLicensesNotAllowed") + displayTask.run {} + } +} diff --git a/doc/licenses/dependencies-without-allowed-license.json b/doc/licenses/dependencies-without-allowed-license.json new file mode 100644 index 00000000..c0b8fb08 --- /dev/null +++ b/doc/licenses/dependencies-without-allowed-license.json @@ -0,0 +1,5 @@ +{ + "dependenciesWithoutAllowedLicenses": [ + + ] +} \ No newline at end of file diff --git a/doc/licenses/index.html b/doc/licenses/index.html new file mode 100644 index 00000000..ee6de52b --- /dev/null +++ b/doc/licenses/index.html @@ -0,0 +1,2966 @@ + + + +Dependency License Report for cosmotech-api-common + + + +
+ +
+

cosmotech-api-common

+ +

Apache License, Version 2.0

+
+

1. Group: com.fasterxml.jackson.core Name: jackson-annotations Version: 2.14.2

+ + +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+ +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+ + +
+
+

2. Group: com.fasterxml.jackson.core Name: jackson-annotations Version: 2.14.2

+ + +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+ +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+ + +
+
+

3. Group: com.fasterxml.jackson.core Name: jackson-core Version: 2.14.2

+ + +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+ +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+ + +
+
+

4. Group: com.fasterxml.jackson.core Name: jackson-core Version: 2.14.2

+ + +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+ +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+ + +
+
+

5. Group: com.fasterxml.jackson.core Name: jackson-databind Version: 2.14.2

+ + +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+ +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+ + +
+
+

6. Group: com.fasterxml.jackson.core Name: jackson-databind Version: 2.14.2

+ + +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+ +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+ + +
+
+

7. Group: com.fasterxml.jackson.dataformat Name: jackson-dataformat-yaml Version: 2.14.2

+ + +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+ +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+ + +
+
+

8. Group: com.fasterxml.jackson.dataformat Name: jackson-dataformat-yaml Version: 2.14.2

+ + +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+ +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+ + +
+
+

9. Group: com.fasterxml.jackson.datatype Name: jackson-datatype-jdk8 Version: 2.14.2

+ + +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+ +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+
+
+

10. Group: com.fasterxml.jackson.datatype Name: jackson-datatype-jdk8 Version: 2.14.2

+ + +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+ +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+
+
+

11. Group: com.fasterxml.jackson.datatype Name: jackson-datatype-jdk8 Version: 2.14.2

+ + +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+ +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+
+
+

12. Group: com.fasterxml.jackson.datatype Name: jackson-datatype-jsr310 Version: 2.14.2

+ + +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+ +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+ + +
+
+

13. Group: com.fasterxml.jackson.datatype Name: jackson-datatype-jsr310 Version: 2.14.2

+ + +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+ +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+ + +
+
+

14. Group: com.fasterxml.jackson.datatype Name: jackson-datatype-jsr310 Version: 2.14.2

+ + +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+ +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+ + +
+
+

15. Group: com.fasterxml.jackson.module Name: jackson-module-kotlin Version: 2.14.2

+ + +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+ +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+ + +
+
+

16. Group: com.fasterxml.jackson.module Name: jackson-module-kotlin Version: 2.14.2

+ + +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+ +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+ + +
+
+

17. Group: com.fasterxml.jackson.module Name: jackson-module-parameter-names Version: 2.14.2

+ + +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+ +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+
+
+

18. Group: com.fasterxml.jackson.module Name: jackson-module-parameter-names Version: 2.14.2

+ + +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+ +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+
+
+

19. Group: com.fasterxml.jackson.module Name: jackson-module-parameter-names Version: 2.14.2

+ + +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+ +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+
+
+

20. Group: com.github.docker-java Name: docker-java-api Version: 3.2.13

+ + +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+
+
+

21. Group: com.github.docker-java Name: docker-java-transport Version: 3.2.13

+ + +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+
+ +
+

23. Group: com.github.stephenc.jcip Name: jcip-annotations Version: 1.0-1

+ + +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+
+
+

24. Group: com.google.code.findbugs Name: jsr305 Version: 3.0.2

+
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+ + + +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+
+
+

25. Group: com.google.code.findbugs Name: jsr305 Version: 3.0.2

+
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+ + + +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+
+
+

26. Group: com.google.code.findbugs Name: jsr305 Version: 3.0.2

+
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+ + + +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+
+
+

27. Group: com.google.code.gson Name: gson Version: 2.10.1

+ + +
"Apache-2.0";link="https://www.apache.org/licenses/LICENSE-2.0.txt" (Not Packaged)
+ +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+
+
+

28. Group: com.google.errorprone Name: error_prone_annotations Version: 2.11.0

+
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+
+
+

29. Group: com.google.guava Name: failureaccess Version: 1.0.1

+ + +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+ +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+
+
+

30. Group: com.google.guava Name: failureaccess Version: 1.0.1

+ + +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+ +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+
+
+

31. Group: com.google.guava Name: failureaccess Version: 1.0.1

+ + +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+ +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+
+
+

32. Group: com.google.guava Name: guava Version: 31.1-jre

+ + +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+ + + +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+
+
+

33. Group: com.google.guava Name: guava Version: 31.1-jre

+ + +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+ + + +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+
+
+

34. Group: com.google.guava Name: guava Version: 31.1-jre

+ + +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+ + + +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+
+
+

35. Group: com.google.guava Name: listenablefuture Version: 9999.0-empty-to-avoid-conflict-with-guava

+
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+
+
+

36. Group: com.google.j2objc Name: j2objc-annotations Version: 1.3

+ + +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+
+
+

37. Group: com.jayway.jsonpath Name: json-path Version: 2.7.0

+ + +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+
+
+

38. Group: com.nimbusds Name: content-type Version: 2.2

+ + +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+ + + +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+
+
+

39. Group: com.nimbusds Name: content-type Version: 2.2

+ + +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+ + + +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+
+
+

40. Group: com.nimbusds Name: lang-tag Version: 1.6

+ + +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+ + + +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+
+
+

41. Group: com.nimbusds Name: lang-tag Version: 1.6

+ + +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+ + + +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+
+
+

42. Group: com.nimbusds Name: lang-tag Version: 1.6

+ + +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+ + + +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+
+
+

43. Group: com.nimbusds Name: nimbus-jose-jwt Version: 9.24.4

+ + +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+ + + +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+
+
+

44. Group: com.nimbusds Name: nimbus-jose-jwt Version: 9.24.4

+ + +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+ + + +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+
+
+

45. Group: com.nimbusds Name: oauth2-oidc-sdk Version: 9.35

+ + +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+ + + +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+
+
+

46. Group: com.nimbusds Name: oauth2-oidc-sdk Version: 9.35

+ + +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+ + + +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+
+
+

47. Group: com.okta.commons Name: okta-commons-lang Version: 1.3.1

+
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+
+
+

48. Group: com.okta.commons Name: okta-config-check Version: 1.3.1

+
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+
+
+

49. Group: com.okta.spring Name: okta-spring-boot-starter Version: 2.1.6

+
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+
+
+

50. Group: com.okta.spring Name: okta-spring-sdk Version: 2.1.6

+
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+
+
+

51. Group: com.okta.spring Name: okta-spring-security-oauth2 Version: 2.1.6

+
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+
+
+

52. Group: com.redis Name: lettucemod Version: 3.0.1

+ + +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+ + +
+
+

53. Group: com.redis Name: redis-enterprise-admin Version: 0.3.0

+ + +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+ + +
+
+

54. Group: com.redis.testcontainers Name: testcontainers-redis Version: 1.6.2

+ + +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+ + +
+
+

55. Group: com.redis.testcontainers Name: testcontainers-redis-junit Version: 1.6.2

+ + +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+ + +
+
+

56. Group: com.squareup Name: javapoet Version: 1.13.0

+ + +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+
+
+

57. Group: com.squareup.okhttp3 Name: logging-interceptor Version: 4.10.0

+ + +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+
+
+

58. Group: com.squareup.okhttp3 Name: okhttp Version: 4.10.0

+ + +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+ + +
+
+

59. Group: com.squareup.okio Name: okio-jvm Version: 3.0.0

+ + +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+
+
+

60. Group: com.vaadin.external.google Name: android-json Version: 0.0.20131108.vaadin1

+ + +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+
+
+

61. Group: commons-codec Name: commons-codec Version: 1.15

+ + +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+ +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+ + +
+
+

62. Group: commons-codec Name: commons-codec Version: 1.15

+ + +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+ +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+ + +
+
+

63. Group: commons-io Name: commons-io Version: 2.11.0

+ + +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+ +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+ + +
+
+

64. Group: commons-io Name: commons-io Version: 2.11.0

+ + +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+ +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+ + +
+
+

65. Group: io.gsonfire Name: gson-fire Version: 1.8.5

+ + +
"Apache-2.0";link="https://www.apache.org/licenses/LICENSE-2.0.txt" (Not Packaged)
+ +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+
+
+

66. Group: io.kubernetes Name: client-java Version: 18.0.0

+
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+ + + +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+
+
+

67. Group: io.kubernetes Name: client-java Version: 18.0.0

+
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+ + + +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+
+
+

68. Group: io.kubernetes Name: client-java Version: 18.0.0

+
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+ + + +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+
+
+

69. Group: io.kubernetes Name: client-java-api Version: 18.0.0

+
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+ + + +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+
+
+

70. Group: io.kubernetes Name: client-java-api Version: 18.0.0

+
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+ + + +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+
+
+

71. Group: io.kubernetes Name: client-java-api Version: 18.0.0

+
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+ + + +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+
+
+

72. Group: io.kubernetes Name: client-java-proto Version: 18.0.0

+
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+ + + +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+
+
+

73. Group: io.kubernetes Name: client-java-proto Version: 18.0.0

+
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+ + + +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+
+
+

74. Group: io.kubernetes Name: client-java-proto Version: 18.0.0

+
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+ + + +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+
+
+

75. Group: io.lettuce Name: lettuce-core Version: 6.2.0.RELEASE

+ + +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+ + +
+
+

76. Group: io.micrometer Name: micrometer-core Version: 1.9.10

+ + +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+ + +
+
+

77. Group: io.micrometer Name: micrometer-registry-prometheus Version: 1.9.10

+ + +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+ + +
+
+

78. Group: io.netty Name: netty-buffer Version: 4.1.91.Final

+ + +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+ +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+
+
+

79. Group: io.netty Name: netty-buffer Version: 4.1.91.Final

+ + +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+ +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+
+
+

80. Group: io.netty Name: netty-codec Version: 4.1.91.Final

+ + +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+ +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+
+
+

81. Group: io.netty Name: netty-codec Version: 4.1.91.Final

+ + +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+ +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+
+
+

82. Group: io.netty Name: netty-common Version: 4.1.91.Final

+ + +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+ +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+
+
+

83. Group: io.netty Name: netty-common Version: 4.1.91.Final

+ + +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+ +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+
+
+

84. Group: io.netty Name: netty-handler Version: 4.1.91.Final

+ + +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+ +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+
+
+

85. Group: io.netty Name: netty-handler Version: 4.1.91.Final

+ + +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+ +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+
+
+

86. Group: io.netty Name: netty-resolver Version: 4.1.91.Final

+ + +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+ +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+
+
+

87. Group: io.netty Name: netty-resolver Version: 4.1.91.Final

+ + +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+ +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+
+
+

88. Group: io.netty Name: netty-transport Version: 4.1.91.Final

+ + +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+ +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+
+
+

89. Group: io.netty Name: netty-transport Version: 4.1.91.Final

+ + +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+ +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+
+
+

90. Group: io.netty Name: netty-transport-native-unix-common Version: 4.1.91.Final

+ + +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+ +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+
+
+

91. Group: io.netty Name: netty-transport-native-unix-common Version: 4.1.91.Final

+ + +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+ +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+
+
+

92. Group: io.projectreactor Name: reactor-core Version: 3.4.29

+ + +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+
+
+

93. Group: io.prometheus Name: simpleclient Version: 0.15.0

+
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+ +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+
+
+

94. Group: io.prometheus Name: simpleclient Version: 0.15.0

+
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+ +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+
+
+

95. Group: io.prometheus Name: simpleclient Version: 0.15.0

+
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+ +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+
+
+

96. Group: io.prometheus Name: simpleclient_common Version: 0.15.0

+
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+ +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+
+
+

97. Group: io.prometheus Name: simpleclient_common Version: 0.15.0

+
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+ +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+
+
+

98. Group: io.prometheus Name: simpleclient_common Version: 0.15.0

+
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+ +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+
+
+

99. Group: io.prometheus Name: simpleclient_httpserver Version: 0.15.0

+
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+ +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+
+
+

100. Group: io.prometheus Name: simpleclient_httpserver Version: 0.15.0

+
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+ +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+
+
+

101. Group: io.prometheus Name: simpleclient_httpserver Version: 0.15.0

+
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+ +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+
+
+

102. Group: io.prometheus Name: simpleclient_tracer_common Version: 0.15.0

+
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+ +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+
+
+

103. Group: io.prometheus Name: simpleclient_tracer_common Version: 0.15.0

+
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+ +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+
+
+

104. Group: io.prometheus Name: simpleclient_tracer_common Version: 0.15.0

+
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+ +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+
+
+

105. Group: io.prometheus Name: simpleclient_tracer_otel Version: 0.15.0

+
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+ +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+
+
+

106. Group: io.prometheus Name: simpleclient_tracer_otel Version: 0.15.0

+
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+ +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+
+
+

107. Group: io.prometheus Name: simpleclient_tracer_otel Version: 0.15.0

+
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+ +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+
+
+

108. Group: io.prometheus Name: simpleclient_tracer_otel_agent Version: 0.15.0

+
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+ +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+
+
+

109. Group: io.prometheus Name: simpleclient_tracer_otel_agent Version: 0.15.0

+
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+ +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+
+
+

110. Group: io.prometheus Name: simpleclient_tracer_otel_agent Version: 0.15.0

+
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+ +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+
+
+

111. Group: io.swagger Name: swagger-annotations Version: 1.6.9

+
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+ +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+
+
+

112. Group: io.swagger Name: swagger-annotations Version: 1.6.9

+
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+ +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+
+
+

113. Group: io.swagger.core.v3 Name: swagger-annotations Version: 2.2.9

+ + +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+ +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+ + +
+
+

114. Group: io.swagger.core.v3 Name: swagger-annotations Version: 2.2.9

+ + +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+ +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+ + +
+
+

115. Group: io.swagger.core.v3 Name: swagger-core Version: 2.2.9

+ + +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+ +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+ + +
+
+

116. Group: io.swagger.core.v3 Name: swagger-core Version: 2.2.9

+ + +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+ +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+ + +
+
+

117. Group: io.swagger.core.v3 Name: swagger-models Version: 2.2.9

+ + +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+ +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+ + +
+
+

118. Group: io.swagger.core.v3 Name: swagger-models Version: 2.2.9

+ + +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+ +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+ + +
+
+

119. Group: io.swagger.parser.v3 Name: swagger-parser-core Version: 2.1.13

+
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+
+
+

120. Group: io.swagger.parser.v3 Name: swagger-parser-v3 Version: 2.1.13

+
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+
+
+

121. Group: jakarta.validation Name: jakarta.validation-api Version: 2.0.2

+ + +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+ + + +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+ + + +
GNU GENERAL PUBLIC LICENSE, Version 2 + Classpath Exception - https://openjdk.java.net/legal/gplv2+ce.html
+
+
+

122. Group: jakarta.validation Name: jakarta.validation-api Version: 2.0.2

+ + +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+ + + +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+ + + +
GNU GENERAL PUBLIC LICENSE, Version 2 + Classpath Exception - https://openjdk.java.net/legal/gplv2+ce.html
+
+
+

123. Group: jakarta.validation Name: jakarta.validation-api Version: 2.0.2

+ + +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+ + + +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+ + + +
GNU GENERAL PUBLIC LICENSE, Version 2 + Classpath Exception - https://openjdk.java.net/legal/gplv2+ce.html
+
+
+

124. Group: javax.validation Name: validation-api Version: 2.0.1.Final

+
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+ + + +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+ + +
+
+

125. Group: javax.validation Name: validation-api Version: 2.0.1.Final

+
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+ + + +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+ + +
+
+

126. Group: javax.validation Name: validation-api Version: 2.0.1.Final

+
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+ + + +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+ + +
+
+

127. Group: net.bytebuddy Name: byte-buddy Version: 1.12.23

+
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+ +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+ + +
+
+

128. Group: net.bytebuddy Name: byte-buddy Version: 1.12.23

+
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+ +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+ + +
+
+

129. Group: net.bytebuddy Name: byte-buddy-agent Version: 1.12.23

+
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+ +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+ + +
+
+

130. Group: net.bytebuddy Name: byte-buddy-agent Version: 1.12.23

+
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+ +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+ + +
+
+

131. Group: net.java.dev.jna Name: jna Version: 5.8.0

+ + +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+ + + + +
+
+

132. Group: net.minidev Name: accessors-smart Version: 2.4.9

+ + +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+ +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+
+
+

133. Group: net.minidev Name: accessors-smart Version: 2.4.9

+ + +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+ +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+
+
+

134. Group: net.minidev Name: accessors-smart Version: 2.4.9

+ + +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+ +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+
+
+

135. Group: net.minidev Name: json-smart Version: 2.4.10

+ + +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+ +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+
+
+

136. Group: net.minidev Name: json-smart Version: 2.4.10

+ + +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+ +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+
+
+

137. Group: net.minidev Name: json-smart Version: 2.4.10

+ + +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+ +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+
+
+

138. Group: org.apache.commons Name: commons-collections4 Version: 4.4

+ + +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+ +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+ + +
+
+

139. Group: org.apache.commons Name: commons-collections4 Version: 4.4

+ + +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+ +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+ + +
+
+

140. Group: org.apache.commons Name: commons-compress Version: 1.22

+ + +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+ +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+ + +
+
+

141. Group: org.apache.commons Name: commons-compress Version: 1.22

+ + +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+ +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+ + +
+
+

142. Group: org.apache.commons Name: commons-lang3 Version: 3.12.0

+ + +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+ +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+ + +
+
+

143. Group: org.apache.commons Name: commons-lang3 Version: 3.12.0

+ + +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+ +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+ + +
+
+

144. Group: org.apache.commons Name: commons-pool2 Version: 2.11.1

+ + +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+ +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+ + +
+
+

145. Group: org.apache.commons Name: commons-pool2 Version: 2.11.1

+ + +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+ +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+ + +
+
+

146. Group: org.apache.httpcomponents.client5 Name: httpclient5 Version: 5.1.4

+
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+ + +
+
+

147. Group: org.apache.httpcomponents.core5 Name: httpcore5 Version: 5.1.5

+
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+ + +
+
+

148. Group: org.apache.httpcomponents.core5 Name: httpcore5-h2 Version: 5.1.5

+
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+ + +
+
+

149. Group: org.apache.logging.log4j Name: log4j-api Version: 2.17.2

+ + +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+ +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+ + +
+
+

150. Group: org.apache.logging.log4j Name: log4j-api Version: 2.17.2

+ + +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+ +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+ + +
+
+

151. Group: org.apache.logging.log4j Name: log4j-to-slf4j Version: 2.17.2

+ + +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+ +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+ + +
+
+

152. Group: org.apache.logging.log4j Name: log4j-to-slf4j Version: 2.17.2

+ + +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+ +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+ + +
+
+

153. Group: org.apache.tika Name: tika-core Version: 2.6.0

+ + +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+ +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+ + +
+
+

154. Group: org.apache.tika Name: tika-core Version: 2.6.0

+ + +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+ +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+ + +
+
+

155. Group: org.apiguardian Name: apiguardian-api Version: 1.1.2

+ + +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+ + +
+
+

156. Group: org.assertj Name: assertj-core Version: 3.22.0

+ + +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+ +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+
+
+

157. Group: org.assertj Name: assertj-core Version: 3.22.0

+ + +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+ +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+
+
+

158. Group: org.awaitility Name: awaitility Version: 4.2.0

+
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+ + + +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+
+
+

159. Group: org.awaitility Name: awaitility Version: 4.2.0

+
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+ + + +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+
+
+

160. Group: org.awaitility Name: awaitility Version: 4.2.0

+
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+ + + +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+
+
+

161. Group: org.bitbucket.b_c Name: jose4j Version: 0.9.3

+
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+ + + +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+
+
+

162. Group: org.bitbucket.b_c Name: jose4j Version: 0.9.3

+
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+ + + +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+
+
+

163. Group: org.bitbucket.b_c Name: jose4j Version: 0.9.3

+
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+ + + +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+
+
+

164. Group: org.jetbrains Name: annotations Version: 17.0.0

+ + +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+
+
+

165. Group: org.jetbrains.kotlin Name: kotlin-reflect Version: 1.8.0

+ + +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+
+
+

166. Group: org.jetbrains.kotlin Name: kotlin-stdlib Version: 1.8.0

+ + +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+
+
+

167. Group: org.jetbrains.kotlin Name: kotlin-stdlib-common Version: 1.8.0

+ + +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+
+
+

168. Group: org.jetbrains.kotlin Name: kotlin-stdlib-jdk7 Version: 1.8.0

+ + +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+
+
+

169. Group: org.jetbrains.kotlin Name: kotlin-stdlib-jdk8 Version: 1.8.0

+ + +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+
+
+

170. Group: org.jetbrains.kotlinx Name: kotlinx-coroutines-core-jvm Version: 1.6.4

+ + +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+
+
+

171. Group: org.objenesis Name: objenesis Version: 3.2

+
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+ +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+ + +
+
+

172. Group: org.objenesis Name: objenesis Version: 3.2

+
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+ +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+ + +
+
+

173. Group: org.objenesis Name: objenesis Version: 3.2

+
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+ +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+ + +
+
+

174. Group: org.opentest4j Name: opentest4j Version: 1.2.0

+
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+ + + +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+
+
+

175. Group: org.opentest4j Name: opentest4j Version: 1.2.0

+
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+ + + +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+
+
+

176. Group: org.ow2.asm Name: asm Version: 9.3

+ + + + + + +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+ + +
+
+

177. Group: org.skyscreamer Name: jsonassert Version: 1.5.1

+ + +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+
+
+

178. Group: org.springdoc Name: springdoc-openapi-common Version: 1.6.13

+
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+
+
+

179. Group: org.springdoc Name: springdoc-openapi-kotlin Version: 1.6.13

+
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+
+
+

180. Group: org.springdoc Name: springdoc-openapi-ui Version: 1.6.13

+
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+
+
+

181. Group: org.springdoc Name: springdoc-openapi-webmvc-core Version: 1.6.13

+
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+
+
+

182. Group: org.springframework Name: spring-aop Version: 5.3.27

+ + +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+ + +
+
+

183. Group: org.springframework Name: spring-beans Version: 5.3.27

+ + +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+ + +
+
+

184. Group: org.springframework Name: spring-context Version: 5.3.27

+ + +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+ + +
+
+

185. Group: org.springframework Name: spring-context-support Version: 5.3.27

+ + +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+ + +
+
+

186. Group: org.springframework Name: spring-core Version: 5.3.27

+ + +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+ + +
+
+

187. Group: org.springframework Name: spring-expression Version: 5.3.27

+ + +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+ + +
+
+

188. Group: org.springframework Name: spring-jcl Version: 5.3.27

+ + +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+ + +
+
+

189. Group: org.springframework Name: spring-oxm Version: 5.3.27

+ + +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+ + +
+
+

190. Group: org.springframework Name: spring-test Version: 5.3.27

+ + +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+ + +
+
+

191. Group: org.springframework Name: spring-tx Version: 5.3.27

+ + +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+ + +
+
+

192. Group: org.springframework Name: spring-web Version: 5.3.27

+ + +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+ + +
+
+

193. Group: org.springframework Name: spring-webmvc Version: 5.3.27

+ + +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+ + +
+
+

194. Group: org.springframework.boot Name: spring-boot Version: 2.7.11

+ + +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+ + +
+
+

195. Group: org.springframework.boot Name: spring-boot-actuator Version: 2.7.11

+ + +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+ + +
+
+

196. Group: org.springframework.boot Name: spring-boot-actuator-autoconfigure Version: 2.7.11

+ + +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+ + +
+
+

197. Group: org.springframework.boot Name: spring-boot-autoconfigure Version: 2.7.11

+ + +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+ + +
+
+

198. Group: org.springframework.boot Name: spring-boot-starter Version: 2.7.11

+ + +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+ + +
+
+

199. Group: org.springframework.boot Name: spring-boot-starter-actuator Version: 2.7.11

+ + +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+ + +
+
+

200. Group: org.springframework.boot Name: spring-boot-starter-aop Version: 2.7.11

+ + +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+ + +
+
+

201. Group: org.springframework.boot Name: spring-boot-starter-json Version: 2.7.11

+ + +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+ + +
+
+

202. Group: org.springframework.boot Name: spring-boot-starter-logging Version: 2.7.11

+ + +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+ + +
+
+

203. Group: org.springframework.boot Name: spring-boot-starter-security Version: 2.7.11

+ + +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+ + +
+
+

204. Group: org.springframework.boot Name: spring-boot-starter-test Version: 2.7.11

+ + +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+ + +
+
+

205. Group: org.springframework.boot Name: spring-boot-starter-web Version: 2.7.11

+ + +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+ + +
+
+

206. Group: org.springframework.boot Name: spring-boot-test Version: 2.7.11

+ + +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+ + +
+
+

207. Group: org.springframework.boot Name: spring-boot-test-autoconfigure Version: 2.7.11

+ + +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+ + +
+
+

208. Group: org.springframework.data Name: spring-data-commons Version: 2.7.11

+
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+ + +
+
+

209. Group: org.springframework.data Name: spring-data-keyvalue Version: 2.7.11

+
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+ + +
+
+

210. Group: org.springframework.data Name: spring-data-redis Version: 2.7.11

+ + +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+ + +
+
+

211. Group: org.springframework.security Name: spring-security-config Version: 5.7.8

+ + +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+
+
+

212. Group: org.springframework.security Name: spring-security-core Version: 5.8.3

+ + +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+
+
+

213. Group: org.springframework.security Name: spring-security-crypto Version: 5.8.3

+ + +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+
+
+

214. Group: org.springframework.security Name: spring-security-jwt Version: 1.1.1.RELEASE

+ + +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+
+
+

215. Group: org.springframework.security Name: spring-security-oauth2-client Version: 5.7.8

+ + +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+
+
+

216. Group: org.springframework.security Name: spring-security-oauth2-core Version: 5.8.3

+ + +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+
+
+

217. Group: org.springframework.security Name: spring-security-oauth2-jose Version: 5.8.3

+ + +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+
+
+

218. Group: org.springframework.security Name: spring-security-oauth2-resource-server Version: 5.8.3

+ + +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+
+
+

219. Group: org.springframework.security Name: spring-security-web Version: 5.8.3

+ + +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+
+
+

220. Group: org.springframework.security.oauth Name: spring-security-oauth2 Version: 2.5.2.RELEASE

+
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+
+
+

221. Group: org.springframework.security.oauth.boot Name: spring-security-oauth2-autoconfigure Version: 2.6.8

+ + +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+
+
+

222. Group: org.webjars Name: swagger-ui Version: 4.15.5

+ + +
Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0
+
+
+

223. Group: org.xmlunit Name: xmlunit-core Version: 2.9.1

+ + +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+ +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+
+
+

224. Group: org.xmlunit Name: xmlunit-core Version: 2.9.1

+ + +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+ +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+
+
+

225. Group: org.xmlunit Name: xmlunit-core Version: 2.9.1

+ + +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+ +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+
+
+

226. Group: org.yaml Name: snakeyaml Version: 2.0

+
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+ + + +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+
+
+

227. Group: org.yaml Name: snakeyaml Version: 2.0

+
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+ + + +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+
+
+

228. Group: org.yaml Name: snakeyaml Version: 2.0

+
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+ + + +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+
+ +

BSD Zero Clause License

+
+

229. Group: org.hamcrest Name: hamcrest Version: 2.2

+ + +
BSD Zero Clause License - https://opensource.org/licenses/0BSD
+ + +
+
+

230. Group: org.hamcrest Name: hamcrest-core Version: 2.2

+ + +
BSD Zero Clause License - https://opensource.org/licenses/0BSD
+ + +
+ +

Bouncy Castle Licence

+
+

231. Group: org.bouncycastle Name: bcpkix-jdk15on Version: 1.64

+ + + +
+
+

232. Group: org.bouncycastle Name: bcpkix-jdk18on Version: 1.72

+ + + +
+
+

233. Group: org.bouncycastle Name: bcprov-jdk15on Version: 1.64

+ + + +
+
+

234. Group: org.bouncycastle Name: bcprov-jdk18on Version: 1.72

+ + + +
+
+

235. Group: org.bouncycastle Name: bcutil-jdk18on Version: 1.72

+ + + +
+ +

CDDL + GPLv2 with classpath exception

+
+

236. Group: javax.activation Name: javax.activation-api Version: 1.2.0

+ + +
CDDL + GPLv2 with classpath exception - https://oss.oracle.com/licenses/CDDL-1.1
+ + +
+
+

237. Group: javax.annotation Name: javax.annotation-api Version: 1.3.2

+ + + + +
CDDL + GPLv2 with classpath exception - https://oss.oracle.com/licenses/CDDL-1.1
+ + +
+
+

238. Group: javax.servlet Name: javax.servlet-api Version: 4.0.1

+ + +
COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.1 - https://oss.oracle.com/licenses/CDDL-1.1
+ + + +
CDDL + GPLv2 with classpath exception - https://oss.oracle.com/licenses/CDDL-1.1
+ +
COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.1 - https://oss.oracle.com/licenses/CDDL-1.1
+ + +
+ +

COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.1

+
+

239. Group: javax.servlet Name: javax.servlet-api Version: 4.0.1

+ + +
COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.1 - https://oss.oracle.com/licenses/CDDL-1.1
+ + + +
CDDL + GPLv2 with classpath exception - https://oss.oracle.com/licenses/CDDL-1.1
+ +
COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.1 - https://oss.oracle.com/licenses/CDDL-1.1
+ + +
+
+

240. Group: javax.servlet Name: javax.servlet-api Version: 4.0.1

+ + +
COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.1 - https://oss.oracle.com/licenses/CDDL-1.1
+ + + +
CDDL + GPLv2 with classpath exception - https://oss.oracle.com/licenses/CDDL-1.1
+ +
COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.1 - https://oss.oracle.com/licenses/CDDL-1.1
+ + +
+
+

241. Group: javax.xml.bind Name: jaxb-api Version: 2.3.1

+ + +
COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.1 - https://oss.oracle.com/licenses/CDDL-1.1
+ +
COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.1 - https://oss.oracle.com/licenses/CDDL-1.1
+ +
GNU GENERAL PUBLIC LICENSE, Version 2 + Classpath Exception - https://openjdk.java.net/legal/gplv2+ce.html
+ + +
+
+

242. Group: javax.xml.bind Name: jaxb-api Version: 2.3.1

+ + +
COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.1 - https://oss.oracle.com/licenses/CDDL-1.1
+ +
COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.1 - https://oss.oracle.com/licenses/CDDL-1.1
+ +
GNU GENERAL PUBLIC LICENSE, Version 2 + Classpath Exception - https://openjdk.java.net/legal/gplv2+ce.html
+ + +
+ +

Creative Commons Legal Code

+
+

243. Group: org.hdrhistogram Name: HdrHistogram Version: 2.1.12

+ + + + + + + + + +
+
+

244. Group: org.latencyutils Name: LatencyUtils Version: 2.0.3

+ + + + + +
+ +

Eclipse Distribution License - v 1.0

+
+

245. Group: com.sun.activation Name: jakarta.activation Version: 1.2.2

+ + +
Eclipse Distribution License - v 1.0 - https://www.eclipse.org/org/documents/edl-v10.html
+ +
Eclipse Distribution License - v 1.0 - https://www.eclipse.org/org/documents/edl-v10.html
+ + + +
GNU GENERAL PUBLIC LICENSE, Version 2 + Classpath Exception - https://openjdk.java.net/legal/gplv2+ce.html
+ + +
+
+

246. Group: com.sun.activation Name: jakarta.activation Version: 1.2.2

+ + +
Eclipse Distribution License - v 1.0 - https://www.eclipse.org/org/documents/edl-v10.html
+ +
Eclipse Distribution License - v 1.0 - https://www.eclipse.org/org/documents/edl-v10.html
+ + + +
GNU GENERAL PUBLIC LICENSE, Version 2 + Classpath Exception - https://openjdk.java.net/legal/gplv2+ce.html
+ + +
+
+

247. Group: com.sun.istack Name: istack-commons-runtime Version: 3.0.12

+ + +
Eclipse Distribution License - v 1.0 - https://www.eclipse.org/org/documents/edl-v10.html
+ +
Eclipse Distribution License - v 1.0 - https://www.eclipse.org/org/documents/edl-v10.html
+ + + +
GNU GENERAL PUBLIC LICENSE, Version 2 + Classpath Exception - https://openjdk.java.net/legal/gplv2+ce.html
+ + +
+
+

248. Group: com.sun.istack Name: istack-commons-runtime Version: 3.0.12

+ + +
Eclipse Distribution License - v 1.0 - https://www.eclipse.org/org/documents/edl-v10.html
+ +
Eclipse Distribution License - v 1.0 - https://www.eclipse.org/org/documents/edl-v10.html
+ + + +
GNU GENERAL PUBLIC LICENSE, Version 2 + Classpath Exception - https://openjdk.java.net/legal/gplv2+ce.html
+ + +
+
+

249. Group: jakarta.activation Name: jakarta.activation-api Version: 1.2.2

+ + +
Eclipse Distribution License - v 1.0 - https://www.eclipse.org/org/documents/edl-v10.html
+ +
Eclipse Distribution License - v 1.0 - https://www.eclipse.org/org/documents/edl-v10.html
+ + + +
GNU GENERAL PUBLIC LICENSE, Version 2 + Classpath Exception - https://openjdk.java.net/legal/gplv2+ce.html
+ + +
+
+

250. Group: jakarta.activation Name: jakarta.activation-api Version: 1.2.2

+ + +
Eclipse Distribution License - v 1.0 - https://www.eclipse.org/org/documents/edl-v10.html
+ +
Eclipse Distribution License - v 1.0 - https://www.eclipse.org/org/documents/edl-v10.html
+ + + +
GNU GENERAL PUBLIC LICENSE, Version 2 + Classpath Exception - https://openjdk.java.net/legal/gplv2+ce.html
+ + +
+
+

251. Group: jakarta.xml.bind Name: jakarta.xml.bind-api Version: 2.3.3

+ + +
Eclipse Distribution License - v 1.0 - https://www.eclipse.org/org/documents/edl-v10.html
+ +
Eclipse Distribution License - v 1.0 - https://www.eclipse.org/org/documents/edl-v10.html
+ + + +
GNU GENERAL PUBLIC LICENSE, Version 2 + Classpath Exception - https://openjdk.java.net/legal/gplv2+ce.html
+ + +
+
+

252. Group: jakarta.xml.bind Name: jakarta.xml.bind-api Version: 2.3.3

+ + +
Eclipse Distribution License - v 1.0 - https://www.eclipse.org/org/documents/edl-v10.html
+ +
Eclipse Distribution License - v 1.0 - https://www.eclipse.org/org/documents/edl-v10.html
+ + + +
GNU GENERAL PUBLIC LICENSE, Version 2 + Classpath Exception - https://openjdk.java.net/legal/gplv2+ce.html
+ + +
+
+

253. Group: org.glassfish.jaxb Name: jaxb-runtime Version: 2.3.8

+ + +
Eclipse Distribution License - v 1.0 - https://www.eclipse.org/org/documents/edl-v10.html
+ + + +
Eclipse Distribution License - v 1.0 - https://www.eclipse.org/org/documents/edl-v10.html
+ + + +
GNU GENERAL PUBLIC LICENSE, Version 2 + Classpath Exception - https://openjdk.java.net/legal/gplv2+ce.html
+ + +
+
+

254. Group: org.glassfish.jaxb Name: jaxb-runtime Version: 2.3.8

+ + +
Eclipse Distribution License - v 1.0 - https://www.eclipse.org/org/documents/edl-v10.html
+ + + +
Eclipse Distribution License - v 1.0 - https://www.eclipse.org/org/documents/edl-v10.html
+ + + +
GNU GENERAL PUBLIC LICENSE, Version 2 + Classpath Exception - https://openjdk.java.net/legal/gplv2+ce.html
+ + +
+
+

255. Group: org.glassfish.jaxb Name: txw2 Version: 2.3.8

+ + +
Eclipse Distribution License - v 1.0 - https://www.eclipse.org/org/documents/edl-v10.html
+ + + +
GNU GENERAL PUBLIC LICENSE, Version 2 + Classpath Exception - https://openjdk.java.net/legal/gplv2+ce.html
+ + +
+ +

Eclipse Public License - v 1.0

+
+

256. Group: ch.qos.logback Name: logback-classic Version: 1.2.12

+ + +
GNU LESSER GENERAL PUBLIC LICENSE, Version 2.1 - https://www.gnu.org/licenses/lgpl-2.1
+ +
Eclipse Public License - v 1.0 - http://www.eclipse.org/legal/epl-v10.html
+ +
GNU LESSER GENERAL PUBLIC LICENSE, Version 2.1 - https://www.gnu.org/licenses/lgpl-2.1
+
+
+

257. Group: ch.qos.logback Name: logback-core Version: 1.2.12

+ + +
GNU LESSER GENERAL PUBLIC LICENSE, Version 2.1 - https://www.gnu.org/licenses/lgpl-2.1
+ +
Eclipse Public License - v 1.0 - http://www.eclipse.org/legal/epl-v10.html
+ +
GNU LESSER GENERAL PUBLIC LICENSE, Version 2.1 - https://www.gnu.org/licenses/lgpl-2.1
+
+
+

258. Group: junit Name: junit Version: 4.13.2

+ + +
Eclipse Public License - v 1.0 - http://www.eclipse.org/legal/epl-v10.html
+
+ +

Eclipse Public License - v 2.0

+
+

259. Group: com.sun.activation Name: jakarta.activation Version: 1.2.2

+ + +
Eclipse Distribution License - v 1.0 - https://www.eclipse.org/org/documents/edl-v10.html
+ +
Eclipse Distribution License - v 1.0 - https://www.eclipse.org/org/documents/edl-v10.html
+ + + +
GNU GENERAL PUBLIC LICENSE, Version 2 + Classpath Exception - https://openjdk.java.net/legal/gplv2+ce.html
+ + +
+
+

260. Group: com.sun.istack Name: istack-commons-runtime Version: 3.0.12

+ + +
Eclipse Distribution License - v 1.0 - https://www.eclipse.org/org/documents/edl-v10.html
+ +
Eclipse Distribution License - v 1.0 - https://www.eclipse.org/org/documents/edl-v10.html
+ + + +
GNU GENERAL PUBLIC LICENSE, Version 2 + Classpath Exception - https://openjdk.java.net/legal/gplv2+ce.html
+ + +
+
+

261. Group: jakarta.activation Name: jakarta.activation-api Version: 1.2.2

+ + +
Eclipse Distribution License - v 1.0 - https://www.eclipse.org/org/documents/edl-v10.html
+ +
Eclipse Distribution License - v 1.0 - https://www.eclipse.org/org/documents/edl-v10.html
+ + + +
GNU GENERAL PUBLIC LICENSE, Version 2 + Classpath Exception - https://openjdk.java.net/legal/gplv2+ce.html
+ + +
+
+

262. Group: jakarta.annotation Name: jakarta.annotation-api Version: 1.3.5

+ + + + + + + + +
GNU GENERAL PUBLIC LICENSE, Version 2 + Classpath Exception - https://openjdk.java.net/legal/gplv2+ce.html
+ + +
+
+

263. Group: jakarta.annotation Name: jakarta.annotation-api Version: 1.3.5

+ + + + + + + + +
GNU GENERAL PUBLIC LICENSE, Version 2 + Classpath Exception - https://openjdk.java.net/legal/gplv2+ce.html
+ + +
+
+

264. Group: jakarta.validation Name: jakarta.validation-api Version: 2.0.2

+ + +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+ + + +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+ + + +
GNU GENERAL PUBLIC LICENSE, Version 2 + Classpath Exception - https://openjdk.java.net/legal/gplv2+ce.html
+
+
+

265. Group: jakarta.xml.bind Name: jakarta.xml.bind-api Version: 2.3.3

+ + +
Eclipse Distribution License - v 1.0 - https://www.eclipse.org/org/documents/edl-v10.html
+ +
Eclipse Distribution License - v 1.0 - https://www.eclipse.org/org/documents/edl-v10.html
+ + + +
GNU GENERAL PUBLIC LICENSE, Version 2 + Classpath Exception - https://openjdk.java.net/legal/gplv2+ce.html
+ + +
+
+

266. Group: org.aspectj Name: aspectjweaver Version: 1.9.7

+ + + +
+
+

267. Group: org.glassfish.jaxb Name: jaxb-runtime Version: 2.3.8

+ + +
Eclipse Distribution License - v 1.0 - https://www.eclipse.org/org/documents/edl-v10.html
+ + + +
Eclipse Distribution License - v 1.0 - https://www.eclipse.org/org/documents/edl-v10.html
+ + + +
GNU GENERAL PUBLIC LICENSE, Version 2 + Classpath Exception - https://openjdk.java.net/legal/gplv2+ce.html
+ + +
+
+

268. Group: org.glassfish.jaxb Name: txw2 Version: 2.3.8

+ + +
Eclipse Distribution License - v 1.0 - https://www.eclipse.org/org/documents/edl-v10.html
+ + + +
GNU GENERAL PUBLIC LICENSE, Version 2 + Classpath Exception - https://openjdk.java.net/legal/gplv2+ce.html
+ + +
+
+

269. Group: org.junit.jupiter Name: junit-jupiter Version: 5.8.2

+ + + + + +
+
+

270. Group: org.junit.jupiter Name: junit-jupiter-api Version: 5.8.2

+ + + + + +
+
+

271. Group: org.junit.jupiter Name: junit-jupiter-engine Version: 5.8.2

+ + + + + +
+
+

272. Group: org.junit.jupiter Name: junit-jupiter-params Version: 5.8.2

+ + + + + +
+
+

273. Group: org.junit.platform Name: junit-platform-commons Version: 1.8.2

+ + + + + +
+
+

274. Group: org.junit.platform Name: junit-platform-engine Version: 1.8.2

+ + + + + +
+ +

GNU GENERAL PUBLIC LICENSE, Version 2 + Classpath Exception

+
+

275. Group: com.sun.activation Name: jakarta.activation Version: 1.2.2

+ + +
Eclipse Distribution License - v 1.0 - https://www.eclipse.org/org/documents/edl-v10.html
+ +
Eclipse Distribution License - v 1.0 - https://www.eclipse.org/org/documents/edl-v10.html
+ + + +
GNU GENERAL PUBLIC LICENSE, Version 2 + Classpath Exception - https://openjdk.java.net/legal/gplv2+ce.html
+ + +
+
+

276. Group: com.sun.istack Name: istack-commons-runtime Version: 3.0.12

+ + +
Eclipse Distribution License - v 1.0 - https://www.eclipse.org/org/documents/edl-v10.html
+ +
Eclipse Distribution License - v 1.0 - https://www.eclipse.org/org/documents/edl-v10.html
+ + + +
GNU GENERAL PUBLIC LICENSE, Version 2 + Classpath Exception - https://openjdk.java.net/legal/gplv2+ce.html
+ + +
+
+

277. Group: jakarta.activation Name: jakarta.activation-api Version: 1.2.2

+ + +
Eclipse Distribution License - v 1.0 - https://www.eclipse.org/org/documents/edl-v10.html
+ +
Eclipse Distribution License - v 1.0 - https://www.eclipse.org/org/documents/edl-v10.html
+ + + +
GNU GENERAL PUBLIC LICENSE, Version 2 + Classpath Exception - https://openjdk.java.net/legal/gplv2+ce.html
+ + +
+
+

278. Group: jakarta.annotation Name: jakarta.annotation-api Version: 1.3.5

+ + + + + + + + +
GNU GENERAL PUBLIC LICENSE, Version 2 + Classpath Exception - https://openjdk.java.net/legal/gplv2+ce.html
+ + +
+
+

279. Group: jakarta.validation Name: jakarta.validation-api Version: 2.0.2

+ + +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+ + + +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+ + + +
GNU GENERAL PUBLIC LICENSE, Version 2 + Classpath Exception - https://openjdk.java.net/legal/gplv2+ce.html
+
+
+

280. Group: jakarta.xml.bind Name: jakarta.xml.bind-api Version: 2.3.3

+ + +
Eclipse Distribution License - v 1.0 - https://www.eclipse.org/org/documents/edl-v10.html
+ +
Eclipse Distribution License - v 1.0 - https://www.eclipse.org/org/documents/edl-v10.html
+ + + +
GNU GENERAL PUBLIC LICENSE, Version 2 + Classpath Exception - https://openjdk.java.net/legal/gplv2+ce.html
+ + +
+
+

281. Group: javax.xml.bind Name: jaxb-api Version: 2.3.1

+ + +
COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.1 - https://oss.oracle.com/licenses/CDDL-1.1
+ +
COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.1 - https://oss.oracle.com/licenses/CDDL-1.1
+ +
GNU GENERAL PUBLIC LICENSE, Version 2 + Classpath Exception - https://openjdk.java.net/legal/gplv2+ce.html
+ + +
+
+

282. Group: org.glassfish.jaxb Name: jaxb-runtime Version: 2.3.8

+ + +
Eclipse Distribution License - v 1.0 - https://www.eclipse.org/org/documents/edl-v10.html
+ + + +
Eclipse Distribution License - v 1.0 - https://www.eclipse.org/org/documents/edl-v10.html
+ + + +
GNU GENERAL PUBLIC LICENSE, Version 2 + Classpath Exception - https://openjdk.java.net/legal/gplv2+ce.html
+ + +
+
+

283. Group: org.glassfish.jaxb Name: txw2 Version: 2.3.8

+ + +
Eclipse Distribution License - v 1.0 - https://www.eclipse.org/org/documents/edl-v10.html
+ + + +
GNU GENERAL PUBLIC LICENSE, Version 2 + Classpath Exception - https://openjdk.java.net/legal/gplv2+ce.html
+ + +
+ +

GNU LESSER GENERAL PUBLIC LICENSE, Version 2.1

+
+

284. Group: ch.qos.logback Name: logback-classic Version: 1.2.12

+ + +
GNU LESSER GENERAL PUBLIC LICENSE, Version 2.1 - https://www.gnu.org/licenses/lgpl-2.1
+ +
Eclipse Public License - v 1.0 - http://www.eclipse.org/legal/epl-v10.html
+ +
GNU LESSER GENERAL PUBLIC LICENSE, Version 2.1 - https://www.gnu.org/licenses/lgpl-2.1
+
+
+

285. Group: ch.qos.logback Name: logback-classic Version: 1.2.12

+ + +
GNU LESSER GENERAL PUBLIC LICENSE, Version 2.1 - https://www.gnu.org/licenses/lgpl-2.1
+ +
Eclipse Public License - v 1.0 - http://www.eclipse.org/legal/epl-v10.html
+ +
GNU LESSER GENERAL PUBLIC LICENSE, Version 2.1 - https://www.gnu.org/licenses/lgpl-2.1
+
+
+

286. Group: ch.qos.logback Name: logback-core Version: 1.2.12

+ + +
GNU LESSER GENERAL PUBLIC LICENSE, Version 2.1 - https://www.gnu.org/licenses/lgpl-2.1
+ +
Eclipse Public License - v 1.0 - http://www.eclipse.org/legal/epl-v10.html
+ +
GNU LESSER GENERAL PUBLIC LICENSE, Version 2.1 - https://www.gnu.org/licenses/lgpl-2.1
+
+
+

287. Group: ch.qos.logback Name: logback-core Version: 1.2.12

+ + +
GNU LESSER GENERAL PUBLIC LICENSE, Version 2.1 - https://www.gnu.org/licenses/lgpl-2.1
+ +
Eclipse Public License - v 1.0 - http://www.eclipse.org/legal/epl-v10.html
+ +
GNU LESSER GENERAL PUBLIC LICENSE, Version 2.1 - https://www.gnu.org/licenses/lgpl-2.1
+
+ +

LGPL, version 2.1

+
+

288. Group: net.java.dev.jna Name: jna Version: 5.8.0

+ + +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+ + + + +
+ +

MIT License

+
+

289. Group: com.github.f4b6a3 Name: ulid-creator Version: 5.0.1

+ + + +
+
+

290. Group: com.redis.om Name: redis-om-spring Version: 0.6.4

+ + + +
+
+

291. Group: io.github.classgraph Name: classgraph Version: 4.8.149

+ + + + + +
+
+

292. Group: io.github.classgraph Name: classgraph Version: 4.8.149

+ + + + + +
+
+

293. Group: org.checkerframework Name: checker-qual Version: 3.12.0

+ + + + + + + +
+
+

294. Group: org.checkerframework Name: checker-qual Version: 3.12.0

+ + + + + + + +
+
+

295. Group: org.hashids Name: hashids Version: 1.0.3

+ + + +
+
+

296. Group: org.mockito Name: mockito-core Version: 4.5.1

+ + + + + +
+
+

297. Group: org.mockito Name: mockito-junit-jupiter Version: 4.5.1

+ + + + + +
+
+

298. Group: org.rnorth.duct-tape Name: duct-tape Version: 1.0.8

+ + + +
+
+

299. Group: org.slf4j Name: jul-to-slf4j Version: 1.7.36

+ + + +
+
+

300. Group: org.slf4j Name: slf4j-api Version: 2.0.6

+ + + + + +
+
+

301. Group: org.testcontainers Name: junit-jupiter Version: 1.17.3

+ + + +
+
+

302. Group: org.testcontainers Name: testcontainers Version: 1.17.3

+ + + +
+
+

303. Group: org.webjars Name: webjars-locator-core Version: 0.52

+ + + +
+
+

304. Group: org.zalando Name: faux-pas Version: 0.9.0

+ + + +
+
+

305. Group: org.zalando Name: jackson-datatype-problem Version: 0.26.0

+ +
+
+

306. Group: org.zalando Name: problem Version: 0.26.0

+ +
+
+

307. Group: org.zalando Name: problem-spring-common Version: 0.27.0

+ +
+
+

308. Group: org.zalando Name: problem-spring-web Version: 0.27.0

+ +
+
+

309. Group: org.zalando Name: problem-spring-web-autoconfigure Version: 0.27.0

+ +
+
+

310. Group: org.zalando Name: problem-spring-web-starter Version: 0.27.0

+ +
+
+

311. Group: org.zalando Name: problem-violations Version: 0.27.0

+ +
+
+

312. Group: redis.clients Name: jedis Version: 3.9.0

+ + + +
+ +

MIT-0

+
+

313. Group: org.reactivestreams Name: reactive-streams Version: 1.0.4

+ + + + + +
+ +

PUBLIC DOMAIN

+
+

314. Group: org.hdrhistogram Name: HdrHistogram Version: 2.1.12

+ + + + + + + + + +
+
+

315. Group: org.latencyutils Name: LatencyUtils Version: 2.0.3

+ + + + + +
+ +

The 2-Clause BSD License

+
+

316. Group: com.redislabs Name: jrebloom Version: 2.2.0

+ + + +
+
+

317. Group: com.redislabs Name: jredisearch Version: 2.2.0

+ + + +
+
+

318. Group: com.redislabs Name: jrejson Version: 1.5.0

+ + + +
+
+

319. Group: org.hdrhistogram Name: HdrHistogram Version: 2.1.12

+ + + + + + + + + +
+
+

320. Group: org.hdrhistogram Name: HdrHistogram Version: 2.1.12

+ + + + + + + + + +
+ +

The 3-Clause BSD License

+
+

321. Group: com.google.protobuf Name: protobuf-java Version: 3.22.0

+ +
+
+

322. Group: com.redislabs Name: jredistimeseries Version: 1.6.0

+ + + + + +
+
+

323. Group: com.redislabs Name: jredistimeseries Version: 1.6.0

+ + + + + +
+
+

324. Group: org.hamcrest Name: hamcrest Version: 2.2

+ + +
BSD Zero Clause License - https://opensource.org/licenses/0BSD
+ + +
+
+

325. Group: org.hamcrest Name: hamcrest-core Version: 2.2

+ + +
BSD Zero Clause License - https://opensource.org/licenses/0BSD
+ + +
+
+

326. Group: org.ow2.asm Name: asm Version: 9.3

+ + + + + + +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+ + +
+
+

327. Group: org.ow2.asm Name: asm Version: 9.3

+ + + + + + +
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0
+ + +
+ +

The JSON License

+
+

328. Group: org.json Name: json Version: 20210307

+ + +
The JSON License - http://json.org/license.html
+
+ +

Unknown

+
+

329. Group: com.fasterxml.jackson Name: jackson-bom Version: 2.14.2

+
+

330. Group: com.squareup.okio Name: okio Version: 3.0.0

+
+

331. Group: org.jetbrains.kotlin Name: kotlin-bom Version: 1.8.0

+
+

332. Group: org.jetbrains.kotlinx Name: kotlinx-coroutines-bom Version: 1.6.4

+
+

333. Group: org.jetbrains.kotlinx Name: kotlinx-coroutines-core Version: 1.6.4

+
+

334. Group: org.junit Name: junit-bom Version: 5.8.2

+
+

335. Group: org.springframework.boot Name: spring-boot-dependencies Version: 2.7.11

+
+ +
+ + diff --git a/doc/licenses/project-licenses-for-check-license-task.json b/doc/licenses/project-licenses-for-check-license-task.json new file mode 100644 index 00000000..1e2e7206 --- /dev/null +++ b/doc/licenses/project-licenses-for-check-license-task.json @@ -0,0 +1,2907 @@ +{ + "dependencies": [ + { + "moduleName": "ch.qos.logback:logback-classic", + "moduleVersion": "1.2.12", + "moduleUrls": [ + "http://www.qos.ch" + ], + "moduleLicenses": [ + { + "moduleLicense": "Eclipse Public License - v 1.0", + "moduleLicenseUrl": "http://www.eclipse.org/legal/epl-v10.html" + }, + { + "moduleLicense": "GNU LESSER GENERAL PUBLIC LICENSE, Version 2.1", + "moduleLicenseUrl": "https://www.gnu.org/licenses/lgpl-2.1" + } + ] + }, + { + "moduleName": "ch.qos.logback:logback-core", + "moduleVersion": "1.2.12", + "moduleUrls": [ + "http://www.qos.ch" + ], + "moduleLicenses": [ + { + "moduleLicense": "Eclipse Public License - v 1.0", + "moduleLicenseUrl": "http://www.eclipse.org/legal/epl-v10.html" + }, + { + "moduleLicense": "GNU LESSER GENERAL PUBLIC LICENSE, Version 2.1", + "moduleLicenseUrl": "https://www.gnu.org/licenses/lgpl-2.1" + } + ] + }, + { + "moduleName": "com.fasterxml.jackson.core:jackson-annotations", + "moduleVersion": "2.14.2", + "moduleUrls": [ + "https://github.com/FasterXML/jackson" + ], + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "com.fasterxml.jackson.core:jackson-core", + "moduleVersion": "2.14.2", + "moduleUrls": [ + "https://github.com/FasterXML/jackson-core" + ], + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "http://www.apache.org/licenses/LICENSE-2.0" + }, + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "com.fasterxml.jackson.core:jackson-databind", + "moduleVersion": "2.14.2", + "moduleUrls": [ + "https://github.com/FasterXML/jackson" + ], + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "http://www.apache.org/licenses/LICENSE-2.0" + }, + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "com.fasterxml.jackson.dataformat:jackson-dataformat-yaml", + "moduleVersion": "2.14.2", + "moduleUrls": [ + "https://github.com/FasterXML/jackson-dataformats-text" + ], + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "http://www.apache.org/licenses/LICENSE-2.0" + }, + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8", + "moduleVersion": "2.14.2", + "moduleUrls": [ + "https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jdk8" + ], + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "http://www.apache.org/licenses/LICENSE-2.0" + }, + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310", + "moduleVersion": "2.14.2", + "moduleUrls": [ + "https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jsr310" + ], + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "http://www.apache.org/licenses/LICENSE-2.0" + }, + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "com.fasterxml.jackson.module:jackson-module-kotlin", + "moduleVersion": "2.14.2", + "moduleUrls": [ + "https://github.com/FasterXML/jackson-module-kotlin" + ], + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "http://www.apache.org/licenses/LICENSE-2.0" + }, + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "com.fasterxml.jackson.module:jackson-module-parameter-names", + "moduleVersion": "2.14.2", + "moduleUrls": [ + "https://github.com/FasterXML/jackson-modules-java8/jackson-module-parameter-names" + ], + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "http://www.apache.org/licenses/LICENSE-2.0" + }, + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "com.fasterxml.jackson:jackson-bom", + "moduleVersion": "2.14.2" + }, + { + "moduleName": "com.github.docker-java:docker-java-api", + "moduleVersion": "3.2.13", + "moduleUrls": [ + "https://github.com/docker-java/docker-java" + ], + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "http://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "com.github.docker-java:docker-java-transport", + "moduleVersion": "3.2.13", + "moduleUrls": [ + "https://github.com/docker-java/docker-java" + ], + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "http://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "com.github.docker-java:docker-java-transport-zerodep", + "moduleVersion": "3.2.13", + "moduleUrls": [ + "https://github.com/docker-java/docker-java" + ], + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "http://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "com.github.f4b6a3:ulid-creator", + "moduleVersion": "5.0.1", + "moduleUrls": [ + "http://github.com/f4b6a3/ulid-creator" + ], + "moduleLicenses": [ + { + "moduleLicense": "MIT License", + "moduleLicenseUrl": "https://opensource.org/licenses/MIT" + } + ] + }, + { + "moduleName": "com.github.stephenc.jcip:jcip-annotations", + "moduleVersion": "1.0-1", + "moduleUrls": [ + "http://stephenc.github.com/jcip-annotations" + ], + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "http://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "com.google.code.findbugs:jsr305", + "moduleVersion": "3.0.2", + "moduleUrls": [ + "http://findbugs.sourceforge.net/" + ], + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "http://www.apache.org/licenses/LICENSE-2.0" + }, + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "com.google.code.gson:gson", + "moduleVersion": "2.10.1", + "moduleUrls": [ + "https://github.com/google/gson/gson" + ], + "moduleLicenses": [ + { + "moduleLicense": "\"Apache-2.0\";link=\"https://www.apache.org/licenses/LICENSE-2.0.txt\"", + "moduleLicenseUrl": null + }, + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "http://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "com.google.errorprone:error_prone_annotations", + "moduleVersion": "2.11.0", + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "http://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "com.google.guava:failureaccess", + "moduleVersion": "1.0.1", + "moduleUrls": [ + "https://github.com/google/guava/" + ], + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "http://www.apache.org/licenses/LICENSE-2.0" + }, + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "com.google.guava:guava", + "moduleVersion": "31.1-jre", + "moduleUrls": [ + "https://github.com/google/guava", + "https://github.com/google/guava/" + ], + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "http://www.apache.org/licenses/LICENSE-2.0" + }, + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "com.google.guava:listenablefuture", + "moduleVersion": "9999.0-empty-to-avoid-conflict-with-guava", + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "http://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "com.google.j2objc:j2objc-annotations", + "moduleVersion": "1.3", + "moduleUrls": [ + "https://github.com/google/j2objc/" + ], + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "http://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "com.google.protobuf:protobuf-java", + "moduleVersion": "3.22.0", + "moduleLicenses": [ + { + "moduleLicense": "The 3-Clause BSD License", + "moduleLicenseUrl": "https://opensource.org/licenses/BSD-3-Clause" + } + ] + }, + { + "moduleName": "com.jayway.jsonpath:json-path", + "moduleVersion": "2.7.0", + "moduleUrls": [ + "https://github.com/jayway/JsonPath" + ], + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "http://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "com.nimbusds:content-type", + "moduleVersion": "2.2", + "moduleUrls": [ + "https://bitbucket.org/connect2id/nimbus-content-type", + "https://connect2id.com" + ], + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "com.nimbusds:lang-tag", + "moduleVersion": "1.6", + "moduleUrls": [ + "https://bitbucket.org/connect2id/nimbus-language-tags", + "https://connect2id.com/" + ], + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "http://www.apache.org/licenses/LICENSE-2.0" + }, + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "com.nimbusds:nimbus-jose-jwt", + "moduleVersion": "9.24.4", + "moduleUrls": [ + "https://bitbucket.org/connect2id/nimbus-jose-jwt", + "https://connect2id.com" + ], + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "com.nimbusds:oauth2-oidc-sdk", + "moduleVersion": "9.35", + "moduleUrls": [ + "https://bitbucket.org/connect2id/oauth-2.0-sdk-with-openid-connect-extensions", + "https://connect2id.com" + ], + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "com.okta.commons:okta-commons-lang", + "moduleVersion": "1.3.1", + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "com.okta.commons:okta-config-check", + "moduleVersion": "1.3.1", + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "com.okta.spring:okta-spring-boot-starter", + "moduleVersion": "2.1.6", + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "com.okta.spring:okta-spring-sdk", + "moduleVersion": "2.1.6", + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "com.okta.spring:okta-spring-security-oauth2", + "moduleVersion": "2.1.6", + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "com.redis.om:redis-om-spring", + "moduleVersion": "0.6.4", + "moduleUrls": [ + "https://github.com/redis/redis-om-spring" + ], + "moduleLicenses": [ + { + "moduleLicense": "MIT License", + "moduleLicenseUrl": "https://opensource.org/licenses/MIT" + } + ] + }, + { + "moduleName": "com.redis.testcontainers:testcontainers-redis", + "moduleVersion": "1.6.2", + "moduleUrls": [ + "https://github.com/redis-developer/testcontainers-redis" + ], + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "http://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "com.redis.testcontainers:testcontainers-redis-junit", + "moduleVersion": "1.6.2", + "moduleUrls": [ + "https://github.com/redis-developer/testcontainers-redis" + ], + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "http://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "com.redis:lettucemod", + "moduleVersion": "3.0.1", + "moduleUrls": [ + "https://github.com/redis-developer/lettucemod" + ], + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "http://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "com.redis:redis-enterprise-admin", + "moduleVersion": "0.3.0", + "moduleUrls": [ + "https://github.com/redis-developer/redis-enterprise-admin" + ], + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "http://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "com.redislabs:jrebloom", + "moduleVersion": "2.2.0", + "moduleUrls": [ + "https://oss.redislabs.com/rebloom" + ], + "moduleLicenses": [ + { + "moduleLicense": "The 2-Clause BSD License", + "moduleLicenseUrl": "https://opensource.org/licenses/BSD-2-Clause" + } + ] + }, + { + "moduleName": "com.redislabs:jredisearch", + "moduleVersion": "2.2.0", + "moduleUrls": [ + "https://redisearch.io" + ], + "moduleLicenses": [ + { + "moduleLicense": "The 2-Clause BSD License", + "moduleLicenseUrl": "https://opensource.org/licenses/BSD-2-Clause" + } + ] + }, + { + "moduleName": "com.redislabs:jredistimeseries", + "moduleVersion": "1.6.0", + "moduleUrls": [ + "https://github.com/RedisTimeSeries/JRedisTimeSeries" + ], + "moduleLicenses": [ + { + "moduleLicense": "The 3-Clause BSD License", + "moduleLicenseUrl": "https://opensource.org/licenses/BSD-3-Clause" + } + ] + }, + { + "moduleName": "com.redislabs:jrejson", + "moduleVersion": "1.5.0", + "moduleUrls": [ + "https://oss.redislabs.com/rejson" + ], + "moduleLicenses": [ + { + "moduleLicense": "The 2-Clause BSD License", + "moduleLicenseUrl": "https://opensource.org/licenses/BSD-2-Clause" + } + ] + }, + { + "moduleName": "com.squareup.okhttp3:logging-interceptor", + "moduleVersion": "4.10.0", + "moduleUrls": [ + "https://square.github.io/okhttp/" + ], + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "http://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "com.squareup.okhttp3:okhttp", + "moduleVersion": "4.10.0", + "moduleUrls": [ + "https://square.github.io/okhttp/" + ], + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "http://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "com.squareup.okio:okio", + "moduleVersion": "3.0.0" + }, + { + "moduleName": "com.squareup.okio:okio-jvm", + "moduleVersion": "3.0.0", + "moduleUrls": [ + "https://github.com/square/okio/" + ], + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "http://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "com.squareup:javapoet", + "moduleVersion": "1.13.0", + "moduleUrls": [ + "http://github.com/square/javapoet/" + ], + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "http://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "com.sun.activation:jakarta.activation", + "moduleVersion": "1.2.2", + "moduleUrls": [ + "https://www.eclipse.org" + ], + "moduleLicenses": [ + { + "moduleLicense": "Eclipse Distribution License - v 1.0", + "moduleLicenseUrl": "https://www.eclipse.org/org/documents/edl-v10.html" + }, + { + "moduleLicense": "Eclipse Public License - v 2.0", + "moduleLicenseUrl": "https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.txt" + }, + { + "moduleLicense": "GNU GENERAL PUBLIC LICENSE, Version 2 + Classpath Exception", + "moduleLicenseUrl": "https://openjdk.java.net/legal/gplv2+ce.html" + } + ] + }, + { + "moduleName": "com.sun.istack:istack-commons-runtime", + "moduleVersion": "3.0.12", + "moduleUrls": [ + "https://www.eclipse.org" + ], + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" + }, + { + "moduleLicense": "Eclipse Distribution License - v 1.0", + "moduleLicenseUrl": "https://www.eclipse.org/org/documents/edl-v10.html" + }, + { + "moduleLicense": "Eclipse Public License - v 2.0", + "moduleLicenseUrl": "https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.txt" + }, + { + "moduleLicense": "GNU GENERAL PUBLIC LICENSE, Version 2 + Classpath Exception", + "moduleLicenseUrl": "https://openjdk.java.net/legal/gplv2+ce.html" + }, + { + "moduleLicense": "PUBLIC DOMAIN", + "moduleLicenseUrl": null + } + ] + }, + { + "moduleName": "com.vaadin.external.google:android-json", + "moduleVersion": "0.0.20131108.vaadin1", + "moduleUrls": [ + "http://developer.android.com/sdk" + ], + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "commons-codec:commons-codec", + "moduleVersion": "1.15", + "moduleUrls": [ + "https://commons.apache.org/proper/commons-codec/" + ], + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "commons-io:commons-io", + "moduleVersion": "2.11.0", + "moduleUrls": [ + "https://commons.apache.org/proper/commons-io/" + ], + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "io.github.classgraph:classgraph", + "moduleVersion": "4.8.149", + "moduleUrls": [ + "https://github.com/classgraph/classgraph" + ], + "moduleLicenses": [ + { + "moduleLicense": "MIT License", + "moduleLicenseUrl": "https://opensource.org/licenses/MIT" + } + ] + }, + { + "moduleName": "io.gsonfire:gson-fire", + "moduleVersion": "1.8.5", + "moduleUrls": [ + "http://gsonfire.io" + ], + "moduleLicenses": [ + { + "moduleLicense": "\"Apache-2.0\";link=\"https://www.apache.org/licenses/LICENSE-2.0.txt\"", + "moduleLicenseUrl": null + }, + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "http://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "io.kubernetes:client-java", + "moduleVersion": "18.0.0", + "moduleUrls": [ + "https://github.com/kubernetes-client/java" + ], + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "http://www.apache.org/licenses/LICENSE-2.0" + }, + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "io.kubernetes:client-java-api", + "moduleVersion": "18.0.0", + "moduleUrls": [ + "https://github.com/kubernetes-client/java" + ], + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "http://www.apache.org/licenses/LICENSE-2.0" + }, + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "io.kubernetes:client-java-proto", + "moduleVersion": "18.0.0", + "moduleUrls": [ + "https://github.com/kubernetes-client/java" + ], + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "http://www.apache.org/licenses/LICENSE-2.0" + }, + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "io.lettuce:lettuce-core", + "moduleVersion": "6.2.0.RELEASE", + "moduleUrls": [ + "http://github.com/lettuce-io/lettuce-core" + ], + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "io.micrometer:micrometer-core", + "moduleVersion": "1.9.10", + "moduleUrls": [ + "https://github.com/micrometer-metrics/micrometer" + ], + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "http://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "io.micrometer:micrometer-registry-prometheus", + "moduleVersion": "1.9.10", + "moduleUrls": [ + "https://github.com/micrometer-metrics/micrometer" + ], + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "http://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "io.netty:netty-buffer", + "moduleVersion": "4.1.91.Final", + "moduleUrls": [ + "https://netty.io/" + ], + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "io.netty:netty-codec", + "moduleVersion": "4.1.91.Final", + "moduleUrls": [ + "https://netty.io/" + ], + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "io.netty:netty-common", + "moduleVersion": "4.1.91.Final", + "moduleUrls": [ + "https://netty.io/" + ], + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "io.netty:netty-handler", + "moduleVersion": "4.1.91.Final", + "moduleUrls": [ + "https://netty.io/" + ], + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "io.netty:netty-resolver", + "moduleVersion": "4.1.91.Final", + "moduleUrls": [ + "https://netty.io/" + ], + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "io.netty:netty-transport", + "moduleVersion": "4.1.91.Final", + "moduleUrls": [ + "https://netty.io/" + ], + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "io.netty:netty-transport-native-unix-common", + "moduleVersion": "4.1.91.Final", + "moduleUrls": [ + "https://netty.io/" + ], + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "io.projectreactor:reactor-core", + "moduleVersion": "3.4.29", + "moduleUrls": [ + "https://github.com/reactor/reactor-core" + ], + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "io.prometheus:simpleclient", + "moduleVersion": "0.15.0", + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "http://www.apache.org/licenses/LICENSE-2.0" + }, + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "io.prometheus:simpleclient_common", + "moduleVersion": "0.15.0", + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "http://www.apache.org/licenses/LICENSE-2.0" + }, + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "io.prometheus:simpleclient_httpserver", + "moduleVersion": "0.15.0", + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "http://www.apache.org/licenses/LICENSE-2.0" + }, + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "io.prometheus:simpleclient_tracer_common", + "moduleVersion": "0.15.0", + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "http://www.apache.org/licenses/LICENSE-2.0" + }, + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "io.prometheus:simpleclient_tracer_otel", + "moduleVersion": "0.15.0", + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "http://www.apache.org/licenses/LICENSE-2.0" + }, + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "io.prometheus:simpleclient_tracer_otel_agent", + "moduleVersion": "0.15.0", + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "http://www.apache.org/licenses/LICENSE-2.0" + }, + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "io.swagger.core.v3:swagger-annotations", + "moduleVersion": "2.2.9", + "moduleUrls": [ + "https://github.com/swagger-api/swagger-core/modules/swagger-annotations" + ], + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "io.swagger.core.v3:swagger-core", + "moduleVersion": "2.2.9", + "moduleUrls": [ + "https://github.com/swagger-api/swagger-core/modules/swagger-core" + ], + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "io.swagger.core.v3:swagger-models", + "moduleVersion": "2.2.9", + "moduleUrls": [ + "https://github.com/swagger-api/swagger-core/modules/swagger-models" + ], + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "io.swagger.parser.v3:swagger-parser-core", + "moduleVersion": "2.1.13", + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "io.swagger.parser.v3:swagger-parser-v3", + "moduleVersion": "2.1.13", + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "io.swagger:swagger-annotations", + "moduleVersion": "1.6.9", + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "jakarta.activation:jakarta.activation-api", + "moduleVersion": "1.2.2", + "moduleUrls": [ + "https://www.eclipse.org" + ], + "moduleLicenses": [ + { + "moduleLicense": "Eclipse Distribution License - v 1.0", + "moduleLicenseUrl": "https://www.eclipse.org/org/documents/edl-v10.html" + }, + { + "moduleLicense": "Eclipse Public License - v 2.0", + "moduleLicenseUrl": "https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.txt" + }, + { + "moduleLicense": "GNU GENERAL PUBLIC LICENSE, Version 2 + Classpath Exception", + "moduleLicenseUrl": "https://openjdk.java.net/legal/gplv2+ce.html" + } + ] + }, + { + "moduleName": "jakarta.annotation:jakarta.annotation-api", + "moduleVersion": "1.3.5", + "moduleUrls": [ + "https://projects.eclipse.org/projects/ee4j.ca", + "https://www.eclipse.org" + ], + "moduleLicenses": [ + { + "moduleLicense": "Eclipse Public License - v 2.0", + "moduleLicenseUrl": "https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.txt" + }, + { + "moduleLicense": "GNU GENERAL PUBLIC LICENSE, Version 2 + Classpath Exception", + "moduleLicenseUrl": "https://openjdk.java.net/legal/gplv2+ce.html" + } + ] + }, + { + "moduleName": "jakarta.validation:jakarta.validation-api", + "moduleVersion": "2.0.2", + "moduleUrls": [ + "https://beanvalidation.org", + "https://www.eclipse.org" + ], + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "http://www.apache.org/licenses/LICENSE-2.0" + }, + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" + }, + { + "moduleLicense": "Eclipse Public License - v 2.0", + "moduleLicenseUrl": "https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.txt" + }, + { + "moduleLicense": "GNU GENERAL PUBLIC LICENSE, Version 2 + Classpath Exception", + "moduleLicenseUrl": "https://openjdk.java.net/legal/gplv2+ce.html" + } + ] + }, + { + "moduleName": "jakarta.xml.bind:jakarta.xml.bind-api", + "moduleVersion": "2.3.3", + "moduleUrls": [ + "https://www.eclipse.org" + ], + "moduleLicenses": [ + { + "moduleLicense": "Eclipse Distribution License - v 1.0", + "moduleLicenseUrl": "https://www.eclipse.org/org/documents/edl-v10.html" + }, + { + "moduleLicense": "Eclipse Public License - v 2.0", + "moduleLicenseUrl": "https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.txt" + }, + { + "moduleLicense": "GNU GENERAL PUBLIC LICENSE, Version 2 + Classpath Exception", + "moduleLicenseUrl": "https://openjdk.java.net/legal/gplv2+ce.html" + } + ] + }, + { + "moduleName": "javax.activation:javax.activation-api", + "moduleVersion": "1.2.0", + "moduleUrls": [ + "http://www.oracle.com" + ], + "moduleLicenses": [ + { + "moduleLicense": null, + "moduleLicenseUrl": "https://github.com/javaee/activation/blob/master/LICENSE.txt" + }, + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" + }, + { + "moduleLicense": "CDDL + GPLv2 with classpath exception", + "moduleLicenseUrl": "https://oss.oracle.com/licenses/CDDL-1.1" + }, + { + "moduleLicense": "COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.0", + "moduleLicenseUrl": "https://oss.oracle.com/licenses/CDDL" + } + ] + }, + { + "moduleName": "javax.annotation:javax.annotation-api", + "moduleVersion": "1.3.2", + "moduleUrls": [ + "http://jcp.org/en/jsr/detail?id=250", + "https://javaee.github.io/glassfish" + ], + "moduleLicenses": [ + { + "moduleLicense": null, + "moduleLicenseUrl": "https://github.com/javaee/javax.annotation/blob/master/LICENSE" + }, + { + "moduleLicense": "CDDL + GPLv2 with classpath exception", + "moduleLicenseUrl": "https://oss.oracle.com/licenses/CDDL-1.1" + }, + { + "moduleLicense": "COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.0", + "moduleLicenseUrl": "https://oss.oracle.com/licenses/CDDL" + } + ] + }, + { + "moduleName": "javax.servlet:javax.servlet-api", + "moduleVersion": "4.0.1", + "moduleUrls": [ + "https://javaee.github.io", + "https://javaee.github.io/servlet-spec/" + ], + "moduleLicenses": [ + { + "moduleLicense": "CDDL + GPLv2 with classpath exception", + "moduleLicenseUrl": "https://oss.oracle.com/licenses/CDDL-1.1" + }, + { + "moduleLicense": "COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.0", + "moduleLicenseUrl": "https://oss.oracle.com/licenses/CDDL" + }, + { + "moduleLicense": "COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.1", + "moduleLicenseUrl": "https://oss.oracle.com/licenses/CDDL-1.1" + } + ] + }, + { + "moduleName": "javax.validation:validation-api", + "moduleVersion": "2.0.1.Final", + "moduleUrls": [ + "http://beanvalidation.org" + ], + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "http://www.apache.org/licenses/LICENSE-2.0" + }, + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "javax.xml.bind:jaxb-api", + "moduleVersion": "2.3.1", + "moduleUrls": [ + "http://www.oracle.com/" + ], + "moduleLicenses": [ + { + "moduleLicense": "COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.0", + "moduleLicenseUrl": "https://oss.oracle.com/licenses/CDDL" + }, + { + "moduleLicense": "COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.1", + "moduleLicenseUrl": "https://oss.oracle.com/licenses/CDDL-1.1" + }, + { + "moduleLicense": "GNU GENERAL PUBLIC LICENSE, Version 2 + Classpath Exception", + "moduleLicenseUrl": "https://openjdk.java.net/legal/gplv2+ce.html" + } + ] + }, + { + "moduleName": "junit:junit", + "moduleVersion": "4.13.2", + "moduleUrls": [ + "http://junit.org" + ], + "moduleLicenses": [ + { + "moduleLicense": "Eclipse Public License - v 1.0", + "moduleLicenseUrl": "http://www.eclipse.org/legal/epl-v10.html" + } + ] + }, + { + "moduleName": "net.bytebuddy:byte-buddy", + "moduleVersion": "1.12.23", + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "net.bytebuddy:byte-buddy-agent", + "moduleVersion": "1.12.23", + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "net.java.dev.jna:jna", + "moduleVersion": "5.8.0", + "moduleUrls": [ + "https://github.com/java-native-access/jna" + ], + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "http://www.apache.org/licenses/LICENSE-2.0" + }, + { + "moduleLicense": "LGPL, version 2.1", + "moduleLicenseUrl": "http://www.gnu.org/licenses/licenses.html" + } + ] + }, + { + "moduleName": "net.minidev:accessors-smart", + "moduleVersion": "2.4.9", + "moduleUrls": [ + "https://urielch.github.io/" + ], + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "http://www.apache.org/licenses/LICENSE-2.0" + }, + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "net.minidev:json-smart", + "moduleVersion": "2.4.10", + "moduleUrls": [ + "https://urielch.github.io/" + ], + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "http://www.apache.org/licenses/LICENSE-2.0" + }, + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "org.apache.commons:commons-collections4", + "moduleVersion": "4.4", + "moduleUrls": [ + "https://commons.apache.org/proper/commons-collections/" + ], + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "org.apache.commons:commons-compress", + "moduleVersion": "1.22", + "moduleUrls": [ + "https://commons.apache.org/proper/commons-compress/" + ], + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" + }, + { + "moduleLicense": "PUBLIC DOMAIN", + "moduleLicenseUrl": null + } + ] + }, + { + "moduleName": "org.apache.commons:commons-lang3", + "moduleVersion": "3.12.0", + "moduleUrls": [ + "https://commons.apache.org/proper/commons-lang/" + ], + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "org.apache.commons:commons-pool2", + "moduleVersion": "2.11.1", + "moduleUrls": [ + "https://commons.apache.org/proper/commons-pool/" + ], + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" + }, + { + "moduleLicense": "PUBLIC DOMAIN", + "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "org.apache.httpcomponents.client5:httpclient5", + "moduleVersion": "5.1.4", + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "org.apache.httpcomponents.core5:httpcore5", + "moduleVersion": "5.1.5", + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "org.apache.httpcomponents.core5:httpcore5-h2", + "moduleVersion": "5.1.5", + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "org.apache.logging.log4j:log4j-api", + "moduleVersion": "2.17.2", + "moduleUrls": [ + "https://www.apache.org/" + ], + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "org.apache.logging.log4j:log4j-to-slf4j", + "moduleVersion": "2.17.2", + "moduleUrls": [ + "https://www.apache.org/" + ], + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "org.apache.tika:tika-core", + "moduleVersion": "2.6.0", + "moduleUrls": [ + "https://tika.apache.org/" + ], + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "org.apiguardian:apiguardian-api", + "moduleVersion": "1.1.2", + "moduleUrls": [ + "https://github.com/apiguardian-team/apiguardian" + ], + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "http://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "org.aspectj:aspectjweaver", + "moduleVersion": "1.9.7", + "moduleUrls": [ + "https://www.eclipse.org/aspectj/" + ], + "moduleLicenses": [ + { + "moduleLicense": "Eclipse Public License - v 2.0", + "moduleLicenseUrl": "https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.txt" + } + ] + }, + { + "moduleName": "org.assertj:assertj-core", + "moduleVersion": "3.22.0", + "moduleUrls": [ + "https://assertj.github.io/doc/assertj-core/" + ], + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "http://www.apache.org/licenses/LICENSE-2.0" + }, + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "org.awaitility:awaitility", + "moduleVersion": "4.2.0", + "moduleUrls": [ + "http://awaitility.org" + ], + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "http://www.apache.org/licenses/LICENSE-2.0" + }, + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "org.bitbucket.b_c:jose4j", + "moduleVersion": "0.9.3", + "moduleUrls": [ + "https://bitbucket.org/b_c/jose4j/" + ], + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "http://www.apache.org/licenses/LICENSE-2.0" + }, + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "org.bouncycastle:bcpkix-jdk15on", + "moduleVersion": "1.64", + "moduleUrls": [ + "https://www.bouncycastle.org/java.html" + ], + "moduleLicenses": [ + { + "moduleLicense": "Bouncy Castle Licence", + "moduleLicenseUrl": "https://www.bouncycastle.org/licence.html" + } + ] + }, + { + "moduleName": "org.bouncycastle:bcpkix-jdk18on", + "moduleVersion": "1.72", + "moduleUrls": [ + "https://www.bouncycastle.org/java.html" + ], + "moduleLicenses": [ + { + "moduleLicense": "Bouncy Castle Licence", + "moduleLicenseUrl": "https://www.bouncycastle.org/licence.html" + } + ] + }, + { + "moduleName": "org.bouncycastle:bcprov-jdk15on", + "moduleVersion": "1.64", + "moduleUrls": [ + "https://www.bouncycastle.org/java.html" + ], + "moduleLicenses": [ + { + "moduleLicense": "Bouncy Castle Licence", + "moduleLicenseUrl": "https://www.bouncycastle.org/licence.html" + } + ] + }, + { + "moduleName": "org.bouncycastle:bcprov-jdk18on", + "moduleVersion": "1.72", + "moduleUrls": [ + "https://www.bouncycastle.org/java.html" + ], + "moduleLicenses": [ + { + "moduleLicense": "Bouncy Castle Licence", + "moduleLicenseUrl": "https://www.bouncycastle.org/licence.html" + } + ] + }, + { + "moduleName": "org.bouncycastle:bcutil-jdk18on", + "moduleVersion": "1.72", + "moduleUrls": [ + "https://www.bouncycastle.org/java.html" + ], + "moduleLicenses": [ + { + "moduleLicense": "Bouncy Castle Licence", + "moduleLicenseUrl": "https://www.bouncycastle.org/licence.html" + } + ] + }, + { + "moduleName": "org.checkerframework:checker-qual", + "moduleVersion": "3.12.0", + "moduleUrls": [ + "https://checkerframework.org" + ], + "moduleLicenses": [ + { + "moduleLicense": "MIT License", + "moduleLicenseUrl": "https://opensource.org/licenses/MIT" + } + ] + }, + { + "moduleName": "org.glassfish.jaxb:jaxb-runtime", + "moduleVersion": "2.3.8", + "moduleUrls": [ + "https://eclipse-ee4j.github.io/jaxb-ri/", + "https://www.eclipse.org" + ], + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" + }, + { + "moduleLicense": "Eclipse Distribution License - v 1.0", + "moduleLicenseUrl": "https://www.eclipse.org/org/documents/edl-v10.html" + }, + { + "moduleLicense": "Eclipse Public License - v 2.0", + "moduleLicenseUrl": "https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.txt" + }, + { + "moduleLicense": "GNU GENERAL PUBLIC LICENSE, Version 2 + Classpath Exception", + "moduleLicenseUrl": "https://openjdk.java.net/legal/gplv2+ce.html" + }, + { + "moduleLicense": "PUBLIC DOMAIN", + "moduleLicenseUrl": null + } + ] + }, + { + "moduleName": "org.glassfish.jaxb:txw2", + "moduleVersion": "2.3.8", + "moduleUrls": [ + "https://eclipse-ee4j.github.io/jaxb-ri/" + ], + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" + }, + { + "moduleLicense": "Eclipse Distribution License - v 1.0", + "moduleLicenseUrl": "https://www.eclipse.org/org/documents/edl-v10.html" + }, + { + "moduleLicense": "Eclipse Public License - v 2.0", + "moduleLicenseUrl": "https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.txt" + }, + { + "moduleLicense": "GNU GENERAL PUBLIC LICENSE, Version 2 + Classpath Exception", + "moduleLicenseUrl": "https://openjdk.java.net/legal/gplv2+ce.html" + }, + { + "moduleLicense": "PUBLIC DOMAIN", + "moduleLicenseUrl": null + } + ] + }, + { + "moduleName": "org.hamcrest:hamcrest", + "moduleVersion": "2.2", + "moduleUrls": [ + "http://hamcrest.org/JavaHamcrest/" + ], + "moduleLicenses": [ + { + "moduleLicense": "BSD Zero Clause License", + "moduleLicenseUrl": "https://opensource.org/licenses/0BSD" + }, + { + "moduleLicense": "The 3-Clause BSD License", + "moduleLicenseUrl": "https://opensource.org/licenses/BSD-3-Clause" + } + ] + }, + { + "moduleName": "org.hamcrest:hamcrest-core", + "moduleVersion": "2.2", + "moduleUrls": [ + "http://hamcrest.org/JavaHamcrest/" + ], + "moduleLicenses": [ + { + "moduleLicense": "BSD Zero Clause License", + "moduleLicenseUrl": "https://opensource.org/licenses/0BSD" + }, + { + "moduleLicense": "The 3-Clause BSD License", + "moduleLicenseUrl": "https://opensource.org/licenses/BSD-3-Clause" + } + ] + }, + { + "moduleName": "org.hashids:hashids", + "moduleVersion": "1.0.3", + "moduleUrls": [ + "https://github.com/jiecao-fm/hashids-java" + ], + "moduleLicenses": [ + { + "moduleLicense": "MIT License", + "moduleLicenseUrl": "https://opensource.org/licenses/MIT" + } + ] + }, + { + "moduleName": "org.hdrhistogram:HdrHistogram", + "moduleVersion": "2.1.12", + "moduleUrls": [ + "http://hdrhistogram.github.io/HdrHistogram/" + ], + "moduleLicenses": [ + { + "moduleLicense": "Creative Commons Legal Code", + "moduleLicenseUrl": "https://creativecommons.org/publicdomain/zero/1.0/legalcode" + }, + { + "moduleLicense": "PUBLIC DOMAIN", + "moduleLicenseUrl": "http://creativecommons.org/publicdomain/zero/1.0/" + }, + { + "moduleLicense": "The 2-Clause BSD License", + "moduleLicenseUrl": "https://opensource.org/licenses/BSD-2-Clause" + } + ] + }, + { + "moduleName": "org.jetbrains.kotlin:kotlin-bom", + "moduleVersion": "1.8.0" + }, + { + "moduleName": "org.jetbrains.kotlin:kotlin-reflect", + "moduleVersion": "1.8.0", + "moduleUrls": [ + "https://kotlinlang.org/" + ], + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "http://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "org.jetbrains.kotlin:kotlin-stdlib", + "moduleVersion": "1.8.0", + "moduleUrls": [ + "https://kotlinlang.org/" + ], + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "http://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "org.jetbrains.kotlin:kotlin-stdlib-common", + "moduleVersion": "1.8.0", + "moduleUrls": [ + "https://kotlinlang.org/" + ], + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "http://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "org.jetbrains.kotlin:kotlin-stdlib-jdk7", + "moduleVersion": "1.8.0", + "moduleUrls": [ + "https://kotlinlang.org/" + ], + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "http://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "org.jetbrains.kotlin:kotlin-stdlib-jdk8", + "moduleVersion": "1.8.0", + "moduleUrls": [ + "https://kotlinlang.org/" + ], + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "http://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "org.jetbrains.kotlinx:kotlinx-coroutines-bom", + "moduleVersion": "1.6.4" + }, + { + "moduleName": "org.jetbrains.kotlinx:kotlinx-coroutines-core", + "moduleVersion": "1.6.4" + }, + { + "moduleName": "org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm", + "moduleVersion": "1.6.4", + "moduleUrls": [ + "https://github.com/Kotlin/kotlinx.coroutines" + ], + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "org.jetbrains:annotations", + "moduleVersion": "17.0.0", + "moduleUrls": [ + "https://github.com/JetBrains/java-annotations" + ], + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "org.json:json", + "moduleVersion": "20210307", + "moduleUrls": [ + "https://github.com/douglascrockford/JSON-java" + ], + "moduleLicenses": [ + { + "moduleLicense": "The JSON License", + "moduleLicenseUrl": "http://json.org/license.html" + } + ] + }, + { + "moduleName": "org.junit.jupiter:junit-jupiter", + "moduleVersion": "5.8.2", + "moduleUrls": [ + "https://junit.org/junit5/" + ], + "moduleLicenses": [ + { + "moduleLicense": "Eclipse Public License - v 2.0", + "moduleLicenseUrl": "https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.txt" + } + ] + }, + { + "moduleName": "org.junit.jupiter:junit-jupiter-api", + "moduleVersion": "5.8.2", + "moduleUrls": [ + "https://junit.org/junit5/" + ], + "moduleLicenses": [ + { + "moduleLicense": "Eclipse Public License - v 2.0", + "moduleLicenseUrl": "https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.txt" + } + ] + }, + { + "moduleName": "org.junit.jupiter:junit-jupiter-engine", + "moduleVersion": "5.8.2", + "moduleUrls": [ + "https://junit.org/junit5/" + ], + "moduleLicenses": [ + { + "moduleLicense": "Eclipse Public License - v 2.0", + "moduleLicenseUrl": "https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.txt" + } + ] + }, + { + "moduleName": "org.junit.jupiter:junit-jupiter-params", + "moduleVersion": "5.8.2", + "moduleUrls": [ + "https://junit.org/junit5/" + ], + "moduleLicenses": [ + { + "moduleLicense": "Eclipse Public License - v 2.0", + "moduleLicenseUrl": "https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.txt" + } + ] + }, + { + "moduleName": "org.junit.platform:junit-platform-commons", + "moduleVersion": "1.8.2", + "moduleUrls": [ + "https://junit.org/junit5/" + ], + "moduleLicenses": [ + { + "moduleLicense": "Eclipse Public License - v 2.0", + "moduleLicenseUrl": "https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.txt" + } + ] + }, + { + "moduleName": "org.junit.platform:junit-platform-engine", + "moduleVersion": "1.8.2", + "moduleUrls": [ + "https://junit.org/junit5/" + ], + "moduleLicenses": [ + { + "moduleLicense": "Eclipse Public License - v 2.0", + "moduleLicenseUrl": "https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.txt" + } + ] + }, + { + "moduleName": "org.junit:junit-bom", + "moduleVersion": "5.8.2" + }, + { + "moduleName": "org.latencyutils:LatencyUtils", + "moduleVersion": "2.0.3", + "moduleUrls": [ + "http://latencyutils.github.io/LatencyUtils/" + ], + "moduleLicenses": [ + { + "moduleLicense": "Creative Commons Legal Code", + "moduleLicenseUrl": "https://creativecommons.org/publicdomain/zero/1.0/legalcode" + }, + { + "moduleLicense": "PUBLIC DOMAIN", + "moduleLicenseUrl": "http://creativecommons.org/publicdomain/zero/1.0/" + } + ] + }, + { + "moduleName": "org.mockito:mockito-core", + "moduleVersion": "4.5.1", + "moduleUrls": [ + "https://github.com/mockito/mockito" + ], + "moduleLicenses": [ + { + "moduleLicense": "MIT License", + "moduleLicenseUrl": "https://opensource.org/licenses/MIT" + } + ] + }, + { + "moduleName": "org.mockito:mockito-junit-jupiter", + "moduleVersion": "4.5.1", + "moduleUrls": [ + "https://github.com/mockito/mockito" + ], + "moduleLicenses": [ + { + "moduleLicense": "MIT License", + "moduleLicenseUrl": "https://opensource.org/licenses/MIT" + } + ] + }, + { + "moduleName": "org.objenesis:objenesis", + "moduleVersion": "3.2", + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "http://www.apache.org/licenses/LICENSE-2.0" + }, + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "org.opentest4j:opentest4j", + "moduleVersion": "1.2.0", + "moduleUrls": [ + "https://github.com/ota4j-team/opentest4j" + ], + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "http://www.apache.org/licenses/LICENSE-2.0" + }, + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "org.ow2.asm:asm", + "moduleVersion": "9.3", + "moduleUrls": [ + "http://asm.ow2.io/", + "http://asm.ow2.org" + ], + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "http://www.apache.org/licenses/LICENSE-2.0" + }, + { + "moduleLicense": "The 3-Clause BSD License", + "moduleLicenseUrl": "https://opensource.org/licenses/BSD-3-Clause" + } + ] + }, + { + "moduleName": "org.reactivestreams:reactive-streams", + "moduleVersion": "1.0.4", + "moduleUrls": [ + "http://reactive-streams.org", + "http://www.reactive-streams.org/" + ], + "moduleLicenses": [ + { + "moduleLicense": "MIT-0", + "moduleLicenseUrl": "https://spdx.org/licenses/MIT-0.html" + } + ] + }, + { + "moduleName": "org.rnorth.duct-tape:duct-tape", + "moduleVersion": "1.0.8", + "moduleUrls": [ + "https://github.com/rnorth/${project.artifactId}" + ], + "moduleLicenses": [ + { + "moduleLicense": "MIT License", + "moduleLicenseUrl": "https://opensource.org/licenses/MIT" + } + ] + }, + { + "moduleName": "org.skyscreamer:jsonassert", + "moduleVersion": "1.5.1", + "moduleUrls": [ + "https://github.com/skyscreamer/JSONassert" + ], + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "http://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "org.slf4j:jul-to-slf4j", + "moduleVersion": "1.7.36", + "moduleUrls": [ + "http://www.slf4j.org" + ], + "moduleLicenses": [ + { + "moduleLicense": "MIT License", + "moduleLicenseUrl": "https://opensource.org/licenses/MIT" + } + ] + }, + { + "moduleName": "org.slf4j:slf4j-api", + "moduleVersion": "2.0.6", + "moduleUrls": [ + "http://www.qos.ch", + "http://www.slf4j.org" + ], + "moduleLicenses": [ + { + "moduleLicense": null, + "moduleLicenseUrl": "http://www.opensource.org/licenses/mit-license.php" + }, + { + "moduleLicense": "MIT License", + "moduleLicenseUrl": "https://opensource.org/licenses/MIT" + } + ] + }, + { + "moduleName": "org.springdoc:springdoc-openapi-common", + "moduleVersion": "1.6.13", + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "org.springdoc:springdoc-openapi-kotlin", + "moduleVersion": "1.6.13", + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "org.springdoc:springdoc-openapi-ui", + "moduleVersion": "1.6.13", + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "org.springdoc:springdoc-openapi-webmvc-core", + "moduleVersion": "1.6.13", + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "org.springframework.boot:spring-boot", + "moduleVersion": "2.7.11", + "moduleUrls": [ + "https://spring.io/projects/spring-boot" + ], + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "org.springframework.boot:spring-boot-actuator", + "moduleVersion": "2.7.11", + "moduleUrls": [ + "https://spring.io/projects/spring-boot" + ], + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "org.springframework.boot:spring-boot-actuator-autoconfigure", + "moduleVersion": "2.7.11", + "moduleUrls": [ + "https://spring.io/projects/spring-boot" + ], + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "org.springframework.boot:spring-boot-autoconfigure", + "moduleVersion": "2.7.11", + "moduleUrls": [ + "https://spring.io/projects/spring-boot" + ], + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "org.springframework.boot:spring-boot-dependencies", + "moduleVersion": "2.7.11" + }, + { + "moduleName": "org.springframework.boot:spring-boot-starter", + "moduleVersion": "2.7.11", + "moduleUrls": [ + "https://spring.io/projects/spring-boot" + ], + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "org.springframework.boot:spring-boot-starter-actuator", + "moduleVersion": "2.7.11", + "moduleUrls": [ + "https://spring.io/projects/spring-boot" + ], + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "org.springframework.boot:spring-boot-starter-aop", + "moduleVersion": "2.7.11", + "moduleUrls": [ + "https://spring.io/projects/spring-boot" + ], + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "org.springframework.boot:spring-boot-starter-json", + "moduleVersion": "2.7.11", + "moduleUrls": [ + "https://spring.io/projects/spring-boot" + ], + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "org.springframework.boot:spring-boot-starter-logging", + "moduleVersion": "2.7.11", + "moduleUrls": [ + "https://spring.io/projects/spring-boot" + ], + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "org.springframework.boot:spring-boot-starter-security", + "moduleVersion": "2.7.11", + "moduleUrls": [ + "https://spring.io/projects/spring-boot" + ], + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "org.springframework.boot:spring-boot-starter-test", + "moduleVersion": "2.7.11", + "moduleUrls": [ + "https://spring.io/projects/spring-boot" + ], + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "org.springframework.boot:spring-boot-starter-web", + "moduleVersion": "2.7.11", + "moduleUrls": [ + "https://spring.io/projects/spring-boot" + ], + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "org.springframework.boot:spring-boot-test", + "moduleVersion": "2.7.11", + "moduleUrls": [ + "https://spring.io/projects/spring-boot" + ], + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "org.springframework.boot:spring-boot-test-autoconfigure", + "moduleVersion": "2.7.11", + "moduleUrls": [ + "https://spring.io/projects/spring-boot" + ], + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "org.springframework.data:spring-data-commons", + "moduleVersion": "2.7.11", + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "org.springframework.data:spring-data-keyvalue", + "moduleVersion": "2.7.11", + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "org.springframework.data:spring-data-redis", + "moduleVersion": "2.7.11", + "moduleUrls": [ + "https://spring.io/projects/spring-data-redis" + ], + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "org.springframework.security.oauth.boot:spring-security-oauth2-autoconfigure", + "moduleVersion": "2.6.8", + "moduleUrls": [ + "https://spring.io/spring-security" + ], + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "org.springframework.security.oauth:spring-security-oauth2", + "moduleVersion": "2.5.2.RELEASE", + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "org.springframework.security:spring-security-config", + "moduleVersion": "5.7.8", + "moduleUrls": [ + "https://spring.io/projects/spring-security" + ], + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "org.springframework.security:spring-security-core", + "moduleVersion": "5.8.3", + "moduleUrls": [ + "https://spring.io/projects/spring-security" + ], + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "org.springframework.security:spring-security-crypto", + "moduleVersion": "5.8.3", + "moduleUrls": [ + "https://spring.io/projects/spring-security" + ], + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "org.springframework.security:spring-security-jwt", + "moduleVersion": "1.1.1.RELEASE", + "moduleUrls": [ + "https://github.com/spring-projects/spring-security-oauth" + ], + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "org.springframework.security:spring-security-oauth2-client", + "moduleVersion": "5.7.8", + "moduleUrls": [ + "https://spring.io/projects/spring-security" + ], + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "org.springframework.security:spring-security-oauth2-core", + "moduleVersion": "5.8.3", + "moduleUrls": [ + "https://spring.io/projects/spring-security" + ], + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "org.springframework.security:spring-security-oauth2-jose", + "moduleVersion": "5.8.3", + "moduleUrls": [ + "https://spring.io/projects/spring-security" + ], + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "org.springframework.security:spring-security-oauth2-resource-server", + "moduleVersion": "5.8.3", + "moduleUrls": [ + "https://spring.io/projects/spring-security" + ], + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "org.springframework.security:spring-security-web", + "moduleVersion": "5.8.3", + "moduleUrls": [ + "https://spring.io/projects/spring-security" + ], + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "org.springframework:spring-aop", + "moduleVersion": "5.3.27", + "moduleUrls": [ + "https://github.com/spring-projects/spring-framework" + ], + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "org.springframework:spring-beans", + "moduleVersion": "5.3.27", + "moduleUrls": [ + "https://github.com/spring-projects/spring-framework" + ], + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "org.springframework:spring-context", + "moduleVersion": "5.3.27", + "moduleUrls": [ + "https://github.com/spring-projects/spring-framework" + ], + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "org.springframework:spring-context-support", + "moduleVersion": "5.3.27", + "moduleUrls": [ + "https://github.com/spring-projects/spring-framework" + ], + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "org.springframework:spring-core", + "moduleVersion": "5.3.27", + "moduleUrls": [ + "https://github.com/spring-projects/spring-framework" + ], + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "org.springframework:spring-expression", + "moduleVersion": "5.3.27", + "moduleUrls": [ + "https://github.com/spring-projects/spring-framework" + ], + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "org.springframework:spring-jcl", + "moduleVersion": "5.3.27", + "moduleUrls": [ + "https://github.com/spring-projects/spring-framework" + ], + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "org.springframework:spring-oxm", + "moduleVersion": "5.3.27", + "moduleUrls": [ + "https://github.com/spring-projects/spring-framework" + ], + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "org.springframework:spring-test", + "moduleVersion": "5.3.27", + "moduleUrls": [ + "https://github.com/spring-projects/spring-framework" + ], + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "org.springframework:spring-tx", + "moduleVersion": "5.3.27", + "moduleUrls": [ + "https://github.com/spring-projects/spring-framework" + ], + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "org.springframework:spring-web", + "moduleVersion": "5.3.27", + "moduleUrls": [ + "https://github.com/spring-projects/spring-framework" + ], + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "org.springframework:spring-webmvc", + "moduleVersion": "5.3.27", + "moduleUrls": [ + "https://github.com/spring-projects/spring-framework" + ], + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "org.testcontainers:junit-jupiter", + "moduleVersion": "1.17.3", + "moduleUrls": [ + "https://testcontainers.org" + ], + "moduleLicenses": [ + { + "moduleLicense": "MIT License", + "moduleLicenseUrl": "https://opensource.org/licenses/MIT" + } + ] + }, + { + "moduleName": "org.testcontainers:testcontainers", + "moduleVersion": "1.17.3", + "moduleUrls": [ + "https://testcontainers.org" + ], + "moduleLicenses": [ + { + "moduleLicense": "MIT License", + "moduleLicenseUrl": "https://opensource.org/licenses/MIT" + } + ] + }, + { + "moduleName": "org.webjars:swagger-ui", + "moduleVersion": "4.15.5", + "moduleUrls": [ + "http://webjars.org" + ], + "moduleLicenses": [ + { + "moduleLicense": null, + "moduleLicenseUrl": "https://github.com/swagger-api/swagger-ui" + }, + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "org.webjars:webjars-locator-core", + "moduleVersion": "0.52", + "moduleUrls": [ + "http://webjars.org" + ], + "moduleLicenses": [ + { + "moduleLicense": "MIT License", + "moduleLicenseUrl": "https://opensource.org/licenses/MIT" + } + ] + }, + { + "moduleName": "org.xmlunit:xmlunit-core", + "moduleVersion": "2.9.1", + "moduleUrls": [ + "https://www.xmlunit.org/" + ], + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "http://www.apache.org/licenses/LICENSE-2.0" + }, + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "org.yaml:snakeyaml", + "moduleVersion": "2.0", + "moduleUrls": [ + "https://bitbucket.org/snakeyaml/snakeyaml" + ], + "moduleLicenses": [ + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "http://www.apache.org/licenses/LICENSE-2.0" + }, + { + "moduleLicense": "Apache License, Version 2.0", + "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" + } + ] + }, + { + "moduleName": "org.zalando:faux-pas", + "moduleVersion": "0.9.0", + "moduleUrls": [ + "https://github.com/zalando/faux-pas" + ], + "moduleLicenses": [ + { + "moduleLicense": "MIT License", + "moduleLicenseUrl": "https://opensource.org/licenses/MIT" + } + ] + }, + { + "moduleName": "org.zalando:jackson-datatype-problem", + "moduleVersion": "0.26.0", + "moduleLicenses": [ + { + "moduleLicense": "MIT License", + "moduleLicenseUrl": "https://opensource.org/licenses/MIT" + } + ] + }, + { + "moduleName": "org.zalando:problem", + "moduleVersion": "0.26.0", + "moduleLicenses": [ + { + "moduleLicense": "MIT License", + "moduleLicenseUrl": "https://opensource.org/licenses/MIT" + } + ] + }, + { + "moduleName": "org.zalando:problem-spring-common", + "moduleVersion": "0.27.0", + "moduleLicenses": [ + { + "moduleLicense": "MIT License", + "moduleLicenseUrl": "https://opensource.org/licenses/MIT" + } + ] + }, + { + "moduleName": "org.zalando:problem-spring-web", + "moduleVersion": "0.27.0", + "moduleLicenses": [ + { + "moduleLicense": "MIT License", + "moduleLicenseUrl": "https://opensource.org/licenses/MIT" + } + ] + }, + { + "moduleName": "org.zalando:problem-spring-web-autoconfigure", + "moduleVersion": "0.27.0", + "moduleLicenses": [ + { + "moduleLicense": "MIT License", + "moduleLicenseUrl": "https://opensource.org/licenses/MIT" + } + ] + }, + { + "moduleName": "org.zalando:problem-spring-web-starter", + "moduleVersion": "0.27.0", + "moduleLicenses": [ + { + "moduleLicense": "MIT License", + "moduleLicenseUrl": "https://opensource.org/licenses/MIT" + } + ] + }, + { + "moduleName": "org.zalando:problem-violations", + "moduleVersion": "0.27.0", + "moduleLicenses": [ + { + "moduleLicense": "MIT License", + "moduleLicenseUrl": "https://opensource.org/licenses/MIT" + } + ] + }, + { + "moduleName": "redis.clients:jedis", + "moduleVersion": "3.9.0", + "moduleUrls": [ + "https://github.com/redis/jedis" + ], + "moduleLicenses": [ + { + "moduleLicense": null, + "moduleLicenseUrl": "http://github.com/redis/jedis/raw/master/LICENSE.txt" + }, + { + "moduleLicense": "MIT License", + "moduleLicenseUrl": "https://opensource.org/licenses/MIT" + } + ] + } + ] +} \ No newline at end of file diff --git a/gradle.properties b/gradle.properties index 4a42c39b..2b136ed4 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1 +1,3 @@ detekt.ignoreFailures=false + +useLocalLicenseAllowedFile=false