diff --git a/src/LCT.PackageIdentifier.UTest/LCT.PackageIdentifier.UTest.csproj b/src/LCT.PackageIdentifier.UTest/LCT.PackageIdentifier.UTest.csproj
index 25c5e17b..52b56ee2 100644
--- a/src/LCT.PackageIdentifier.UTest/LCT.PackageIdentifier.UTest.csproj
+++ b/src/LCT.PackageIdentifier.UTest/LCT.PackageIdentifier.UTest.csproj
@@ -50,6 +50,90 @@
PreserveNewest
-->
+
+
+
+
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ Always
+
+
+ Always
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ Always
+
+
+ PreserveNewest
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
diff --git a/src/LCT.PackageIdentifier.UTest/MavenParserTests.cs b/src/LCT.PackageIdentifier.UTest/MavenParserTests.cs
index 5b7c3877..0062ab89 100644
--- a/src/LCT.PackageIdentifier.UTest/MavenParserTests.cs
+++ b/src/LCT.PackageIdentifier.UTest/MavenParserTests.cs
@@ -45,7 +45,7 @@ public void ParsePackageFile_PackageLockWithDuplicateComponents_ReturnsCountOfDu
Bom bom = MavenProcessor.ParsePackageFile(appSettings);
//Assert
- Assert.That(bom.Components.Count, Is.EqualTo(2), "Returns the count of components");
+ Assert.That(bom.Components.Count, Is.EqualTo(1), "Returns the count of components");
Assert.That(bom.Dependencies.Count, Is.EqualTo(4), "Returns the count of dependencies");
}
@@ -175,7 +175,7 @@ public async Task GetJfrogRepoDetailsOfAComponent_ReturnsWithData_SuccessFully()
var components = new List() { component1 };
string[] reooListArr = { "siparty-release-maven-egll", "org1-bintray-maven-remote-cache" };
CommonAppSettings appSettings = new();
- appSettings.Maven = new Common.Model.Config() { JfrogMavenRepoList = reooListArr };
+ appSettings.Maven = new Config() { JfrogMavenRepoList = reooListArr };
AqlResult aqlResult = new()
{
Name = "junit-junit-1.0.0.tgz",
@@ -214,7 +214,7 @@ public async Task GetJfrogRepoDetailsOfAComponent_ReturnsWithData2_SuccessFully(
var components = new List() { component1 };
string[] reooListArr = { "siparty-release-maven-egll", "org1-bintray-maven-remote-cache" };
CommonAppSettings appSettings = new();
- appSettings.Maven = new Common.Model.Config() { JfrogMavenRepoList = reooListArr };
+ appSettings.Maven = new Config() { JfrogMavenRepoList = reooListArr };
AqlResult aqlResult = new()
{
Name = "junit-junit-1.0.0.tgz",
@@ -238,5 +238,61 @@ public async Task GetJfrogRepoDetailsOfAComponent_ReturnsWithData2_SuccessFully(
// Assert
Assert.That(actual, Is.Not.Null);
}
+
+ [Test]
+ public void DevDependencyIdentificationLogic_ReturnsCountOfDevDependentcomponents_SuccessFully()
+ {
+ //Arrange
+ string exePath = System.Reflection.Assembly.GetExecutingAssembly().Location;
+ string outFolder = Path.GetDirectoryName(exePath);
+ string filepath = outFolder + @"\PackageIdentifierUTTestFiles\MavenDevDependency";
+ string[] Includes = { "*.cdx.json" };
+ string[] Excludes = { "lol" };
+
+ CommonAppSettings appSettings = new CommonAppSettings()
+ {
+ PackageFilePath = filepath,
+ ProjectType = "MAVEN",
+ RemoveDevDependency = true,
+ Maven = new Config() { Include = Includes, Exclude = Excludes }
+ };
+
+ MavenProcessor MavenProcessor = new MavenProcessor();
+
+ //Act
+ Bom bom = MavenProcessor.ParsePackageFile(appSettings);
+
+ //Assert
+ Assert.That(BomCreator.bomKpiData.DevDependentComponents, Is.EqualTo(6), "Returns the count of components");
+
+ }
+ [Test]
+ public void DevDependencyIdentificationLogic_ReturnsCountOfComponents_WithoutDevdependency()
+ {
+ //Arrange
+ string exePath = System.Reflection.Assembly.GetExecutingAssembly().Location;
+ string outFolder = Path.GetDirectoryName(exePath);
+ string filepath = outFolder + @"\PackageIdentifierUTTestFiles\MavenDevDependency\WithOneInputFile";
+ string[] Includes = { "*.cdx.json" };
+ string[] Excludes = { "lol" };
+
+ CommonAppSettings appSettings = new CommonAppSettings()
+ {
+ PackageFilePath = filepath,
+ ProjectType = "MAVEN",
+ RemoveDevDependency = true,
+ Maven = new Config() { Include = Includes, Exclude = Excludes }
+ };
+
+ MavenProcessor MavenProcessor = new MavenProcessor();
+
+ //Act
+ Bom bom = MavenProcessor.ParsePackageFile(appSettings);
+
+ //Assert
+ Assert.That(BomCreator.bomKpiData.DevDependentComponents, Is.EqualTo(0), "Returns the count of components");
+
+ }
+
}
}
diff --git a/src/LCT.PackageIdentifier.UTest/PackageIdentifierUTTestFiles/MavenDevDependency/WithDev/bom-without.cdx.json b/src/LCT.PackageIdentifier.UTest/PackageIdentifierUTTestFiles/MavenDevDependency/WithDev/bom-without.cdx.json
new file mode 100644
index 00000000..fb6309ad
--- /dev/null
+++ b/src/LCT.PackageIdentifier.UTest/PackageIdentifierUTTestFiles/MavenDevDependency/WithDev/bom-without.cdx.json
@@ -0,0 +1,8997 @@
+{
+ "bomFormat" : "CycloneDX",
+ "specVersion" : "1.4",
+ "serialNumber" : "urn:uuid:94f66f37-ddd8-47ab-832f-570df5a2ad63",
+ "version" : 1,
+ "metadata" : {
+ "timestamp" : "2023-06-22T08:53:47Z",
+ "tools" : [
+ {
+ "vendor" : "OWASP Foundation",
+ "name" : "CycloneDX Maven plugin",
+ "version" : "2.7.1",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "538c878ebf89b372876e247d056a3fc5"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "4561e50edb47e12a03712b1afce9b20cba32fd28"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "f0ea7b3bcf5c7ba649b8d9807e805385330501881677d47333aebce8305ef4d4"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "a35400ca6411692ae8964fe7030eaba2a83a2fa50e2883def3054191283c3b48e2dcdd68bf80f5a0ede3898cc6b7cb7b998aacd2c1e969320053c43b6ab8d873"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "75c0c03a03c69e82ad1f7b942d6d733da8261c4058174355d6b24ebd88cee34180f2e8484d2b0fedaf459078bdf6e927"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "98cd312d4dfc104a0a66d65023d0aade423f08951f2a9e0215e703f0c81c4f274d8e11a2db1abc30a558b820d65860c4"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "0c5fd65013128de457b049a824c4ad11212d668b503613ce19a54d545e5cf82d"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "72ea0ed8faa3cc4493db96d0223094842e7153890b091ff364040ad3ad89363157fc9d1bd852262124aec83134f0c19aa4fd0fa482031d38a76d74dfd36b7964"
+ }
+ ]
+ }
+ ],
+ "component" : {
+ "publisher" : "test",
+ "group" : "br.com.test",
+ "name" : "test-backend",
+ "version" : "01.23.00",
+ "description" : "Substation Device Monitoring - Backend",
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/br.com.test/test-backend@01.23.00?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "http://www.test.com/"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/spring-projects/spring-boot/test/test-backend"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/br.com.test/test-backend@01.23.00?type=jar"
+ }
+ },
+ "components" : [
+ {
+ "publisher" : "Pivotal Software, Inc.",
+ "group" : "org.springframework.boot",
+ "name" : "spring-boot-starter-web",
+ "version" : "2.7.5",
+ "description" : "Starter for building web, including RESTful, applications using Spring MVC. Uses Tomcat as the default embedded container",
+ "scope" : "optional",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "5cf782727add6bfc7c778162222133e5"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "bb4099d0466a62c3b11ab9323babca13bb430a2e"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "75bcf5c2e5103dd5fa16c82bb3387d0ae3cfb82e91a378bab4c644dd0538552f"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "884020f2121346480bb5928ffa7a9cadaa5cc17aad396c800c68a84c1c4dfb18a5a4540c293eade0af003490c2a750061316cc7d42b6fe40fe81723057fdac9f"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "d201f146382307e41d6777ced391942e295c76c4452d6fef5cfa18e1cce8e2b121bfda04c6f5df9a725a6bafd974dc3f"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "9b8721ce15307aeaf7d99a5ae3b4e947cb69fbf96cf7358c54790a04b3990e2cfcbacee04e2f505ca0c49c0831641e9b"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "62d41a23ae42115bd881cce16b5dcc9de814a4ef08b7515f7d2a93ddf5a67fc5"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "1bad0469d0042a4e4fa0d1d1ef2dea965011fe887945e896d1e6ad8e5b9f5c18e67d748c790135ac478124c021da32324dba92cd60670bc46228a28c170698cc"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.springframework.boot/spring-boot-starter-web@2.7.5?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://spring.io"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/spring-projects/spring-boot/issues"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/spring-projects/spring-boot"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.springframework.boot/spring-boot-starter-web@2.7.5?type=jar"
+ },
+ {
+ "publisher" : "Pivotal Software, Inc.",
+ "group" : "org.springframework.boot",
+ "name" : "spring-boot-starter",
+ "version" : "2.7.5",
+ "description" : "Core starter, including auto-configuration support, logging and YAML",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "97c7fe599ea0a94e13f938e41ae583e8"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "c28e1546461803490588085345ba5d2897d232bc"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "142e8a6de770ad2ff5d788edc1ee9efe44fbfc24569e5d9b914013026bc33dc4"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "131e4ed9aa01c66516815ab86cf2afca382054604c953dd4dea418c269d4ba215483780bff21e63d55b1239f046780676d6683c0a8487420fb04f1fdacea7806"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "8de4a7df93c12f08cffa1d4af9662cd12b4cd7c6f35b49979e99b389d16f71e31a8e36d17ff389b9ae966efa942cbc4e"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "4efa105dc7708fae97edb5d10fce1dfc5ece0e25593c365ddd82451fbfd908206ed4c5257f3e77b1575d1b1563e26008"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "a942615da0d8f800497defd2983ec7efa9c4d11f6f5ff5a411084c53c0dcc0a9"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "54ff50fd33e31db983fca7e5be224864c7b6063f9ce270d28e2ad12886c988eaa2315fcd50f14b5eb5b68ef3da6ce463e16c17c7d6d97ebf9ad08b7663cadd6b"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.springframework.boot/spring-boot-starter@2.7.5?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://spring.io"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/spring-projects/spring-boot/issues"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/spring-projects/spring-boot"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.springframework.boot/spring-boot-starter@2.7.5?type=jar"
+ },
+ {
+ "publisher" : "Eclipse Foundation",
+ "group" : "jakarta.annotation",
+ "name" : "jakarta.annotation-api",
+ "version" : "1.3.5",
+ "description" : "Jakarta Annotations API",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "8b165cf58df5f8c2a222f637c0a07c97"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "59eb84ee0d616332ff44aba065f3888cf002cd2d"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "85fb03fc054cdf4efca8efd9b6712bbb418e1ab98241c4539c8585bbc23e1b8a"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "d1acff146c0f9ea923a9325ad4c22ba2052ec474341ab8392abab7e8abd3ca010db2400ff9b5849fc4f1fa5c0a18830eb104da07a13bd26b4f0a43d167935878"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "004a4bde333c0575f72df1cb9cf95ee0c6c7f738a6f0f723a5ec545aaa1664abeb82f01627708a1377e3136754fb7859"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "abcc5b1fbad59b3e9b6d2d6195ec11d6254f689116c534a964724b61f815cca60ba3a2c1489933403f3f78dc54fd20a6"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "3d3ef16365e7a0357d82f874fa26b2b0a146cf7bf98a351c65ef1586444fa009"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "88625a8811be514851209291344df32478b527bc7838ddee58752269bf2457ae8f4e6b6a0d0b5c18522e287ba6df1def0cb19dee2b85e01ee21f0b48ac2630d3"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "EPL-2.0"
+ }
+ },
+ {
+ "license" : {
+ "id" : "GPL-2.0-with-classpath-exception"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/jakarta.annotation/jakarta.annotation-api@1.3.5?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/eclipse-ee4j/common-annotations-api/issues"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "https://dev.eclipse.org/mhonarc/lists/ca-dev"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/eclipse-ee4j/common-annotations-api"
+ },
+ {
+ "type" : "website",
+ "url" : "https://www.eclipse.org"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/jakarta.annotation/jakarta.annotation-api@1.3.5?type=jar"
+ },
+ {
+ "publisher" : "Pivotal Software, Inc.",
+ "group" : "org.springframework.boot",
+ "name" : "spring-boot-starter-json",
+ "version" : "2.7.5",
+ "description" : "Starter for reading and writing json",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "78f7430ef43f9a18e56de79a8f40ee71"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "9c7df04ff37b2e7471632ddeb4a296c5fb6bddee"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "b8b941e9d26bb7b28713251b53711786872e2cd4b06d7c231b26eeef3c44e305"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "4df8ace3465051c91f3ca7931972a707f4ce89db685e74140ac7cb7ec5d4c513a937c4e148ccb9b4f5d923cb5c284a18d7ce71aae55c9ec98c2db5b046c76e80"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "a7dbe57fd28c741fd40b58c49ccca9dee5b4f6b1a84dc3c077fecaca5dd1902ca19cd80f66604a77dbcb5a1fbf1a26c6"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "217d3c0a6ae9383c56ef5179cac0c81944af65dd95a1061902f15a6b508a62ab0180103891fa1acc496157f7b184e1fd"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "da8163019d72e3556356b055a72fa2e1266a243bce3cb5bf2087f2ca066082e5"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "59b39563ccbb91059f1f62c64857ba27c983f2bbce69a3811f0c4b6e334b5657a6a697fa158375473d96320181bc02e52910a1d3a31bbbc29b3293e46a53929a"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.springframework.boot/spring-boot-starter-json@2.7.5?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://spring.io"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/spring-projects/spring-boot/issues"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/spring-projects/spring-boot"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.springframework.boot/spring-boot-starter-json@2.7.5?type=jar"
+ },
+ {
+ "publisher" : "FasterXML",
+ "group" : "com.fasterxml.jackson.datatype",
+ "name" : "jackson-datatype-jdk8",
+ "version" : "2.13.4",
+ "description" : "Add-on module for Jackson (http://jackson.codehaus.org) to support JDK 8 data types.",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "c5c20325ffc71b3cce65f4fc388d01b9"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "557dbba5d8dfc7b7f944c58fe084109afcb5670b"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "fc568852020844d753d12d93c5ac25ef545792ac4926b3075e81c42ac32e606e"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "061f5d68bf1f25b924673ee966273e48d02d72080ee84bd148a7a4a746aa4995eba46f6770f95b5e19dd701bdbd09d3806c255d1edbb9662e16c79be58b7dd2e"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "a59fd8dbe08205457307fe117bc630230fdfc55333099e59ec2120fc998ecf98b037e5cb7ec44b5a4907fd7908b8fbb6"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "3a1bd603d690773c9a37b59863798b9634a098bcc9b5ac17655485066d89faa755a4f31f741adf9828811a2a0087c0e7"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "2cd081c83e00041faa4aefea2537aecee82429f7088969b25d7d75e9b415aade"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "3b334c458965ac32a8bac956a146d8950bad76fb0a56ed508d03bf6ac84c5edadd7634f40ea3145c02cb87c7c7c1382f2403f1bd667a9b546fbd40be3ba507b3"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/com.fasterxml.jackson.datatype/jackson-datatype-jdk8@2.13.4?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/FasterXML/jackson-modules-java8/issues"
+ },
+ {
+ "type" : "vcs",
+ "url" : "http://github.com/FasterXML/jackson-modules-java8"
+ },
+ {
+ "type" : "website",
+ "url" : "http://fasterxml.com/"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/com.fasterxml.jackson.datatype/jackson-datatype-jdk8@2.13.4?type=jar"
+ },
+ {
+ "publisher" : "FasterXML",
+ "group" : "com.fasterxml.jackson.module",
+ "name" : "jackson-module-parameter-names",
+ "version" : "2.13.4",
+ "description" : "Add-on module for Jackson (http://jackson.codehaus.org) to support introspection of method/constructor parameter names, without having to add explicit property name annotation.",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "46c63416748a27d334e891e64a1867c3"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "858ccf6624b5fac6044813e845063edb6a62cf37"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "e67856b02a988768784c5a675c0ad5c17e330cd78375ef39e740cbf04879d363"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "0d925ac80fa2feb7b805bb4473046a33e2a0f5902262611d17e3934f6b4d714ed5e312010a572eb9409fbe44d6d7c22bf44eba9115b82c51f9dcceb2ac8c0051"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "c725e0896bb8e1e2857aeb8f363fa48aca5bc7213197667ec39f693c95efadb5e02977ca0ed0fe6056edd06db9a73bf5"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "4120dec8df4dc9c1187d0c79bdc6fbd3404c14f79bfafbd2cad43c8d1a62483e5526d103767c9bba9e7cfae08b50125e"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "5f855f462cec866aec690ae32eb4199e1897540cf4e5900f8dd3566d48a7027f"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "34f5bf770950caf2b2065dffe643613c4789e12920bcb9e6761fb7e38e73d3d0057a58d43219ea1870f271ff7c137fa4b4e090197d20c592d6f2f8cd611ba100"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/com.fasterxml.jackson.module/jackson-module-parameter-names@2.13.4?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/FasterXML/jackson-modules-java8/issues"
+ },
+ {
+ "type" : "vcs",
+ "url" : "http://github.com/FasterXML/jackson-modules-java8"
+ },
+ {
+ "type" : "website",
+ "url" : "http://fasterxml.com/"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/com.fasterxml.jackson.module/jackson-module-parameter-names@2.13.4?type=jar"
+ },
+ {
+ "publisher" : "Pivotal Software, Inc.",
+ "group" : "org.springframework.boot",
+ "name" : "spring-boot-starter-tomcat",
+ "version" : "2.7.5",
+ "description" : "Starter for using Tomcat as the embedded servlet container. Default servlet container starter used by spring-boot-starter-web",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "4f11edfc254bdd5c45bd40f430e1179a"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "eb7849c52953de44d9712adf45398ccb1a7d4295"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "b2c454279799a43ac0e2c9b65fceff6d279a38e82d96f4ca9e4898f1162811f2"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "d2cec869939e241e12155f194ebc0d505a7ecc47f6db8f270389543d0f05e37306619cfecdb93438f9291b04ec8cadbdd2915f25b51e481926d8080c9f5d32fd"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "4405c5f7a110c5e76567c920c4139bfec49cd46a8785b9a851a83724901c29645498e7c0c654e93c4569c3aafc7b76db"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "9b6a726e0d39ad452f644ff186087a5ea48d41902d5a470028fd9c4d0700a7ae9e9fa0b29370a6c1825c43b305c2dfcf"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "da649a29ee5ada69a2aa02d50d20ceddf33860f06a2d7f4e09e40555be98542e"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "d420990c6da1696b54213eba86ae9514bab72bdda64b6c8758c1a42f5ccc128a118b4575144908ea5f5e85c38d72777cbf7b7c7c45928b18a70ff265e4446e39"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.springframework.boot/spring-boot-starter-tomcat@2.7.5?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://spring.io"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/spring-projects/spring-boot/issues"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/spring-projects/spring-boot"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.springframework.boot/spring-boot-starter-tomcat@2.7.5?type=jar"
+ },
+ {
+ "group" : "org.apache.tomcat.embed",
+ "name" : "tomcat-embed-core",
+ "version" : "9.0.68",
+ "description" : "Core Tomcat implementation",
+ "scope" : "required",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "e623e590ec70239dd4379c7729823034"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "caafeb87d6ff30adda888049c9b81591c7cc20d1"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "b6b86db980382a452a3fd88c694957891c5de9b08569e688968de96ad61b0af2"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "353072e38e590ed18558df1de544672f4f68210e11088299ad34ebbea4a6858a726f911d03fb8b4844e305bfa89293439efd6186bd96405fbfa523a0862de773"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "a9c274d5881afdb03cc8151ac3f4d55e5101da0fc369b80d417c8d6374ef891324ae1799487ab27820cd3d98e4e3ec87"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "e2a6d3625785d3542473d14769b25f30f9f0c96931ec3e61dd7040a291eedcd4ef42d522221da855f4fa45ee80de6d04"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "26514bae3b20883b5aa6816a0640da10b561fdc33fb283a5d3aed9b0b790e040"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "130352063f8c0ac67e19f1f71668f787f7d6dedfd35a6a88127b7d546f09c05ef3fe026dbb5f4771405023f84b635190260b189ebde9539057c5d50ab082161e"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.apache.tomcat.embed/tomcat-embed-core@9.0.68?type=jar",
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.apache.tomcat.embed/tomcat-embed-core@9.0.68?type=jar"
+ },
+ {
+ "group" : "org.apache.tomcat.embed",
+ "name" : "tomcat-embed-websocket",
+ "version" : "9.0.68",
+ "description" : "Core Tomcat implementation",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "c3d042c2cf0c0fdbbff506012ffc133b"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "15fc94001bb916a808631422a6488a678496ef94"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "7e6244ba5d189713125d83682125e6aff0c10aaf97ab1c45a46bf3dfdd59661c"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "e850b7acadf64222733ca5b33d4fed0524103f35a15e65bc49fae1869293be1e2a92de7998471393793cefffb555e26f26b608bebc25d7fb413f96c6d5ec539d"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "e46dc68d9886772c8518df7d8aab0ea5cf5134352b606cb969bd2c0fc289a6ad83450c519fda98c61674d6307b29e9bb"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "a987e920e2b997d052a3c996a342d858c4870122ba574695acc2204c779c368452fa52065fcd41fdd58c7203757eb4c6"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "dc77e0dd1f6af3673bcef52b3cac25c7b682db4738c7099b41c4488318052101"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "824b3aa5f94d9dc190e5ac48d3b2b25b1a10c7579115af40c53d0abeb4d420c4e4ccb014b4d9229dc1c1df3cf177991900591722ecd009beac2b62312378f23c"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.apache.tomcat.embed/tomcat-embed-websocket@9.0.68?type=jar",
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.apache.tomcat.embed/tomcat-embed-websocket@9.0.68?type=jar"
+ },
+ {
+ "publisher" : "Spring IO",
+ "group" : "org.springframework",
+ "name" : "spring-web",
+ "version" : "5.3.23",
+ "description" : "Spring Web",
+ "scope" : "required",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "19c1f44c123f1bed8e36816f64c873ae"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "0193f5276092d9cbe3222c63885b47ca7b2cce97"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "e1c834322e379f0d650abf348d4da060ca7cc700fc4f548392852f7987114569"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "7245e8c2ed0fc96b50bf9a33f2b5085d9d1c47c84c6d54592c61933ecd9c549db8774158a580611c26e5e4edc9f9f80c67f743d8962ce325f6074b501556f698"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "54edac1cc42952bb1a5dfa218ac8fa8408b1901dd7bd35a4b59f28e18a973f2e757c3ae8432aa24c941b6c455213e5ea"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "c2451ec2e379c576fc8fc840ce7bf6dab7f4d96bba1a0042e8857d90363b9126a30e416836f4f5e3573e9c14717975db"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "fba0dd45a2f66fa7e70fa8b3cd1a99164a1dd48fb519b7b7f8620074f8b329ff"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "b4ee7c9307b1d2e8107db898616dcd01450cc858ec98045dfa29c0b9bd0f398ecc6ed29ea5f02a60e9243674fd49ae43eefd3841d962d1e24dda50affd5916a2"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.springframework/spring-web@5.3.23?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://spring.io/projects/spring-framework"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/spring-projects/spring-framework/issues"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/spring-projects/spring-framework"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.springframework/spring-web@5.3.23?type=jar"
+ },
+ {
+ "publisher" : "Spring IO",
+ "group" : "org.springframework",
+ "name" : "spring-webmvc",
+ "version" : "5.3.23",
+ "description" : "Spring Web MVC",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "4085c2870c380281c38dc9a9a340910a"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "b163527c275b0374371890c0b76c2a2a09f9804b"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "140ed250ef7344082f179f7273b41dd131f8b3bc8c09c361ea2100614272ca6b"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "a75aa47852370a5147739f16930197e40529d5a8d97d55a08b42aab0d4c9162c32b9bd92c7a53c488e42300f06616a05988dae7ea9c8d512ab0ecd806c988c29"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "8b7ed7ee73e28c25c0e0c5abeef7e49ddd8b4be5d8ed2c69e45d4dfacb6fd79af77295f6b3dee1090981f4f7a13dd22a"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "a12ee65866822e993375629b218e913924a9ce558ec83766e1f60c5397cdb957c6807c21cd5a0d3c9d3178fe3ee09067"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "abaab471b9303d7230bcae3e40b15bb68f5a350c2346569add8a4c843b108316"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "1746cc5bb9ce389063c4d893352032ab1b576b0965649e03d905bf83d1a4572e6f0417fc1f70d40bb46478e3b4e2dc22fce9997ea6b6dd12693a51ca5e535fc9"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.springframework/spring-webmvc@5.3.23?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://spring.io/projects/spring-framework"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/spring-projects/spring-framework/issues"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/spring-projects/spring-framework"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.springframework/spring-webmvc@5.3.23?type=jar"
+ },
+ {
+ "publisher" : "Spring IO",
+ "group" : "org.springframework",
+ "name" : "spring-context",
+ "version" : "5.3.23",
+ "description" : "Spring Context",
+ "scope" : "required",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "46c0dbad4be399fa6b5b3db33c2f1e2a"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "530b36b2ce2c9e471c6a260c3f181bcd20325a58"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "23ead0de51a5215526d961160d18baaea18b1fa2261e5ed50c3cfb2551ff6382"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "39ec855b2856f0627329eed6b9c5e6aa4661f4be2cbb2a04efb95f148c9dfe2cdd50e4cb1a8ca965feda999eba37e1b968bf17502863d08565757b9534ccc23e"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "9fc1c3dc0ca4b8e3d1a1d03d69868dfe7d5ebb484e4e2a9349360787ea805dd52a50780ea56de3768d8d2725b22e5b6a"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "72573bd3c9feec6167c3b989dd54a2727f159a1238fa5c25b607d09d75b1255648231603553c46a64e25033d461ac5c3"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "7e5adf0ce98542cdffc18a81bf295a08b4d02d1e0b3b0c25de7ec432179b5523"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "1557d5834dbbcdfacaa82f17e635a426203196aaed1cd8169871416368b2862232f987e2658c8ec73961dc50f46b6ced43df8ef7a4e08e171550c88dd3a8033f"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.springframework/spring-context@5.3.23?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://spring.io/projects/spring-framework"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/spring-projects/spring-framework/issues"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/spring-projects/spring-framework"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.springframework/spring-context@5.3.23?type=jar"
+ },
+ {
+ "publisher" : "Spring IO",
+ "group" : "org.springframework",
+ "name" : "spring-expression",
+ "version" : "5.3.23",
+ "description" : "Spring Expression Language (SpEL)",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "561b0a8c63dccf2a3f67e26bc4708979"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "3a676bf4b9bc42bd37ab5ad264acb6ceb63397a2"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "0976b322a7feb20f90691b2b64e22c5240518cd8721bf6fb2c8da90521665c5a"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "517618300a4c1155739a3ab23a771e3fd2023fe8c5da844fdae50d4a7395235384e755e34c81ec1cc7c39e6c26433649a9f83d9fda42bb501d8eb01408843f2e"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "623bbdf25b44a12464f0b7a2f50b8969a44aba5fc3b539c025821be1af62e4aab2399b0977f2a6cd83457200747dbfc2"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "52bcae7739144442716b0a97eba5bd1accf53ca84b7ce47d80c5bfeb1bf7a2a637b08c5aa34c5c9bf2ce7862622df6cf"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "08e476ef9c73ce0c4eae1ca532b25dc5ef4f4955e8dbb3d36cf3b7ae450790f1"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "ff5027bf6b7c5f4456e5d7c800003b0825b97ac82763cde804833383a198aa20455a17173b01bfee1c86b2ec907e9b2db687263066147353fafe0f9adb80cefa"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.springframework/spring-expression@5.3.23?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://spring.io/projects/spring-framework"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/spring-projects/spring-framework/issues"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/spring-projects/spring-framework"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.springframework/spring-expression@5.3.23?type=jar"
+ },
+ {
+ "publisher" : "Pivotal Software, Inc.",
+ "group" : "org.springframework.boot",
+ "name" : "spring-boot-starter-websocket",
+ "version" : "2.7.5",
+ "description" : "Starter for building WebSocket applications using Spring Framework's WebSocket support",
+ "scope" : "optional",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "9925243079553a3f01379563e9331721"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "0fef1dcd9a493c2453a6b0a17bec0141a855fb93"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "fdf32e7e22196f88c88bb4b519e9e50edb6df417647dd950bb5f4c6ee2e1bd6c"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "a0bf73406cf4d4d83152ba602b3258077b975d54de2ffcce1c13f50da461d52935bc8e6e8e949ffa4d3ebd7c170aa1465495ade693497ad4a611aaac63ca1b34"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "60379760e2f38da82e18548b5a396c8fc9d6f04c1e47a1841acb13d986a28ec62b44fa37d1249817683ca7639501b792"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "12d547d8d722484536a964148d06b6d5925ab2d05a77716409e92d33e14f619d9bb9eaf8d599e44d84ab849cc590cf3f"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "1a19ce0da17330c0c10815515139710f6d1ebcd4276cb09ac76494367c69d2a0"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "0bb5c6aa826b8ab2d79ad4571aa2163d6672cca2b88d264c9259e3fcf8aaf0d8bda6700453b58829878b0db8447a0d01f893a25c22336845e26412599dd9867e"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.springframework.boot/spring-boot-starter-websocket@2.7.5?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://spring.io"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/spring-projects/spring-boot/issues"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/spring-projects/spring-boot"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.springframework.boot/spring-boot-starter-websocket@2.7.5?type=jar"
+ },
+ {
+ "publisher" : "Spring IO",
+ "group" : "org.springframework",
+ "name" : "spring-messaging",
+ "version" : "5.3.23",
+ "description" : "Spring Messaging",
+ "scope" : "required",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "c63a9d1d936ad785861c67cbb3f300b6"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "ba45e1d5cbafca683baa5d801b779eba1f4adaee"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "8fc60fb2ca529424b0d9eb863797a3716a7daf3a83d72e33617d5197b33bd4b2"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "ffda2d668a6af463646f73d6ef829ceb328f37ac562d4f5d9a61c03d67b416d8f20094a0598ff1bdfe2dc4b7f0c00d8e8a29c15063ae7d56a429042a3ab14ff4"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "3d81bdfe751d2b73e3d4969e42477c9729272698bb0b253214d04ef43829bcb8221ab6d285f60d21f8345b82c844ee38"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "fce88f3424f0c6600e7153c98abb7ada96db031930d2bf641410adcecb7a8a015ca3ee32b1e4d62a88e6d9b3898da8b1"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "d2780ae7990a521f4c8500b280a5de85b84812d3db0fde2ecfaa42f52da57852"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "eb197bbd7db5c0f0242d31f9e5a175bb23e53d4c2b7e0395dacc404c90490f24cfc7ff7ad23f52f7d00884fcb666f962a8fb4ddf9401691097dcf09750e1aa4d"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.springframework/spring-messaging@5.3.23?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://spring.io/projects/spring-framework"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/spring-projects/spring-framework/issues"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/spring-projects/spring-framework"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.springframework/spring-messaging@5.3.23?type=jar"
+ },
+ {
+ "publisher" : "Spring IO",
+ "group" : "org.springframework",
+ "name" : "spring-websocket",
+ "version" : "5.3.23",
+ "description" : "Spring WebSocket",
+ "scope" : "required",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "a2a8cdda00b43f994f964372beb24068"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "28c5d2ab4ab1f0fec2ca68c502576a91d552c356"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "571599458726aae784560193fbcefe67d05f7da89b3242b9e6aeaab4dc1182ff"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "8070c9b4f524839b0cc5fbad5554c21ff1ed5805e67632eed2533bec3de32858fcb48c620f36c857d20211b9897005c4a297e0bb6047b37f033223bf2ba73256"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "36994cf4bfe27136586ce33a1d00c7b2eeec84c20ccb1bb2b6974c548d6bdcabde954deb0f5dd1dfbafcb318229cfa56"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "8d42c4522688173f45969bfe6c8f7c4c334ef9e526aace23ef9835014a793357564f47e10f3db8d89615570794272890"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "4b3236ab816cff8bcfa11d7e78e081fb98267650e041724e9a26511e5d7bed46"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "dbc3e45ba5b676f211f74889828a44489a50e18c7c06be55001d4e117bccf189c2706978f96cc312126dd0cb7873ac0034932ade60f0a2f70257843b5f4ec6e4"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.springframework/spring-websocket@5.3.23?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://spring.io/projects/spring-framework"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/spring-projects/spring-framework/issues"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/spring-projects/spring-framework"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.springframework/spring-websocket@5.3.23?type=jar"
+ },
+ {
+ "publisher" : "Pivotal Software, Inc.",
+ "group" : "org.springframework.boot",
+ "name" : "spring-boot-starter-data-jpa",
+ "version" : "2.7.5",
+ "description" : "Starter for using Spring Data JPA with Hibernate",
+ "scope" : "optional",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "fb1647e45cd440d75d006cd98e3837a5"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "b83184467079d5b808fb2f9fbc858b1804975808"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "6a3b6db4cebdd32db94497975f0ed6b84a336e62aa4ba5ca0e56eb80ccf3547c"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "a01fb4914d0a018016a542933ee28edb4782a2687bc0ad2d5269bfc3dc624c9bd7f44da7c9aaae61b68fa0220b188e226a13a352e9ca2242afca06ea5309a2ef"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "2aa581f74ec521558db8797aeef1d2d7ce2b2ad0fa407bee6054acd1b6286fe614d08ab2a65de74e0895954717696aec"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "9c83678b33b95ca136d320a0e389b03d54cf3a7b2ffb913eb4a67b4d7f048a3b427be5183c4de951a0e098841b6ae216"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "8fd06df9c8853db5f41f7906b2edf792259bd567e66019ce65e8d142551b9722"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "3c3a54d6ac0b5a162aa9aea159e2145dbbf845602ab7e0cf412c72afc1a57773f1eca0a4236bbd06809a8ca4ddb15ebd2cd0233f29da6566e192efe54e2daaf1"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.springframework.boot/spring-boot-starter-data-jpa@2.7.5?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://spring.io"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/spring-projects/spring-boot/issues"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/spring-projects/spring-boot"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.springframework.boot/spring-boot-starter-data-jpa@2.7.5?type=jar"
+ },
+ {
+ "publisher" : "Pivotal Software, Inc.",
+ "group" : "org.springframework.boot",
+ "name" : "spring-boot-starter-aop",
+ "version" : "2.7.5",
+ "description" : "Starter for aspect-oriented programming with Spring AOP and AspectJ",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "2ddc091bc12be952017ecdd13b72a18d"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "ea4b85395faaa3a382f2a582e4bf023d088d320e"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "0205455d5c819c78ca89f8e5304cfb65f7a8212197e11ee40a2b0623c3a5b07f"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "09b1f86c0c8559d92ac3ff30b0bc048b65c7acc141d152fae36b6e7db4ae651b32f31a2a606c33fd02068fed531b19f5cdbb6006b522d9e48bd06e09bf87e182"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "ca0f0917354c447c62eaa4c16c41c1ff892650fbe45ac545c3cf90c92fd88a3b7c5c9b9bda596e088e84f5de74e38878"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "fba086ec4ea9f810c7e6bfec51e83992f5ae0c13eafc64889ec52e339876102852a06982738fcf5b7c2a518d78f19127"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "4387fa467b2ee4051afeae0c444096f34c47e10c8340598a92d7c71fbbbf469b"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "6fa6cb6883966ccb6d7543f14dffe7337aba66035a6b332dfd9b6c442a3728be5b5c5e21ffdeea4566580ea73863e0d74998668a21a01f6f1b390cc6d23fd1ad"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.springframework.boot/spring-boot-starter-aop@2.7.5?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://spring.io"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/spring-projects/spring-boot/issues"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/spring-projects/spring-boot"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.springframework.boot/spring-boot-starter-aop@2.7.5?type=jar"
+ },
+ {
+ "group" : "org.aspectj",
+ "name" : "aspectjweaver",
+ "version" : "1.9.7",
+ "description" : "The AspectJ weaver applies aspects to Java classes. It can be used as a Java agent in order to apply load-time weaving (LTW) during class-loading and also contains the AspectJ runtime classes.",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "a4d97c5a2f94b8b5d132761a769e5eeb"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "158f5c255cd3e4408e795b79f7c3fbae9b53b7ca"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "1b448d82bd0f8a8c1842506e6c7edb95ff1a1275ce39f766e7884122b866fe5d"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "490fcf238486848e27cbed45fd437613193c9e89748a0818fb532aed5c213aab2624d148ed9fd58080c6934da5f7ec12c64e40b64bb46d16e361eb404393c5ba"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "4d3b13d7e7ab437410226974ad3acebc8c663b21d9ccad6d70b5adede33bc4033858e8b303c7263a8e17c073c354b87b"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "0d56981fa691d1d79f39aa65dc091def5fb106f65d5d1b0836a7279b95195961c5a49f07979cda49e35768276a30477d"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "e10b7535b50a0017f062b7eb71f1f1b301beadfe474d050f7100996797a8640c"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "a77467b7b04410e7eb33214e84b4061f3e7112eb4c29a2c826691bdc0af6136c7a78789ae685273e9e69cfb40e674b64ecb31d1e516a8b5d79afefb13f57ffa1"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "EPL-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.aspectj/aspectjweaver@1.9.7?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "distribution",
+ "url" : "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/eclipse/org.aspectj"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.aspectj/aspectjweaver@1.9.7?type=jar"
+ },
+ {
+ "publisher" : "Pivotal Software, Inc.",
+ "group" : "org.springframework.boot",
+ "name" : "spring-boot-starter-jdbc",
+ "version" : "2.7.5",
+ "description" : "Starter for using JDBC with the HikariCP connection pool",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "b1aeafc4460b34e42430eb2f103ad71d"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "b57c3f8fb2fe235a8ff368755092371423bbc5b3"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "a0e620c6e24517d9456b4a11ee04ba34a85f1dcfb792158a2efbe3549cb9d626"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "a47d4168818d25e8cdde1f57cfc24530f4d38b5f8f4c80c9ae8fbbf31cfad5a72b1ecac4b2a907dcc656654dfde88ec7364ad5bb7e927417939deb0a790730fe"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "168298fe16ed4bbd3a2ce8f309884233b220afac37e50061fc3580f7ee916031c94175c38bae98bacaf5bb0a4d2df43d"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "11802704fbc15078e9b955accf6a2a7ff2b01b784d4258c4c33d02a834563d7bc5e401d152e9548e11f3424d62a3bc05"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "35fffcfeb8c282990b560e2942717a1e303ade1ba42911fe0a3f797d52291496"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "4f8733d74adcc22712de7bd6e899f9ce2da2f2af290cdbd5f36739f16bf5b175e5bb1102a34d7162a8d3386a7a61c2481a362a6674635d727d17fa7e917a9e92"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.springframework.boot/spring-boot-starter-jdbc@2.7.5?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://spring.io"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/spring-projects/spring-boot/issues"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/spring-projects/spring-boot"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.springframework.boot/spring-boot-starter-jdbc@2.7.5?type=jar"
+ },
+ {
+ "publisher" : "Zaxxer.com",
+ "group" : "com.zaxxer",
+ "name" : "HikariCP",
+ "version" : "4.0.3",
+ "description" : "Ultimate JDBC Connection Pool",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "e725642926105cd1bbf4ad7fdff5d5a9"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "107cbdf0db6780a065f895ae9d8fbf3bb0e1c21f"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "7c024aeff1c1063576d74453513f9de6447d8e624d17f8e27f30a2e97688c6c9"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "34a9ee96c51ae070634cd0b642cad3c4c54b9d2ab7f1714f59dad805512ae27c9c69b8be83da473689f55474c4e2874c93e727f9f31d3bfc9b80ec37aeb68898"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "9c49efde42b89a8cd2b119d666076bc9d532c4a835c640b77d8a5858d3325f9ba99f8cd19cd21b9df4f386d1c21855ae"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "ccea43e68e6dcf0426c271640abf132575a9e28b439ac968b5608e3d04d7ec80dd948d33c474e31fb18bab9b80959c2b"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "163e0d75894a0a4c2d36f4a992449e2dfd71bf495f5789813cd333ad1b571fc5"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "bc20907f677b6fceaf8f81361d5a7e0099799561af550a2a49dfed531a3b8ee29f35ecc2c4419cd8eef9e25a147a2cf88cfb7ffc9218b8b35b0e0524caf56d8d"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/com.zaxxer/HikariCP@4.0.3?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://github.com/brettwooldridge"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
+ },
+ {
+ "type" : "vcs",
+ "url" : "http://svn.sonatype.org/spice/trunk/oss/oss-parent-9"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/com.zaxxer/HikariCP@4.0.3?type=jar"
+ },
+ {
+ "publisher" : "Spring IO",
+ "group" : "org.springframework",
+ "name" : "spring-jdbc",
+ "version" : "5.3.23",
+ "description" : "Spring JDBC",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "bed59ec8d164f9c32d58b57e74317831"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "c859919a644942822e49cb7f2404b2c4d3cba040"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "d655e8111c81658e27dcfc5e9e428dc7ddb8229e6cdbb3e9b2e00f1c3089a5c2"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "7fa15b649e0c64ff88f17a9c2041a2252c87e00d7382aa4102b4287953e62bf145699759de687c2cffe99eb2dbd2b81595fe2c9101b3107c66aad197177df821"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "e84e5897b7884ae5ffcbdac59a5a5540c336cf46d8e3c9930ee648fe63a9c6cc8cd6d104e4b63a35356ca382dd86b911"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "ddea752bbe843eab05d6403f9d060265c99b476d1fc52891f963c402c8e9a92f2b6fdd09d0706c0007721e37c4c315d4"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "81acd56c8659d3b14d821c6d7556df75a2a3a7f2fc123f29a56b03897ca54efe"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "57c7025e08ab5aa2b2764fde3d194b1cb60ceb750044d3052285d6bd9217fecf6a41f4fa1b9b3b48fc5a58057de7fb4d4b2400ecec07a609fa27fd18a1d45d51"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.springframework/spring-jdbc@5.3.23?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://spring.io/projects/spring-framework"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/spring-projects/spring-framework/issues"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/spring-projects/spring-framework"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.springframework/spring-jdbc@5.3.23?type=jar"
+ },
+ {
+ "publisher" : "EE4J Community",
+ "group" : "jakarta.transaction",
+ "name" : "jakarta.transaction-api",
+ "version" : "1.3.3",
+ "description" : "Jakarta Transactions",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "cc45726045cc9a0728f803f9db4c90c4"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "c4179d48720a1e87202115fbed6089bdc4195405"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "0b02a194dd04ee2e192dc9da9579e10955dd6e8ac707adfc91d92f119b0e67ab"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "764ade8ba807682dcd1ec7382c35275f3d8ab09a03d5b45c48e732501190e2738269080aaf28aa8dd656c11ee84bfb7dae6953dd2768f2acecd3a8cf0ca4961e"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "63adeb3c5eb24ad0147377436b6e3208d5e97c0e800e0e1e4cb3ba92699f1b06034c2ba00e3689aa8f909ee96c432db0"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "dd0a253f45dac003d40ebeed7f38b0850ff4b08941d55db5b3bbf4c936f94062d23799729ff718c54a565de2482bfd3d"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "d47afbaf1daba46c7aa107bf1b476857523738370309394958f96a2105686684"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "1b744b2d939a8d0a2bbd0be29c717af4a5e2374ca26fbb95a16df03aa55d2aa092e9314f20d5b080f02030ae1b70e4904ef0f8e1509680b9001153cdb7bc1934"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "EPL-2.0"
+ }
+ },
+ {
+ "license" : {
+ "id" : "GPL-2.0-with-classpath-exception"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/jakarta.transaction/jakarta.transaction-api@1.3.3?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://github.com/eclipse-ee4j"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/eclipse-ee4j/jta-api/issues"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "https://dev.eclipse.org/mhonarc/lists/jta-dev/"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/eclipse-ee4j/jta-api"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/jakarta.transaction/jakarta.transaction-api@1.3.3?type=jar"
+ },
+ {
+ "publisher" : "Eclipse Foundation",
+ "group" : "jakarta.persistence",
+ "name" : "jakarta.persistence-api",
+ "version" : "2.2.3",
+ "description" : "Eclipse Enterprise for Java (EE4J) is an open source initiative to create standard APIs, implementations of those APIs, and technology compatibility kits for Java runtimes that enable development, deployment, and management of server-side and cloud-native applications.",
+ "scope" : "required",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "e0a655f398f8e68e0afebb0f71fba4e5"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "8f6ea5daedc614f07a3654a455660145286f024e"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "0c2d73ab36ad24eeed6e0bea928e9d0ef771de8df689e23b7754d366dda27c53"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "1e07257b631ae3331a71d7cd9136152cddebbe786ba50c689bec618a9eb659be8e952fe0405db36332cb6c12c6c87c6d648e817c027ea8c6e0c660ce82f6f424"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "d68e1f600244d7a3628244e0265208ce08881f4ea33a3cd1f085886f7ce755cdd44bc6788ebda1baf8bc23b1f3c844dd"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "fb77e58872d4e3ef6475094ea96f1ce32a1a7c3617393fcab47c47cb84f6995315c5f805d518c69a0cea751ce980bf13"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "3619596135b169649ed16b75972c39614192d2a802291a7eb4c1814ef7dc9ff8"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "045c7f1ec7f9191cd2ff35fadf5c037aa596a288189185fd10d5fed89cd3661b6353945083f4c3943c87e343b61a556699f43f00a0e928c165e52d57fe514fa5"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "EPL-2.0"
+ }
+ },
+ {
+ "license" : {
+ "id" : "BSD-3-Clause"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/jakarta.persistence/jakarta.persistence-api@2.2.3?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/eclipse-ee4j/jpa-api/issues"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "https://dev.eclipse.org/mhonarc/lists/jpa-dev/"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/eclipse-ee4j/jpa-api.git"
+ },
+ {
+ "type" : "website",
+ "url" : "https://www.eclipse.org"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/jakarta.persistence/jakarta.persistence-api@2.2.3?type=jar"
+ },
+ {
+ "publisher" : "Hibernate.org",
+ "group" : "org.hibernate",
+ "name" : "hibernate-core",
+ "version" : "5.6.12.Final",
+ "description" : "Hibernate's core ORM functionality",
+ "scope" : "required",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "2f3d66df99f0c7202910bc4068da221b"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "66720fe38bdb9515924d559b8aac7b522d7ae171"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "5395eb2a7e2f1ff18495dced2d50817f39504ebc0145fbc7340a025e863f383d"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "1000a77478d167aa58956ae1f06544d83d980e317d188f67096d080f14d7a11c988e341517163b4d621dc34367b8b35e841ed8a37419d6847f2749f5924051d1"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "29ffe688303dda3121f90c6098a110b062d44372e7f1ec566cb85c04f8d71ee7bcff996b1f4bded5ab1043995583e599"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "41562cd331a05c644f936721e7d59414c2eaacc001ec45e2be9b443ebf95ca4a2a71a865f3510d52a953591d47577755"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "eb34af32173d874860b7c7036490723442b265da4b413d8ab1d5dabce8480fa9"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "8797c796ef887d7f74c4b83d09890efbd05995ca48be7f113dbb96f888a4c62b3da9f8aeb56dd27dbf0b6725cebd39e7fe0a77b90a324f710f6964e267ddf43d"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "LGPL-2.1+",
+ "url" : "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.hibernate/hibernate-core@5.6.12.Final?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://hibernate.org"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://hibernate.atlassian.net/browse/HHH"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/hibernate/hibernate-orm"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.hibernate/hibernate-core@5.6.12.Final?type=jar"
+ },
+ {
+ "publisher" : "JBoss by Red Hat",
+ "group" : "org.jboss.logging",
+ "name" : "jboss-logging",
+ "version" : "3.4.3.Final",
+ "description" : "The JBoss Logging Framework",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "b298d4b79e591843c1eb1458ea79f070"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "c4bd7e12a745c0e7f6cf98c45cdcdf482fd827ea"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "0b324cca4d550060e51e70cc0045a6cce62f264278ec1f5082aafeb670fcac49"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "60759c4340a7c1af0f10a5c2252e028150413d2437547f42018a94a838dc4a2bb24256411490a7e5f109b76305e2752ecf37def85e631d7e7b7e8461e0b54dda"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "1c07afd380f25c076ca0e568be205ede18c875471547133711f04bb2ffc9936c7c97708605cca18c9a98fc94b072caea"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "f17eeff5983e9e0562c90b8b3051b2dbee885818adb104ba8700a399f90a1a3c85a766686dafa06122cd6f8979561ea9"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "c41833778a14d364e29767d543ac402e93222616bfcc020552f0f037cfc6b02a"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "0dace1456d22070719b6e7322cdfb64b34f36f5c8f271f62026c691b00fe32fba50ac17f61b467160ec2b7cabdeeac77029ded3d7f9b1e08a4a0f709222a5017"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.jboss.logging/jboss-logging@3.4.3.Final?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/jboss-logging/jboss-logging"
+ },
+ {
+ "type" : "website",
+ "url" : "http://www.jboss.org"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://issues.redhat.com/"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "http://lists.jboss.org/pipermail/jboss-user/"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.jboss.logging/jboss-logging@3.4.3.Final?type=jar"
+ },
+ {
+ "publisher" : "JBoss by Red Hat",
+ "group" : "org.jboss",
+ "name" : "jandex",
+ "version" : "2.4.2.Final",
+ "description" : "Parent POM for JBoss projects. Provides default project build configuration.",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "489f7a97d2ed7ae34ea56d01b3566d57"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "1e1c385990b258ff1a24c801e84aebbacf70eb39"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "3f2ce55c7d71e744581488dc5105806aa8084c08e6e916a019bab8f8698994f0"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "635642582701f6ae26df91e39d5bfd9345c4c219da73e71a27f4740a4c0c7970f52cef667bb9cc4dd08c26d9b0447ee003c9e56d5ede68870976356c2fcc4a5c"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "ed9e4cf2b47f0891d5fda2a4a63650f0309a5e05f4b51b208bb0c0759dd1cd713e8db68816666ade0fc2faa855bd98c1"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "66c79624a37e19a65063c3d3c0e4779c18e33c2f558078abe1f05c69b1a85a6aae561f0aee1163c41d5efb4a315a3567"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "b6214feecbcb01f82e7442d614d5ddfb02efb686c0b603def92fdc7545f46412"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "0073443439cbc3897ea98f332c61422e0ffd40309fd93c6683a35f70df8e4828ed9e34025e0368ea55935d66863bdec895560054f1869dafd87f2bfc21f47ebf"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.jboss/jandex@2.4.2.Final?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "http://www.jboss.org"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://issues.jboss.org/"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "http://lists.jboss.org/pipermail/jboss-user/"
+ },
+ {
+ "type" : "vcs",
+ "url" : "http://github.com/jboss/jboss-parent-pom"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.jboss/jandex@2.4.2.Final?type=jar"
+ },
+ {
+ "publisher" : "fasterxml.com",
+ "group" : "com.fasterxml",
+ "name" : "classmate",
+ "version" : "1.5.1",
+ "description" : "Library for introspecting types with full generic information including resolving of field and method types.",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "e91fcd30ba329fd1b0b6dc5321fd067c"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "3fe0bed568c62df5e89f4f174c101eab25345b6c"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "aab4de3006808c09d25dd4ff4a3611cfb63c95463cfd99e73d2e1680d229a33b"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "7fc4764eb65227f5ba614698a5cf2f9430133f42ec6e2ae53b4c724ee53f258541a0109fe0659e0b9e45729b46c95c00227e696b8d1addcd772c85f877658c9a"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "28b4780b2353ebc08dbc02c9a343527a9062a0455bfb4ab135cb639c03e5dfd9c2250a835c44d5f17d275667c2009694"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "b194ace8f1f49f410286bd859866678b95a1b2c6f73e41f48291eb7438dffea57aaa9b177459038b6997771ce4d1cee1"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "50234c94efed4c816eb77bd2f70b869c9f89ddf8ee73dc25e354f4d0b81b3e1f"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "9886421726066b313a62283a6811b76d904ea1c1e9b7b2d850cb47afa189b03cdef053c8f7f6b79e77f2269c45f8cc2ed75c3389e96594b50987fef311d5a25f"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/com.fasterxml/classmate@1.5.1?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://fasterxml.com"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/FasterXML/java-classmate"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/com.fasterxml/classmate@1.5.1?type=jar"
+ },
+ {
+ "publisher" : "Hibernate.org",
+ "group" : "org.hibernate.common",
+ "name" : "hibernate-commons-annotations",
+ "version" : "5.1.2.Final",
+ "description" : "Common reflection code used in support of annotation processing",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "2a2490b3eb8e7585a6a899d27d7ed43f"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "e59ffdbc6ad09eeb33507b39ffcf287679a498c8"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "1c7ce712b2679fea0a5441eb02a04144297125b768944819be0765befb996275"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "9ce69f19b2e080071a69a2faa992be70b2c153d94862c306f784d1f91fe66e01139c13a3b4f156ee17bdc58ea9c93b61e2dbdfc43152d43896610251488c6e24"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "4f1652cc7f93556ca615f7a70a63e22004f7e1325b6d38492c5601d9b13f9ee3292b7e8919c1a0ef41de0266ed84b941"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "c39a9a94055696454d0ecc5c9718ca1ca7ea05f3b22eb8991c69f31e976a595b86fcaa37fd030c03c0860610bd7251c4"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "a2dc556200c3503ae769c6efa3634a94ac30f475f60b9fd7e478c8919e326720"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "4c791c5d5c43a3d4907f495966d89bd281d90727e3884d889b07a6e88c0ad3f9a712fabf4f2d73c57412d9eff1946ac48ad5450067ca9f6e83212ab09c18907e"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "LGPL-2.1+",
+ "url" : "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.hibernate.common/hibernate-commons-annotations@5.1.2.Final?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "http://hibernate.org"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://hibernate.atlassian.net/browse/HCANN"
+ },
+ {
+ "type" : "vcs",
+ "url" : "http://github.com/hibernate/hibernate-commons-annotations"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.hibernate.common/hibernate-commons-annotations@5.1.2.Final?type=jar"
+ },
+ {
+ "publisher" : "Eclipse Foundation",
+ "group" : "org.glassfish.jaxb",
+ "name" : "jaxb-runtime",
+ "version" : "2.3.7",
+ "description" : "JAXB (JSR 222) Reference Implementation",
+ "scope" : "required",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "4fb00614ad222cfdfc2204ceae827fb5"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "ebcde6a44159eb9e3db721dfe6b45f26e6272341"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "c048d9edde5d5d67bca4f66921ef1315b8e20b1a978b757d54cea0ea5ce1c907"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "9f47f8fa383711b17f650ccb74f14f80288529bd2d822a4a26bec16e5cecde048504d94217e568b088fbf6a6ca80c4f89ec4827b02a90b5e33c9d497c39a3312"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "6e96de592f2c0c5bb494c655aa6fa850b2d5399d243506a4e21fe97c137cce43d030748c61df5a6890851fc12f006351"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "32cb5d5f53723d2e6b0fb45c625ba8103dda7f7a93387cddfc38b82480ae9389db4534c2551334ecf4c81b478fd69743"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "113b31c82029f98d83a2f7b3b1dc2cb46bff2f0329f1eebdc29759c0bcaa9f9d"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "6bbbe8c3f83221ed70324fda7486b217eaa71ed3c152b7a2e6f1fb6f92c50b8f5757ff03b36f4ce9bbd8ed3c89f9dddb271df3b42b5423c177bf171fcc4770c4"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "BSD-3-Clause"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.glassfish.jaxb/jaxb-runtime@2.3.7?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/eclipse-ee4j/jaxb-ri/issues"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "https://accounts.eclipse.org/mailing-list/jaxb-impl-dev"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/eclipse-ee4j/jaxb-ri.git"
+ },
+ {
+ "type" : "website",
+ "url" : "https://www.eclipse.org"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.glassfish.jaxb/jaxb-runtime@2.3.7?type=jar"
+ },
+ {
+ "publisher" : "Eclipse Foundation",
+ "group" : "jakarta.xml.bind",
+ "name" : "jakarta.xml.bind-api",
+ "version" : "2.3.3",
+ "description" : "Jakarta XML Binding API",
+ "scope" : "required",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "61286918ca0192e9f87d1358aef718dd"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "48e3b9cfc10752fba3521d6511f4165bea951801"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "c04539f472e9a6dd0c7685ea82d677282269ab8e7baca2e14500e381e0c6cec5"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "adf6436a7a9dc6f64b97127861d7a89b78e82bea67f72bda800ef285163adcd84dbf006f679108a2a8c2eed013e0b771da2354087e0845479ff2b6318b881442"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "bad8b9f52bf7a7e1d3974cb305a69c093fb32d2131539c18d34e471e3ec32bdd9dd136bb4b38bb14d84e99c562f208c7"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "8131aaf65f996cfa2c3f7d406caab3acf3e6650bcbbcd5595f8a457a211810ff110c1923876e068831a07388ddc26f33"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "a9e4179a6bfa8b363b9fd4f32f8892c4a7954ed1695d3f33ccef73ceffcaa1d4"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "9ecbc0f4aa9cff28d519cbf74c8234b5180ae6ff0d6de4efe2de126b3251d466a5ddb878e70b9968095a843c82721c93a4dec53bfe09e3700f4cfe2e38bcac0a"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "BSD-3-Clause"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/jakarta.xml.bind/jakarta.xml.bind-api@2.3.3?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/eclipse-ee4j/jaxb-api/issues"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "https://dev.eclipse.org/mhonarc/lists/jaxb-dev"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/eclipse-ee4j/jaxb-api.git"
+ },
+ {
+ "type" : "website",
+ "url" : "https://www.eclipse.org"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/jakarta.xml.bind/jakarta.xml.bind-api@2.3.3?type=jar"
+ },
+ {
+ "publisher" : "Eclipse Foundation",
+ "group" : "org.glassfish.jaxb",
+ "name" : "txw2",
+ "version" : "2.3.7",
+ "description" : "TXW is a library that allows you to write XML documents.",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "d7d7c63bc636c072394334c85cb6d49f"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "55cddcac1945150e09b09b0f89d86799652eee82"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "4a52d7c42a7e6270c8d72554eb994059f53d69c2545fb2daa02c6e9bfbda8b22"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "220d61c9309eb9a0fcf5b41eda0f625305f5fff2cc9c1f0f96f0319903e44ec3a2c3353f7c07a14e0132335a62c7901c018117954194bab4474e88edea37b1ef"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "21dafda6e46429a2dae5b2e146f765897c1b8a3f7b6d63ba9f558b9c97bc8e9c7e707712c0d2484f2042bce3d4d8e242"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "62048d62d86908b0866d4942f2bb7b507d6688abb4cf6fe9fe3940132c3a4ec056c543401334f9cedd6c76e2aebd8fc4"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "3b884782ca5f898199a6b59251c55d2d8f364a85cb6f75b5401c2b37ef8a13f6"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "05a77d26fb0151495d4eea07e704a7cb3e3aa92fb4a09e0ca483ee7505311eb022c54836ace62be02661aa51e80bc480c4154e640bfff3d0f46609a7382febb3"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "BSD-3-Clause"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.glassfish.jaxb/txw2@2.3.7?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/eclipse-ee4j/jaxb-ri/issues"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "https://accounts.eclipse.org/mailing-list/jaxb-impl-dev"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/eclipse-ee4j/jaxb-ri.git"
+ },
+ {
+ "type" : "website",
+ "url" : "https://www.eclipse.org"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.glassfish.jaxb/txw2@2.3.7?type=jar"
+ },
+ {
+ "publisher" : "Eclipse Foundation",
+ "group" : "com.sun.istack",
+ "name" : "istack-commons-runtime",
+ "version" : "3.0.12",
+ "description" : "istack common utility code",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "1952bd76321f8580cfaa57e332a68287"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "cbbe1a62b0cc6c85972e99d52aaee350153dc530"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "27d85fc134c9271d5c79d3300fc4669668f017e72409727c428f54f2417f04cd"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "af36b11cc0d82b7f62c64941f4e7d441d25cb9f3c4b3e08753d038c388e5a09364b5dac9127f29a9b8df6d96034133caadab6d74371077478d2f301605913460"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "ad8ba1f6538e087915b1e7fbf4a7a60b006ebecc4ab52986c10dfe88ae11ae7eb6e1f302bee06f70b16ec316f001375b"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "2207c7e1570860d6300ef3157905498efaf26ba85566b053495f583b20c755cc07d6855b2d79136ab4d6544635e39f4d"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "50a425e524a6ee81110ecd86190d039a84d46aa3c45855310fe4f95abba3c21e"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "286997280ee0885c456686cf91c601e600106138f39eb81fc27381868f7ede0d1521cdf22c420331b1a961ed2f1ba1887a9ae05073f4364e3ffc297f40f0de53"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "BSD-3-Clause"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/com.sun.istack/istack-commons-runtime@3.0.12?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/eclipse-ee4j/jaxb-istack-commons/issues"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "https://dev.eclipse.org/mhonarc/lists/jaxb-impl-dev"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/eclipse-ee4j/jaxb-istack-commons"
+ },
+ {
+ "type" : "website",
+ "url" : "https://www.eclipse.org"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/com.sun.istack/istack-commons-runtime@3.0.12?type=jar"
+ },
+ {
+ "publisher" : "Eclipse Foundation",
+ "group" : "com.sun.activation",
+ "name" : "jakarta.activation",
+ "version" : "1.2.2",
+ "description" : "${project.name}",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "0b8bee3bf29b9a015f8b992035581a7c"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "74548703f9851017ce2f556066659438019e7eb5"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "02156773e4ae9d048d14a56ad35d644bee9f1052a791d072df3ded3c656e6e1a"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "8bd94a4370b827e3904f31253b022e5c1851896d3b616ca7daebfef259238cedc56d4ced32c74f24a13c3e2295b0ea012af5d04656b7f713cc53a2f18d5e2cf7"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "1cb0aff8b73ba52a9931b2cf13c75a1ce6665fb826bf97ede66db75c532136aa189fb53a1925e62b6eef572309ef3b9a"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "83801332576d931f4091ba65ea240d49c23e3b93dae939ce2eed63de943f80f251a4347638b99900de5b831796b12590"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "5363211b59dfaff6e1973e93548e5e4062189c6d0f43d7802627ebeb7b7ff37d"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "0c7b62a3432b19ffad02eafffc7e598391cd32b1313d075f94cda09913402770b4ba2314716625571f266431067229c93cec36e17c3ea598623542988634ca0a"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "BSD-3-Clause"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/com.sun.activation/jakarta.activation@1.2.2?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/eclipse-ee4j/jaf/issues/"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/eclipse-ee4j/jaf"
+ },
+ {
+ "type" : "website",
+ "url" : "https://www.eclipse.org"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "https://dev.eclipse.org/mhonarc/lists/jakarta.ee-community/"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/com.sun.activation/jakarta.activation@1.2.2?type=jar"
+ },
+ {
+ "publisher" : "Pivotal Software, Inc.",
+ "group" : "org.springframework.data",
+ "name" : "spring-data-jpa",
+ "version" : "2.7.5",
+ "description" : "Spring Data module for JPA repositories.",
+ "scope" : "required",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "679d3cd19c5ecbd194a3fb01be4dc11f"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "dc0bb497a33fcd3f82fe0ccfd674476d93889b3d"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "9af3cf88e39ad26a513f56f91ecb1eb969c7e557730ec6a23b31444732a693db"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "fd7458430056fe5d014e4b062a30c44e548e4913164d5a4f0eb05574fb4d0e9c623cda0f63ea552a63bd606daae92796d3a3384c6049d9247e88e1074d3961d4"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "9439a9282d7348c12efee0d69e8f914a4ae393eb80592ab4159c325d5bcbf122662f52e4873cce89659c978bec6b507b"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "d71f047c63c21836f88a94f0ae8594b3bcf42c63b17e2b1a55c6c649baf8433ca7a79b1787fcd18697a68eb4a5b5080e"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "a291aeec0a009650003c239c51242148130e7b09495d9ea72ffccefce94de0a0"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "1d7dbc67ac2710608933924698d0b9a35caf064154bb263ee230d7716748ac994accdec5ae27fde682033b07383fc293489ce6d8cade56be6cb989e4009f7eb9"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.springframework.data/spring-data-jpa@2.7.5?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/spring-projects/spring-data-jpa/issues"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/spring-projects/spring-data-jpa"
+ },
+ {
+ "type" : "website",
+ "url" : "https://www.spring.io"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.springframework.data/spring-data-jpa@2.7.5?type=jar"
+ },
+ {
+ "publisher" : "Pivotal Software, Inc.",
+ "group" : "org.springframework.data",
+ "name" : "spring-data-commons",
+ "version" : "2.7.5",
+ "description" : "Global parent pom.xml to be used by Spring Data modules",
+ "scope" : "required",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "9d96980e5547912448eca4b75308c8b6"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "0314b3faf010d9a5bf5a7cf12914e721ad0257f4"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "7b818ec53f28f4adef04a63ff4dda84181b5f2eba601a5402078b29e10f78c80"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "065312ba1763793932f470ffcca1717b474fa9f6578e067959af32ae6d5f5fc9a1aa73b322ef9711cecfe99ad9f0423f5c2a0174daa2250f3a388210ff3b4fbb"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "60bed9cbee936f4637cba3b65e29148682a863bfdd51216a609065f498bb3e19c67dbf01019660108427c10bec6f30bb"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "8d22a26051afb0c15f6afd8d095eae86ea98b94abe41a9849eef8170d11f33301caa2c402d7e23e3fb35c0b0bb70494b"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "e57d27493cb642ea74a2022c28d04a0e64e2af8e6c32bce2e5cb1a26d3d4d060"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "c61c741559f69f916734812e3d2441043c4c42ce098863857079e4eaf4a2308affcf9dcd0a4f46db9a033d9ad8e88e1e49bb2b4c0a9ff1cbc29a0ae9ffb38af0"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.springframework.data/spring-data-commons@2.7.5?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://www.spring.io"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/spring-projects/spring-data-build/issues"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/spring-projects/spring-data-build"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.springframework.data/spring-data-commons@2.7.5?type=jar"
+ },
+ {
+ "publisher" : "Spring IO",
+ "group" : "org.springframework",
+ "name" : "spring-orm",
+ "version" : "5.3.23",
+ "description" : "Spring Object/Relational Mapping",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "729981a93a9565becac1aae1f31aba7d"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "7d023546cde0f1b2b8d289c690679f740394298b"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "0e1e258e536a74ece74b0f7954d540ef888baba4f02d9b14980fa6157364d153"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "e86c5eef082d9378efcd554f27e333b3b32a316885f6f71b007a1c8e9e35ae83d94f349e1dffee30edee915a7c85514cfc305ab5954b894eae9d031d931ac860"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "1fa200780ea690a34722c3efb146035fdec468f4ed0acaed298c9fa3abfba726c2c814dd27cb7a43d533e2e43480638b"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "f1ea88d140816f9f6b80f7d9e8d4c858ec92bdcba9ac591870f2e04888f9d0fb92ffb832ce53e65e5522c653599ec2c5"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "701ac81878b7003e2647d592ffa75dafd1b1960bbdebd22f5e995f6bef37c550"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "9e029336e77f5ef0c164f1af13b4a1013fce67cbf4ef3d363a9a1a276a525cc69d8fd89c20e6a2d3889aeaa434eb1f3c339568eecde2e3aef2af54fbfff65964"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.springframework/spring-orm@5.3.23?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://spring.io/projects/spring-framework"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/spring-projects/spring-framework/issues"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/spring-projects/spring-framework"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.springframework/spring-orm@5.3.23?type=jar"
+ },
+ {
+ "publisher" : "Spring IO",
+ "group" : "org.springframework",
+ "name" : "spring-tx",
+ "version" : "5.3.23",
+ "description" : "Spring Transaction",
+ "scope" : "required",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "9abf629595fe674159f7240b6e4d652c"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "ab313b4028c62e18fe02defdd5050af704778428"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "50ec8e851eecc36e8cc046ce9a0cb8e9f150aefbae9ce8ccd9689a297c28746b"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "78ac60cddde270cd013898e6f353632c912964a89d3ead3083b7045a21c821a72a41cbf90a6ccfee9e81338ad4f694070db3a886b2b5cf1846ef8853a162087b"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "611e58be6fd702ac53faaa3a6e676ff9572717b39c2752120d09fe1a086acc5ceb5ded169d44ba931ce93cea65d97c9e"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "c1ad8b0f9713ba57e6b1d4a46ce3ade6270a45c96ef3ebaa78cda3e7fceaa3a825bd1ef48bf78c30c6bc0686da2b965e"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "d2f74b2c8e7079995858fcc78cae887cca7c79a095cd4e2a0d3fa27c3a1a23cf"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "9493f0d9b2a8678ffc308cef8ac2fdaefbeb8d39577fb63f3f97cd195d6498cc3e2b36b3f76ad0d846de4ca4d98f66886a165cf644738223f8dff0725b0e433d"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.springframework/spring-tx@5.3.23?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://spring.io/projects/spring-framework"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/spring-projects/spring-framework/issues"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/spring-projects/spring-framework"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.springframework/spring-tx@5.3.23?type=jar"
+ },
+ {
+ "publisher" : "Spring IO",
+ "group" : "org.springframework",
+ "name" : "spring-aspects",
+ "version" : "5.3.23",
+ "description" : "Spring Aspects",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "2fb0559787036339df65df932238a48a"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "35a0f5df4241f794fd79dd2447195ac055e88b8e"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "006faad1942076696e99b88d17f0f7eabb47261419cef0ce8cbcac98b7d7737e"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "c9ed752d606973e542a65ceb46741d3032ce51ce81f1306eef9ce49784054618658229c6f09af615f3793907e4073ccc2e5f08ba934f437aee64a9ba6c5084ff"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "2902ee5cd02611c2d097238c13fceb873e9c82ba8a6fa228c19b3b1c3499c6bfb6994c1b9f8283123259cfc4011da1df"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "a952ff6c86643c0cb5381f311f477c7b5a6f1c5ee29fc86a8235cb57ba3b616842555bb9cfdd33fa080ef99d8dfe5ca8"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "ab5cc9503667904d9ffa1b69575184366bff5a0ec2b8bb2b77b71f08bb59fa71"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "1937835349dba8e62265799084cb96d754543b896b4473a369b897ff9bddf4b31ab58d814532bde433426078665d67c20445cd4d976a9fd8a05286f539b1fa3c"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.springframework/spring-aspects@5.3.23?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://spring.io/projects/spring-framework"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/spring-projects/spring-framework/issues"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/spring-projects/spring-framework"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.springframework/spring-aspects@5.3.23?type=jar"
+ },
+ {
+ "publisher" : "Pivotal Software, Inc.",
+ "group" : "org.springframework.boot",
+ "name" : "spring-boot-starter-security",
+ "version" : "2.7.5",
+ "description" : "Starter for using Spring Security",
+ "scope" : "optional",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "f8e2ba709058c693d954db22281db402"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "cc83d58be6861484d25ae9e2fc6db6564062140d"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "0473a3b8f86c64ab992824bde28c5ed30aeaa0b8395b9e9a7099854e1b7b3851"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "f81648cc47093f8692bd3e87b1dadbeaf217542c6110875875e5149c912fb5e1f041173dfd3573f68cf3ebcafd6481538dc7167ca7682d44db789ee392352edb"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "4128265d44aba33f9ea38c003a3ee8b57e3bef70654cbde8bb8a50d5bbe5fd53de0a007f24b4ffbc9978a79f1ea01376"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "26c7c1e1c5306b1fd9abb58cb4d67335a2b548354af1133764923c70c4cdea174867902b817763aefc1aaa8dd8efffd8"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "b119721a630c37775acd820ca12ba1192afda1c9a70589bef5d4d23da58b5e08"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "bcce8da2bece6f1f5e7b33d0e4c348de9edc34e022efc40fff959d4ae2687b14ada6ed6b0d384f6d930d23a061de2f5dae7f909889f075cf51de161b1daf3e23"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.springframework.boot/spring-boot-starter-security@2.7.5?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://spring.io"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/spring-projects/spring-boot/issues"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/spring-projects/spring-boot"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.springframework.boot/spring-boot-starter-security@2.7.5?type=jar"
+ },
+ {
+ "publisher" : "Spring IO",
+ "group" : "org.springframework",
+ "name" : "spring-aop",
+ "version" : "5.3.23",
+ "description" : "Spring AOP",
+ "scope" : "required",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "3d1bd213d1a8356d6f87c3c8d4f49509"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "30d0034ba29178e98781d85f51a7eb709a628e9b"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "532584069f50c6f2c0a6692422a501ee77ba3245acff4a7fe51f3d658bc555db"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "e77024f92f4cd12fe6448d12c312f38f2a85e6aa1518c760c853fdfd868f742b1130e3091c281183f1af8752c0b95c9031697e8b321375d7237ca133464356cf"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "86b11a21779d13962f7a7182af1ffe8b6f1273648a6c12bbcce463ce36cb66b44150a6ef4f389af14c9d6f09135fdb57"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "cfc1c46aad61f39ae30d4b9f75416cbc1867a37f3f2f524b56471829fa421502bbe05b1f2674f2b151dcaa3ee0831420"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "a602ca0ee455284dfb683293b288720b887a4dd42634668012856022e893120a"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "66d3a88ffdb5d38d85ab68754a6b1a048542b53ae9150c2c79296d8d23780ade4b1d8d3bcff892d6934a7980d623892e6f521fcff8919fc89eb5ca6f4b8ad1ad"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.springframework/spring-aop@5.3.23?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://spring.io/projects/spring-framework"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/spring-projects/spring-framework/issues"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/spring-projects/spring-framework"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.springframework/spring-aop@5.3.23?type=jar"
+ },
+ {
+ "publisher" : "Pivotal Software, Inc.",
+ "group" : "org.springframework.security",
+ "name" : "spring-security-config",
+ "version" : "5.7.4",
+ "description" : "Spring Security",
+ "scope" : "required",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "395c19eed8c342fcdec5542495b825c5"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "fb76b6ee2d2ff36df920f21a2b9130f02345729a"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "521636db6935f89e47f6a2615c17d1c205719674f056e8b29ac5a3d0a81aac63"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "c35559c1dd3561d154133a6f03c1558af86b033fee8c784fc6228c7ae1a8aa4a8d6a7297e9134b9de15dde984f23f85fdce5ef675867677c67b35b5c210ad33a"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "221819bfa5bf4a59b86c9844e238ef9625d322d69b9b133562c2b1d1787b94a883b2e2b93c8c6aefe98c0683083ecfbb"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "8f28d526964bfba249d05832b9553f1c1ee3a836f14c203d65d38a94a3b5c5bc69bb76ee31dd5e863b01767ec761f993"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "2fbd6c00a54645b68235bfc1ab57a07bddf685d670ec6b38e5ca044d775c6cd7"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "26300232f437f13ce8f7b1217dfdfa0d48216942852dde0958530a491ba107fc42c8b640ddd4ed80ca90d34d8ada87e6db46bd1202ba4bafca8bd692ad518b99"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.springframework.security/spring-security-config@5.7.4?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://spring.io"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/spring-projects/spring-security/issues"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/spring-projects/spring-security"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.springframework.security/spring-security-config@5.7.4?type=jar"
+ },
+ {
+ "publisher" : "Pivotal Software, Inc.",
+ "group" : "org.springframework.security",
+ "name" : "spring-security-core",
+ "version" : "5.7.4",
+ "description" : "Spring Security",
+ "scope" : "required",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "46acfc1cf321c60a0b8f3f8b096ab3f0"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "7e7d4189d115a053976eaebaa6e979ecf43ff2e9"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "2d8a019061742fea80fe9a18223f23d398f8ec46888cbeff5940dbd3a20117db"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "a93ad6dd125ec52c50fc487471b8f8903371c58bb156c90e8c1edbb8634d3692879b0772070b82b97efe2c461f87f75bef5fe8715210e8e574788949e91788bf"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "52308bd81307589bf38dc5b7f6888d2333b1df5c78ebfc11fe0deb4f41df762e3bfb8c76851641b5913c2006dabf589f"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "9613f8ba4c6bc83891f681e957a8c9ac0b83467ff1fb3e4915d8e581f9f4b1c1642ff15a8fb9a081727eaaca305e5f34"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "41486d408879b73cf890308bd024e95b6e60e40831ff969efbb56a227fc83189"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "dd8be6b5a8b97762dca5a5aedf1bf76a18ace1c814e42a8a6e86b318ac12e164cea55ca6e9bdc4987b42d9e3c25d3e0c9d3d897eb1315cae3a326c37621f946d"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.springframework.security/spring-security-core@5.7.4?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://spring.io"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/spring-projects/spring-security/issues"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/spring-projects/spring-security"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.springframework.security/spring-security-core@5.7.4?type=jar"
+ },
+ {
+ "publisher" : "Pivotal Software, Inc.",
+ "group" : "org.springframework.security",
+ "name" : "spring-security-crypto",
+ "version" : "5.7.4",
+ "description" : "Spring Security",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "1df48d9d62ca9ee3801727a2cb14e367"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "f5924f059764a44a20ce284322cbc49276550134"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "aa5f5d9884d4846fcd1b60662fd7bedbff6b1aba8b99653555f8d413d183d1df"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "6bd5a796ccacb5ba97b112664943d11eb6492c5b968b64ba0e920674ab112b4b5acd18aba8182cffb0b22b607ea0c50c386ba1dbba5395d64017ef7d146697cb"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "4fce4346826b7e8b4b3530cd02b5955936f1a2c0ccda2da28af77ad0c0a50401b49d942d9bdfdbdd33b5e83faf8cd0bf"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "a763719f6de27420fd1c8bded928e1564b1328e4928391a955d2084ef49ce503fd2e204f97c39b7a0c70205e01d15c5f"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "24140144991d4954b8d4a4929710d4f43f0f189544cbd1bf6f63bae6046fc674"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "98f55d278269c59bf18618823d08e1e5971f389a64890774810663357577ba685a9fcb6bc36bf425d582e2ffd27cda1db167db8c0180807557fed5505d2b3443"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.springframework.security/spring-security-crypto@5.7.4?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://spring.io"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/spring-projects/spring-security/issues"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/spring-projects/spring-security"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.springframework.security/spring-security-crypto@5.7.4?type=jar"
+ },
+ {
+ "publisher" : "Pivotal Software, Inc.",
+ "group" : "org.springframework.security",
+ "name" : "spring-security-web",
+ "version" : "5.7.4",
+ "description" : "Spring Security",
+ "scope" : "required",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "77532c6633458d09c4137ca098f2d530"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "9e89534c6b9ddbbbda692e83e894c1ca0a8c9266"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "5b06db2a353b47da760612d2f741e6840a0f180ef249cebff18ad8a59310e848"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "ee776b83f9f4194a1bc273eefcbdcbb8b0d07d4f1e724b3f284fae8821af3ff1b27bc3906bb7e5aee49875df479fde23dc5120f58841e7e0c9fc755cf621020c"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "f40fb19def610f7d1b2bf7d5db2447232c04149fdc0a37ae12941bab82ec178f3c572b7c1b1cc97f4401b51b4964895f"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "8724ca28fb70b7de719fd27895913262759f46bf984b02e195e168580f700249da01fe6c96823c117473c483f50db53f"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "6c128a1236923820fe24d9ff4a7a662125c4e7b17b9c6b7e6e04d20f9fc305cb"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "f3785d7cb8b5edfd01b60ee7e129ce318665da43713a41c7d215d6756aafce764589b7a12a2ce4660a2134dca8accce339846fceefeac94b863fdecb8616002b"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.springframework.security/spring-security-web@5.7.4?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://spring.io"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/spring-projects/spring-security/issues"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/spring-projects/spring-security"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.springframework.security/spring-security-web@5.7.4?type=jar"
+ },
+ {
+ "publisher" : "Pivotal Software, Inc.",
+ "group" : "org.springframework.boot",
+ "name" : "spring-boot-starter-logging",
+ "version" : "2.7.5",
+ "description" : "Starter for logging using Logback. Default logging starter",
+ "scope" : "optional",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "0e3224e062dabf3b83a0ae823b76ed2d"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "61f4c53e35baa31a269bbeb7bb9d5e781448feef"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "9f0be185462e7d4a1dedc4d03854ed7477768c86ed7fc3d89dab1baf56527de6"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "264b89ac1adb92ccb4495e71a9da1aa93a04a83ba01a3642c7def601c9a355729c37e98e3254b739dc7eb8d4cc5333164236e6e0c14e30cf764d698587aac755"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "83fc4bc273557c480df15fdf13f22981799692fc92d9ebec0fdf96ecd56a83abc1817937046bd430683d430f8ff14b5d"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "d956d196812966120d5d8ba01a1593082af65927dbf8b5086f67335902ff1507773c89422a457e7a97855b25f3a055df"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "55f0f2a7b4e6841ee666b69af3dc621687b992e093985079d5c9029810d25d06"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "13957d65b84ce8460914c820a8fe3801d537b30245772cec28747ca7f667d033e4bfafa1b689cbd548beb5a6388e6c703ceb3a44ae34014aba73e449ecab9901"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.springframework.boot/spring-boot-starter-logging@2.7.5?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://spring.io"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/spring-projects/spring-boot/issues"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/spring-projects/spring-boot"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.springframework.boot/spring-boot-starter-logging@2.7.5?type=jar"
+ },
+ {
+ "publisher" : "The Apache Software Foundation",
+ "group" : "org.apache.logging.log4j",
+ "name" : "log4j-to-slf4j",
+ "version" : "2.17.2",
+ "description" : "The Apache Log4j binding between Log4j 2 API and SLF4J.",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "14b27a4266c6d71c949cb4591ee463cc"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "17dd0fae2747d9a28c67bc9534108823d2376b46"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "9bcfa5273527b950d79739d11e8f8080cfc881908fa2a946b4e891c0293094de"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "c90bbaacaabeed35f80be4d723b54234fd137413888870d6e1c1b16c067cbede57d637a18f0d25421a9c419fc55a9c388ce235077cfd6497178dfe67c5d398e8"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "c8374c05542d5a04a831a66596fe31cf385a303643e724840a70508aaa98e4870234aa8a26ac1f4fab167fe45bf34e6f"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "25c843c30137e459b94476843d8312a49d75b40d80469b1943b44a6bd2fd51f6b6f71b23d4bc559f91ae0f28763c7b0b"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "d0e8a8996e79cc881a10a55b4887436a9458625007f03b071230d1c4e96b54b6"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "6d0ec7c51ea40dee55c3c9a60ec198fe7461fba1f6b30a88b866608e83f47fb1328754b8fe33f3993f8c1ececc89c9ea83cb8b266f36fd9c1b8095946d330e2f"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.apache.logging.log4j/log4j-to-slf4j@2.17.2?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "build-system",
+ "url" : "https://ci-builds.apache.org/job/Logging/job/log4j/"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://logging.apache.org/log4j/2.x/download.html"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://issues.apache.org/jira/browse/LOG4J2"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "https://lists.apache.org/list.html?log4j-user@logging.apache.org"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://gitbox.apache.org/repos/asf?p=logging-log4j2.git"
+ },
+ {
+ "type" : "website",
+ "url" : "https://www.apache.org/"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.apache.logging.log4j/log4j-to-slf4j@2.17.2?type=jar"
+ },
+ {
+ "publisher" : "The Apache Software Foundation",
+ "group" : "org.apache.logging.log4j",
+ "name" : "log4j-api",
+ "version" : "2.17.2",
+ "description" : "The Apache Log4j API",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "0c39d90e7819c92c111e447bdf786a90"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "f42d6afa111b4dec5d2aea0fe2197240749a4ea6"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "09351b5a03828f369cdcff76f4ed39e6a6fc20f24f046935d0b28ef5152f8ce4"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "8f986171ee6ca94ba8eacfc83b5b45bb87221c176076eb152715fcb4e1f351c4e9f88d56420fc02ee166ebe0b896fb52eda21355dec49302ab3e83a56b245d04"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "e4ba0afbfd91ef295e6c1c1edfa7854e216a29705b5c4b520f803697ae6badf3630c5d55e56394954988fa88e62176b4"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "ef8ecf2f848bcb18790d79b1d4e0fac0582e94f226eb8c7039d7316bd9f4c472556a4052b4a93958eb1248c7a3756433"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "bdcccb79127c28c0f42374eeac65891e7c0d02f18e1469c705e946f74cfc89db"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "14a4d4f38dc5392f378e006994780d686095e1190d476fd18efcd4211bd4dcd64b699d79c5f4351c51f2d26a3ab98b4a49745df6dbd404e3bc981797a5b8c075"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.apache.logging.log4j/log4j-api@2.17.2?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "build-system",
+ "url" : "https://ci-builds.apache.org/job/Logging/job/log4j/"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://logging.apache.org/log4j/2.x/download.html"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://issues.apache.org/jira/browse/LOG4J2"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "https://lists.apache.org/list.html?log4j-user@logging.apache.org"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://gitbox.apache.org/repos/asf?p=logging-log4j2.git"
+ },
+ {
+ "type" : "website",
+ "url" : "https://www.apache.org/"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.apache.logging.log4j/log4j-api@2.17.2?type=jar"
+ },
+ {
+ "publisher" : "QOS.ch",
+ "group" : "org.slf4j",
+ "name" : "jul-to-slf4j",
+ "version" : "1.7.36",
+ "description" : "JUL to SLF4J bridge",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "2a3fe73e6cafe8f102facaf2dd65353f"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "ed46d81cef9c412a88caef405b58f93a678ff2ca"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "9e641fb142c5f0b0623d6222c09ea87523a41bf6bed48ac79940724010b989de"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "0bb1e7343d07d41bcfb0c1ffeb2db28cbb35e7a80a409b80042f463b082a292976f09d719e319471e31c7bab716121728a16509fd385fc6e3b400b1b214cffea"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "50e2f326fc00537a5fb3726c7c55556851b3be8b4346f522f27ddecf2fdb44adabae3197b30ccfd854c37d6734adbd8f"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "4ad0c3870852ac44530a9dcb992d947cd8708ee6f422559da41aaaa8b22d1610fb116b32d2c54df83b110b85487083bf"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "8e3f5aaaa27f618b52e610376d2a16c6f9dc8dce5e6c2bbe42131a590626aae6"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "e3da265406b5e69f02235ed7272a48f71cb8b6f0a696820e28e90fb5eafeeb311abf2a4e779b402f384c6a80470fd41116ee52a526f57040fae3b24cb3b19c01"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "MIT",
+ "url" : "https://opensource.org/licenses/MIT"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.slf4j/jul-to-slf4j@1.7.36?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "http://www.qos.ch"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/qos-ch/slf4j"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.slf4j/jul-to-slf4j@1.7.36?type=jar"
+ },
+ {
+ "publisher" : "Pivotal Software, Inc.",
+ "group" : "org.springframework.boot",
+ "name" : "spring-boot-starter-validation",
+ "version" : "2.7.5",
+ "description" : "Starter for using Java Bean Validation with Hibernate Validator",
+ "scope" : "optional",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "5e73a3a68d2a74da7c9f17f566c6b814"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "11760608ed34382c96c7f623eceaa608041f1ff0"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "93a0d1f8e807b61ccad33cadfc64159337e18bdad72d9ecabcbe06f0265a3ceb"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "7807fdbfe4238517b30849f6421662793936eab63395096996bdcb5a0c7709c332164bb5d6036b214f35c3c9b593e50a7f80f84c319f4473b8035ee49339b13a"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "8730362c7de2cdab92b4e8a8c3c990fdaa0a9dd9cdda9c9323d2b8384d27c88da88bc0dbfed9c16fb54247b6c2039e1f"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "6cc0b58f9fc08b62935bffacbe0a61111f4bb9536cf71889f3b3363620f70ef70aa2e48b0460694f642eb2c39c4fe870"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "e177517e3767f5a29ec6fd694e5ce3224b8a9255c39c5036f271b60d77163948"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "a9a4f85988f3af0ab1e2a4d7c4868ef3c08b15cecd728ba6042446a87ded4d6b1b7608840412f15eeb7c483e2870642eaa367c1c078ff98c52752a8caddbcf3f"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.springframework.boot/spring-boot-starter-validation@2.7.5?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://spring.io"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/spring-projects/spring-boot/issues"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/spring-projects/spring-boot"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.springframework.boot/spring-boot-starter-validation@2.7.5?type=jar"
+ },
+ {
+ "group" : "org.apache.tomcat.embed",
+ "name" : "tomcat-embed-el",
+ "version" : "9.0.68",
+ "description" : "Core Tomcat implementation",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "cc66bae549fa2bb4cb088d0902aa9372"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "296afe7483256960d7ebdd8dcb4b49775d7cb85f"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "05b29a7bc6542daa1584c325f37732d75223951ac8e6941effe1b454b9d2e751"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "96d43bf406d2d60ba703d6757bd6a16abc4e7824d585e7fa9fbe863cb6a8fd0815283f14fb80cb02d009cf295535d8f20d7ab7f402b42c0f81c9112cbeb618d5"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "2bbe3b4981f9494e53c6340056d824951aa3371e2239ebc4edda161564b6c48c168b887519c2c678cafb506030e37bd2"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "7464b5b31f10738a017371d1e2172df3f9d29a7a33d3f5c657913f79dfac855b16b1871e7c051c1537a00eccc470b1bc"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "550a5f3a4bd57f97175bbad3d49eb425f2c75dadafabbb269b7d220c33ee4925"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "71676859c4e56ce8a6d505eff16f0d0b7c73d702373a92367881df601768849bcee2b06202ca18105c72e49d4148197c581d7f20c2bd38d227891d4771f58e8e"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.apache.tomcat.embed/tomcat-embed-el@9.0.68?type=jar",
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.apache.tomcat.embed/tomcat-embed-el@9.0.68?type=jar"
+ },
+ {
+ "group" : "org.hibernate.validator",
+ "name" : "hibernate-validator",
+ "version" : "6.2.5.Final",
+ "description" : "Hibernate's Jakarta Bean Validation reference implementation.",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "9bce6e6e05f6975c0d414a5e935c8107"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "a68959c06e5f8ff45faff469aa16f232c04af620"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "8d6d89c3204b30a01dc248352f43dba196140bf4adc5f437f63e2ad62a3d2144"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "7c29acb57e7ac2c46e47c4f4b716f5518bdfcba81bfad333764894c6b7be679fc8cff1c3598b9210bfd0da1b704e8b11f9f71e0ed7e57bf0eea4fd76b65458f8"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "db1a36d00f1e07ffbdb8bd2a24dfbb07e97703f6054ec86e8a2ba3e5848fa83955fd082c48436c4aab7cb864ec5f12c0"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "46a17e6d4fdda01a91bb5921001506169fd4bcaf8c0aeea5f959480eecad3b2b258b361968f12cf8ffbe454fcf5562fc"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "7523582fe81c98cff0fd8e2229eb1f8a703ef4e099d8af20931b095a21277b8f"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "b1478874a387b448085c6a1e0012ec5cf3aec808285d4ec6386cf15e1309d6d8fb0f21af9c4df8dc0c1bb50887ca4f90f85fa9c55250ea5541a1403f465cd073"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0",
+ "url" : "https://www.apache.org/licenses/LICENSE-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.hibernate.validator/hibernate-validator@6.2.5.Final?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "build-system",
+ "url" : "http://ci.hibernate.org/view/Validator/"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://hibernate.atlassian.net/projects/HV/summary"
+ },
+ {
+ "type" : "vcs",
+ "url" : "http://github.com/hibernate/hibernate-validator"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.hibernate.validator/hibernate-validator@6.2.5.Final?type=jar"
+ },
+ {
+ "publisher" : "Eclipse Foundation",
+ "group" : "jakarta.validation",
+ "name" : "jakarta.validation-api",
+ "version" : "2.0.2",
+ "description" : "Jakarta Bean Validation API",
+ "scope" : "required",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "77501d529c1928c9bac2500cc9f93fb0"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "5eacc6522521f7eacb081f95cee1e231648461e7"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "b42d42428f3d922c892a909fa043287d577c0c5b165ad9b7d568cebf87fc9ea4"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "3ca8556b80ca809b3a43fac31469702bbad62a00e63b11a304dad1e372d9f6c128357463a4c70c423055941c7e2e417f87a9474a204d189c8e4b62f42047c8eb"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "6ae3963fd6a5e83b068a8344b88f6bfbd26d29cee64193025bc5e98195678e49826463da27a7a1c15cd83b2149d57a94"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "55a570386718064b422f9ebc0c0c07f0b37259e44a14c9a16c20e945402339b1d01b7d6969ef40d6b5baf5bce3e1161d"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "1ff48fdabab86a398b25e491e6ba4fd9b62d597314202628a3cfedf723c17f21"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "c23bb0b43fb0c39d4c9d2cce0cd38334fa7c253130f0bda3007d9f7d2dd451c0896ff4265ee2cc35024fad282f9ccaa398c19874775d9cabbb786843fae155d7"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0",
+ "url" : "https://www.apache.org/licenses/LICENSE-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/jakarta.validation/jakarta.validation-api@2.0.2?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "issue-tracker",
+ "url" : "https://hibernate.atlassian.net/projects/BVAL/"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/eclipse-ee4j/beanvalidation-api"
+ },
+ {
+ "type" : "website",
+ "url" : "https://www.eclipse.org"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "https://dev.eclipse.org/mhonarc/lists/jakarta.ee-community/"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/jakarta.validation/jakarta.validation-api@2.0.2?type=jar"
+ },
+ {
+ "publisher" : "Spring IO",
+ "group" : "org.springframework",
+ "name" : "spring-oxm",
+ "version" : "5.3.23",
+ "description" : "Spring Object/XML Marshalling",
+ "scope" : "optional",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "8006267643d921a1c2fac0bc3e0a4719"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "3cc989887a4daacfcbb048a349dd3bf4f32f5e86"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "197a03081c757701a72bf01566e9584b717490076cb22992c1022413a19292fc"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "2481e50daa729dff87634b5cc979ad0bf137a72325cd73d95c73a794d7353b74c2979b6892673e5ce0d2cf91dcd0163885b1c3bfd6bb4f70db7ab6cca89d1609"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "38a615eed82eeb3c16e10b1ed5ab063fa41abca3b20df6a892dbd6d11e580b25ee710c186b1b7c99c7acae02c8c64018"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "2e9f0901ecd389ff67ae6c78b723af83448ba09e5b8602bc181fc7ee9d33fc321024e8a68e108dd272c39d4b29f13dd6"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "d033f16db6e7d8361378d4b038d0d14a66c352d466f90501090d28b7212823e9"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "d1f281cde48c574bdb0d06503cb544c17ee28954093e318a9d48311db4808c31c5be3ad8059fffa146b733db21c4014012de29738b2a7b9ca014099c3d7a5dfe"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.springframework/spring-oxm@5.3.23?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://spring.io/projects/spring-framework"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/spring-projects/spring-framework/issues"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/spring-projects/spring-framework"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.springframework/spring-oxm@5.3.23?type=jar"
+ },
+ {
+ "publisher" : "Spring IO",
+ "group" : "org.springframework",
+ "name" : "spring-beans",
+ "version" : "5.3.23",
+ "description" : "Spring Beans",
+ "scope" : "required",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "54a6169c8887dac4c3a5e2e3975d838c"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "3bdefbf6042ed742cbe16f27d2d14cca9096a606"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "99e2ec12fd419db7facf0424b2c601a4155eba85aac5f75050baa55e18eb6c80"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "b773acdc43771b5fbf912ff1f314bb4521629e4bf40f2932bffa2fbbb472fcdd87a37b96f0fce8f70164efef663c5fc3ca3319562ed20e73682ce56c347109c9"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "dae4f028caf81d6d44bf77b16812091ab19cc59b47e240b3c0b78b0c75613d14bd79d42ef5042c9caafe0bd714df0ef5"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "43f22ac3b86b0b101c31f0f1111a4054832695489a41013f8e4782c44357a08cbc400db599de2deec849eff2c38a7e42"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "67073082394768131bec67a3ae519f3187a0b7bc6d78f7adbe662cccd10cc68d"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "5f6d26e8739aee13f8921574f09c83a2661be9cf3865f77fc8fe0a9f016cbff747ec699fab5b75cb0191753a86720c73b37153baf458be22fb61900eec82896f"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.springframework/spring-beans@5.3.23?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://spring.io/projects/spring-framework"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/spring-projects/spring-framework/issues"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/spring-projects/spring-framework"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.springframework/spring-beans@5.3.23?type=jar"
+ },
+ {
+ "publisher" : "Spring IO",
+ "group" : "org.springframework",
+ "name" : "spring-core",
+ "version" : "5.3.23",
+ "description" : "Spring Core",
+ "scope" : "required",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "7586bf5525218f46206bc6fe07e84736"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "91407dc1106ea423c44150f3da1a0b4f8e25e5ca"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "dba23f6a6e38bf8ce58d29c31eb288da56c4d826507d3a584a27e0daac930a52"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "b9e1b0afdeb82939efa94d17778c85c8c45f991e5472b36cac2f5ea22dc7271cce14a097836077b93c3767ba6866a7fb4e6cb99fe738a6bd40dd53f2bb50d95c"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "f6741c27a09004849fba26172cbec314eef33c8222d15dc30f05b7a1b3f598d76b20e57496a6fe5119873aa52d314946"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "46ff93b433ebff839b4e1e2433cc364b6437acb04a5df4223c0c4cc249d1a1a5d0eedf59af80b26cb2e65063f7b386b9"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "5ae4290463d630ad46b4903a40aa4bf819d336b6045b83a6503198cee86c52fd"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "407d0fce0ab924d1bf99af06da361e830035d63d337b15b079fa85d21dc46bd1b9eadc87c34d72526e4ffeacbc7b400f177e0df22e9b442cbe26405a1e9bff1e"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.springframework/spring-core@5.3.23?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://spring.io/projects/spring-framework"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/spring-projects/spring-framework/issues"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/spring-projects/spring-framework"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.springframework/spring-core@5.3.23?type=jar"
+ },
+ {
+ "publisher" : "Spring IO",
+ "group" : "org.springframework",
+ "name" : "spring-jcl",
+ "version" : "5.3.23",
+ "description" : "Spring Commons Logging Bridge",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "8f3c2461ca9f5acbbc85db52efaf0ae9"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "3c7eb5fcca67b611065f73ff4325e398f8b051a3"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "df478eb13e5eece60695a2a5c50a34b1e89c62974d27c54f5fc005811b6817c1"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "61edabc9ec6241dbf43ca61d071996eb940b210cec1158d5b3b5f242a4cfbe2ae8ee74a83fc003605e8446c0f079b67eb5fd06dd43279df979da304273bfda33"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "72f7894a847e17fc05b6e1bb01b66b0c30d528cb952f0897d75e28551fddeec47c6fa5fcfb67fda141da21c32d6b9b81"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "9e67e917cf991a13870aac4770b0db3bad8ae37ef451570d72298b67a75805667106b6afaf4bfd55b8f616f7b7211fef"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "48d235d833f09debcf7adde9c53b46cc0c076ca3a4ac8e65eff600b38e095b2d"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "2778a840b785be1b6d2c48fd71adb2287f416ea60a0aae3cd250d8ff34f0818aeafe7bb8058eaac4fb4aa51360d8d0c88fa0eed0c7bd043a152d871177fab48c"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.springframework/spring-jcl@5.3.23?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://spring.io/projects/spring-framework"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/spring-projects/spring-framework/issues"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/spring-projects/spring-framework"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.springframework/spring-jcl@5.3.23?type=jar"
+ },
+ {
+ "publisher" : "FasterXML",
+ "group" : "com.fasterxml.jackson.datatype",
+ "name" : "jackson-datatype-jsr310",
+ "version" : "2.13.4",
+ "description" : "Add-on module to support JSR-310 (Java 8 Date & Time API) data types.",
+ "scope" : "optional",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "db49bcba378775ef4a9b134d38befb29"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "0e6d820112871f33cd94a1dcc54eef58874753b5"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "5ad75d210bacc17271925da28e1f393aaf8c83f6c92fbe5b2ed61954b84decf7"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "0507cfa28e5094ed0ece721e0445cab5b1b7b1f940f7fde85400fbbea593a12129aa334c664beb029d43900d641a04f7a6e043c1e40e4f61238a8ae8324bde7d"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "542e1e140da3dec96b8efe129ff0882575e080d2278bc9314da3fff6173d07a67ff248d018ee45307661ff8bb442ff02"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "e4190cf253ab6d935f8c22e5c761c27e3371d3bc5cb732fec389c8c7628d1a2aa575d324e1cdf6d2625da62a1e4f3047"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "6b171b779798da146ad27a33dd2487600e7d9d6091dc3a2ee7a858a48e9d3905"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "a165b2a8ac3f991867fd1a389cda95bbcd2d31e3b7aca35068b7cc81758e7679e6528714c5d14cba47d3e4b489b59dbc7db17791037472dcf8b0d0a43a6cb2e5"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/com.fasterxml.jackson.datatype/jackson-datatype-jsr310@2.13.4?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/FasterXML/jackson-modules-java8/issues"
+ },
+ {
+ "type" : "vcs",
+ "url" : "http://github.com/FasterXML/jackson-modules-java8"
+ },
+ {
+ "type" : "website",
+ "url" : "http://fasterxml.com/"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/com.fasterxml.jackson.datatype/jackson-datatype-jsr310@2.13.4?type=jar"
+ },
+ {
+ "publisher" : "FasterXML",
+ "group" : "com.fasterxml.jackson.core",
+ "name" : "jackson-annotations",
+ "version" : "2.13.4",
+ "description" : "Core annotations used for value types, used by Jackson data binding package.",
+ "scope" : "required",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "7e982dafcf25c24b365b5088eaf8a0a6"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "858c6cc78e1f08a885b1613e1d817c829df70a6e"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "ac5b27a634942391ca113850ee7db01df1499a240174021263501c05fc653b44"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "788a836b1631dabed472a0387de2ccdf86ab9091b04246d58e257780bb382e6ae068b6df862407c1256b0b83d1f9366813e54e98982f881c3d222a9f4a8e9ebb"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "7ae717dc399ccfe7c2a4831fae5c410d896e0a5afdff710003fa306ae2663a3c21ca000edfec9cdba30b0997c4c66757"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "fd2b435781f0870b572ce493a7c2e8cbc0cdfec80a24ae9a3d0874c27f84fb527a80afdc30a4f641a8f5389865603f4c"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "d6a55b712e499803461575b89eb8e2114307c88ba0e7fa56a65eab995b155f3d"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "295881324b5331e3e9530b26f719020f01f2ffd33ed96cdfad7983c3e4578e1eea0cce9d8ed622a1ec6b7b1b1e60af858b6813d08e4f31a38d1422d9c70a6a5f"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.13.4?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "vcs",
+ "url" : "http://github.com/FasterXML/jackson-annotations"
+ },
+ {
+ "type" : "website",
+ "url" : "http://fasterxml.com/"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.13.4?type=jar"
+ },
+ {
+ "publisher" : "FasterXML",
+ "group" : "com.fasterxml.jackson.core",
+ "name" : "jackson-core",
+ "version" : "2.13.4",
+ "description" : "Core Jackson processing abstractions (aka Streaming API), implementation for JSON",
+ "scope" : "required",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "e8f064827ddb8deb06e45d20988bcaa5"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "0cf934c681294b97ef6d80082faeefbe1edadf56"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "4c2e043200edd9ee7ba6fc378bd5c17784a5bf2388e152d208068b51fd0839cf"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "cf54bf5be3a5015a4b2c3ac986bf01f64517df224c8ba67197118d06f7fbe8ad64e39d002df326a72feb5aec8f0bc7f15338e90c4ba0668a167a0f03a81ce47f"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "5fd2723a9f5bae811e71b596180c56355497f87cdd6c9bdc74716224ea1d133b6ed4e5df20b6ec169b3745066019ad94"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "47217ac4e35397ed519916b26ec780ecbff69de0069afcbf9329a84f52b0e8fc4700e0c7b6bce7b9ddf585df7d944f22"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "2be4b3203664ef4249d40af8d3ea9516805a573515a8ece27c5e625c0969ed0f"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "75b4fa4464de9e5efbed460b940ef79b34fc7c477cb61540960f6e56039915a520176d6bf42077453cb049ec184d3b6d88006a4016a02b5de87da907d8c0791a"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/com.fasterxml.jackson.core/jackson-core@2.13.4?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "vcs",
+ "url" : "http://github.com/FasterXML/jackson-core"
+ },
+ {
+ "type" : "website",
+ "url" : "http://fasterxml.com/"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/com.fasterxml.jackson.core/jackson-core@2.13.4?type=jar"
+ },
+ {
+ "publisher" : "FasterXML",
+ "group" : "com.fasterxml.jackson.core",
+ "name" : "jackson-databind",
+ "version" : "2.13.4.2",
+ "description" : "General data-binding functionality for Jackson: works on core streaming API",
+ "scope" : "required",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "f26eab82fa1da09f8e8bc7e52fc82088"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "325c06bdfeb628cfb80ebaaf1a26cc1eb558a585"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "ba1a368137f9b92f48dd07f299ff7a782a69487b853ef5578215426fcde8f08b"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "89b5f58414d541d79f63ddedbcf4d5fafabc68d9bf9cad09f354c151e9685512e1433f2e22f6a7ffc8100c3c5fddbbb99fd64d7c6d4974b2915edb523f99ca16"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "87d3468179690f73868e8e2cad7b5107d4cea86ba7d6481ed288101f9d59b6b9ad27c7cfd1c466bdccc89effeb8291cd"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "16c34d4930500ab5749a3ff95ef5a0672c94b618dea5f88af37e61dbb19e366632f4d06c1a95d5132d451b329a4c32cb"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "222d42b2719c7ae81bc298570d4e37b745909a075e80cdc4beccd72be6a784c6"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "c2024c52d89b423a2049eba07badcb556b12ea953582002d47be7236d23cac7ca3cc4a099fd9f241dfeee8dbb8809a230721a2d7e6a63cdebebaf25f93bcdacd"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.13.4.2?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "vcs",
+ "url" : "http://github.com/FasterXML/jackson-databind"
+ },
+ {
+ "type" : "website",
+ "url" : "http://fasterxml.com/"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.13.4.2?type=jar"
+ },
+ {
+ "publisher" : "Pivotal Software, Inc.",
+ "group" : "org.springframework.boot",
+ "name" : "spring-boot-devtools",
+ "version" : "2.7.5",
+ "description" : "Spring Boot Developer Tools",
+ "scope" : "optional",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "92cb4f8657de6a5aa90387c1014a7a59"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "0e8510bace48b6a516515aa140cdfd758ad5a47c"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "8e99f26e90b28b486b2ee7d590ddbb923d65ae352bf7546dd55fbe2c49bb176b"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "b9a663f7ed817716bb12ec48fda81dacb2aec807af8cfef922d71754ed5b9068006bc9d081fdc92005c5f7c37b335eb515a8d53d2c8e3b894d32d5b90c68023b"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "63ec455e61459d5989906e0294b00bd0a24f61ca26037becc80fa368e0b9f93b687279860818b9813febbb1a7738218c"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "17922faadc8b7423db42aeb5bf5731eb3eb2a30511101b0be2c9b1b71d383a434585554eecac8d6160125392d185bb44"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "9e31d35181db0877440f7f2006859b5712d47d501075df4431dbd2e462acfdf7"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "90a82016e7c075931ef2df8468daff567ce7def9e217db41611fccaf2eac8d2cc878c0f0697f16c4bc61939e3a117956c20f8687e7f12a39bf80c65ff72c5422"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.springframework.boot/spring-boot-devtools@2.7.5?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://spring.io"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/spring-projects/spring-boot/issues"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/spring-projects/spring-boot"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.springframework.boot/spring-boot-devtools@2.7.5?type=jar"
+ },
+ {
+ "publisher" : "Pivotal Software, Inc.",
+ "group" : "org.springframework.boot",
+ "name" : "spring-boot",
+ "version" : "2.7.5",
+ "description" : "Spring Boot",
+ "scope" : "required",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "a7fed1122641f069bc7de65729fa2971"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "fd04e228e6e21b7ad13c10ae29afd31868d842e5"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "a5436b5886571a9ace64f3dca97793ec797be87fba097ff1a2217a47c8b8846a"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "e97751488d788c4913d5c2d54dce2a82d0d303d7f133d525194a83717976a4320c8ddc79579db7b054273c1abac409c514f4e2b73dd8ecf3bdcddb1117feca4a"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "30c1621b51493a080dc27ec01b736a40428a17cab6ad6584501bea8843111b955b470dea70217fb491846e7681407109"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "d7f3e9b5316f1d273a10501b566a0f0e5192487177550c5ff9c5fac362bc0f36fcb45ea6aa4ea658c25b360458a9220c"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "334501598c7fc146d906a608b10c1b9b61945bc3300533dafebc5cd90e31791f"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "0ff9bedcc47cf06df808fece18100b01751b84b40b7e1633344f31603f3e7877d325fc5e63b1b715c87453ff1f62d69a0607873b17cb3b40cb775b88254a9f34"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.springframework.boot/spring-boot@2.7.5?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://spring.io"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/spring-projects/spring-boot/issues"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/spring-projects/spring-boot"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.springframework.boot/spring-boot@2.7.5?type=jar"
+ },
+ {
+ "publisher" : "Pivotal Software, Inc.",
+ "group" : "org.springframework.boot",
+ "name" : "spring-boot-autoconfigure",
+ "version" : "2.7.5",
+ "description" : "Spring Boot AutoConfigure",
+ "scope" : "required",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "13ba5867ff68701c94a1a08e683e4553"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "96646e63a2296d0a3209383e81cdb8c87ab2f913"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "7c68a09bbf6da99e032d40fe812f3998b9ab2ff7f30d5289aa10c11a39a55da9"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "35196a132930558dbe83cb70efbc48e9c26c822820948472869d0207467b84a63487cf445a5cc0a63e50ae11348e363fdf3ef1af80574a47459bff22fcd6ff7e"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "4aeaecc8a16bc6db308561ccb51757a5ba12d4b8f8246e773c693b66ef13d24d28c0bc8ae34ecf7939ce3890efc71dbc"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "715920e1ecc8fd85ea9123401aff315b0b77a6bc52ceec4a7e2bb138b7d104622a85abf88ee1ec1f6cbb0102ba49caec"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "9932db8dff0deab38218c21764b14d957ab32cbc91f774b295e6851ef1ea9cfd"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "7db32d98ce6402422887956412e64b053d42cc39cba89b9ce8a1f8243ebca9c1d5ad8d2786167ed4ab674de78520505e0b989862514e091b65492c81449e4f19"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.springframework.boot/spring-boot-autoconfigure@2.7.5?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://spring.io"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/spring-projects/spring-boot/issues"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/spring-projects/spring-boot"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.springframework.boot/spring-boot-autoconfigure@2.7.5?type=jar"
+ },
+ {
+ "publisher" : "Ping Identity Corporation",
+ "group" : "com.unboundid",
+ "name" : "unboundid-ldapsdk",
+ "version" : "4.0.8",
+ "description" : "The UnboundID LDAP SDK for Java is a fast, comprehensive, and easy-to-use Java API for communicating with LDAP directory servers and performing related tasks like reading and writing LDIF, encoding and decoding data using base64 and ASN.1 BER, and performing secure communication. This package contains the Standard Edition of the LDAP SDK, which is a complete, general-purpose library for communicating with LDAPv3 directory servers.",
+ "scope" : "required",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "f712482a8ce0049d74f5edcd01916eb6"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "bf1a0d3790f8f7bd28f1172323c26fed2e3bbaa5"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "de2e896ab2989dee25f67fe2a3aaf789da0ae29e33aa86c9a359acb5bf9ca1fd"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "e47f737c9582b94506674abce257a61695a0a06f2e677e12c10c9c98686d11d25bf26517b6094c27ed80c919c873d6da2a648f544c3269dfd8def0242b36e527"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "a53ce2487ba7e6cf0c2c92fe18779d47ebcb167fc89fc38e4df53e12743016b1b8a8d5387ff76b89cab1dadcf7a3685d"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "97c494ff1d45100cd6a7878cc390985d6fbb0db15e4b6912522dbb51b7ccd4cfc57adf3e0eae89e472363833473eb582"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "287197b944ceb03e3ed394dc9c93f4fa8ac47c94c0483b5a78ba509ae9950eea"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "d00a64e950d5b5739ee4b6ad41539c4393dafaab45d6091527733553c9701159018f37a7e431108dc913f299c4e3315dc1584ebcd1e1af8d638674a62ffedf3c"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "name" : "GNU General Public License version 2 (GPLv2)",
+ "url" : "http://www.gnu.org/licenses/gpl-2.0.html"
+ }
+ },
+ {
+ "license" : {
+ "name" : "GNU Lesser General Public License version 2.1 (LGPLv2.1)",
+ "url" : "http://www.gnu.org/licenses/lgpl-2.1.html"
+ }
+ },
+ {
+ "license" : {
+ "name" : "UnboundID LDAP SDK Free Use License",
+ "url" : "https://docs.ldap.com/ldap-sdk/docs/LICENSE-UnboundID-LDAPSDK.txt"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/com.unboundid/unboundid-ldapsdk@4.0.8?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://github.com/pingidentity/ldapsdk"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/pingidentity/ldapsdk"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/com.unboundid/unboundid-ldapsdk@4.0.8?type=jar"
+ },
+ {
+ "publisher" : "SNMP4J.org",
+ "group" : "org.snmp4j",
+ "name" : "snmp4j",
+ "version" : "2.5.6",
+ "description" : "SNMP API for Java",
+ "scope" : "required",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "2ee1ee40672d90a5e097f3b9380aae7d"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "fc152ae9f1d9484eab5e9df925346560cb1ef864"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "ee9124afe56a9e398d1299691b637624de957ae95a3fc20f989f90fdfac3bc36"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "7979a81863796cf645d4fba3c7ddb032fb76ab6628996f491d4d87384931a6deb316a7898fe36b7e446566531ea24ade3efa347764d1d8954eafb03f70e882e9"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "1660196cf596b5d979f7d7faa63f0ff80208cddf8684574f9096f935f5f9be7f3c3b732016a0991e475b460e55d50d55"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "259d8f62a9b69f8df3edfe2fd2a3c7c372bdf12b1076848a9701d59fac869eb90963069c7428db91882f61c01ee3ee19"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "8692a1b280a5ca6c320c2e4f0e836263c5c37756d220c0233a94141e1a758948"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "717f4e9ff24425b39a4f837e22a339a9278d650b92db93dd4f2a30a1cd343b65380c7eddebe45629893c0183a081aeeeaf51885543e254d6d54fa9d7bae2f571"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.snmp4j/snmp4j@2.5.6?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "http://www.snmp4j.org"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.snmp4j/snmp4j@2.5.6?type=jar"
+ },
+ {
+ "group" : "org.openmuc",
+ "name" : "openiec61850",
+ "version" : "1.7.0",
+ "description" : "OpenIEC61850 is a library implementing the IEC 61850 MMS communication standard (client and server).",
+ "scope" : "required",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "15d0dd84fc73937f9f780c0ec986e6ae"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "a1802dc0cfa820d8c267836bc35689a44a49e55a"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "3a06bff402b3965d709cb89179107e1db9dbe26e694a2b8d879161c721eb54b1"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "1564b6fdb1d9107a17d657b270235240addafd63775e48902961053a80da6093232e00ef84809192dba9d24a00fca2a7e467faeccc0833c8fb52072fe9f8f733"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "d7fce503b21b69b53bb039535edba7448eb61eb5aa28900728c624142c0a322802706dc79644a2c9dd22c2b155df7018"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "6864eb02c972cfb425a44184baf85d389764739c44d6f3c3b342b86efe8b0967dbab0a127cff99216a94a07e6287826d"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "0beb4d62f94aa9611f37d0fd565614a2bb9e9793fc156351b09216e52afb74b9"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "1acbc6ff8f26c2f464621a216d5aeae2b26344e00848a812d5f79f02a0c0da5d4919d8fabb1c4e5f8d85bce7066bfb531bebffb487248dd45b8be09e135ed649"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.openmuc/openiec61850@1.7.0?type=jar",
+ "externalReferences" : [ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.openmuc/openiec61850@1.7.0?type=jar"
+ },
+ {
+ "publisher" : "QOS.ch",
+ "group" : "org.slf4j",
+ "name" : "slf4j-api",
+ "version" : "1.7.36",
+ "description" : "The slf4j API",
+ "scope" : "required",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "872da51f5de7f3923da4de871d57fd85"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "6c62681a2f655b49963a5983b8b0950a6120ae14"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "d3ef575e3e4979678dc01bf1dcce51021493b4d11fb7f1be8ad982877c16a1c0"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "f9b033fc019a44f98b16048da7e2b59edd4a6a527ba60e358f65ab88e0afae03a9340f1b3e8a543d49fa542290f499c5594259affa1ff3e6e7bf3b428d4c610b"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "2b14ad035877087157e379d3277dcdcd79e58d6bdb147c47d29e377d75ce53ad42cafbf22f5fb7827c7e946ff4876b9a"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "3bc3110dafb8d5be16a39f3b2671a466463cd99eb39610c0e4719a7bf2d928f2ea213c734887c6926a07c4cca7769e4b"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "ba2608179fcf46e2291a90b9cbb4aa30d718e481f59c350cc21c73b88d826881"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "14c4edcd19702ef607d78826839d8a6d3a39157df54b89a801d3d3cbbe1307131a77671b041c761122730fb1387888c5ec2e46bdd80e1cb07f8f144676441824"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "MIT",
+ "url" : "https://opensource.org/licenses/MIT"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.slf4j/slf4j-api@1.7.36?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "http://www.qos.ch"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/qos-ch/slf4j"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.slf4j/slf4j-api@1.7.36?type=jar"
+ },
+ {
+ "group" : "org.openmuc",
+ "name" : "jasn1-iec61850mod",
+ "version" : "1.10.0",
+ "description" : "jASN1 is a library used for encoding and decoding ASN.1 BER messages. This is a special modified version of the original jASN1 that encodes boolean true values as 0x01 instead of 0xff in order to be compatible with certain IEC 61850 devices",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "c4d1a9505d7c2361d4815caa489745d9"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "322990dd2bb1a67323fd15af435548b9b19ba3a9"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "d40bddb0a54907271a87cb9d52b6b7cf4d1830764b9a41c0a41dd4843f2e3b0c"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "4253bc2dec7d3c78c470ded13911032598132a2701c6620439247601cb51702281e0ec25577b3a726a4fcb93ab3d6f93f60393181b6c4cdc0299a95e9a766b15"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "58cb85be02ce144d6a4f7f211c36189386f0205b9fc07b1e31892228629428390f0271129538a2124e60c63248994148"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "583f5fb7af486390284f1cdcece6a42f1a15fa7fd2380e383c533c384ed3e8f18bbe8c929abda982203d5238c1c44d4d"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "b9783796a9457eed9e0c5834b5f92aa942cd15866ddeb1bad92d39bda4807497"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "c559f0de7b2549130294b784e4eb82efa3c3b6b46abddf225e8e831ef250294005953c2ac2d3fdb5514a504a7418fa11cbf18b2ac09d300433ec76299f99dd7b"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "MPL-2.0-no-copyleft-exception",
+ "url" : "https://www.mozilla.org/MPL/2.0/"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.openmuc/jasn1-iec61850mod@1.10.0?type=jar",
+ "externalReferences" : [ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.openmuc/jasn1-iec61850mod@1.10.0?type=jar"
+ },
+ {
+ "group" : "com.toedter",
+ "name" : "jcalendar",
+ "version" : "1.4",
+ "description" : "JCalendar is a Java date chooser bean for graphically picking a date. JCalendar is composed of several other Java beans, a JDayChooser, a JMonthChooser and a JYearChooser. All these beans have a locale property, provide several icons (Color 16x16, Color 32x32, Mono 16x16 and Mono 32x32) and their own locale property editor. So they can easily be used in GUI builders. Also part of the package is a JDateChooser, a bean composed of an IDateEditor (for direct date editing) and a button for opening a JCalendar for selecting the date.",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "0a0863943cf89741c7a0c2721027446d"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "180cf82b37b0c1324e7de33bd0114be7d86678cd"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "284fcfbb7938d5b85bb0f540c712fa042521a4c50f4a5d47da02ba19bff291eb"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "612a8bce9ad14474fdd163ab0f8e95e4b6f5318b405751c650143b4d18613de7e03355d022823a9971188fc90586b6c3a525730d58622816968a8fb97f7a6a26"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "17bb0d73a146352c95daee35656856d663d68bd25874edead4e1ebf3b206b7911501e0016941800d8b6e993cad342961"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "650e79914b21a5c5bbe4da322e7985ffa386da1736fc24f1ff891402389c646790aca2e983811869abd2a35339372444"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "0bb0129e2a8af16e05396a9821b315d3ceb1e056c442c3f17480be84f1d92899"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "27c418c1433b9c668a49214390b957b49839832f118e6633e753b391177f5c2be06b30fd833c22fcf1eb6d3bcb284f7442bb3f3460de0c5cf8bd5c6968f13c4e"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "name" : "GNU LESSER GENERAL PUBLIC LICENSE",
+ "url" : "http://www.gnu.org/licenses/lgpl.txt"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/com.toedter/jcalendar@1.4?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "vcs",
+ "url" : "http://www.toedter.com/en/jcalendar/"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/com.toedter/jcalendar@1.4?type=jar"
+ },
+ {
+ "group" : "io.cloudsoft.windows",
+ "name" : "winrm4j",
+ "version" : "0.12.3",
+ "description" : "A WinRM library for Java",
+ "scope" : "required",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "4949cdb744abfc3838e995bc2a69f4f0"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "a8b26482373f7ee758b89f29e8f48c1f7471dbe4"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "ac6ce779e904ee8bbe8e2bc14eb091b5f7e80295bbbfe6a7a5cff0654a70022e"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "87844303e7157ec566edd25a9ec17a2aa83b5488ddaf76af8a870f3b1e30c80b3f7074dfbe2413527bfcb40f2df9b1dea7d6f5b5fe6580ebb7163b30e7425b5c"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "29535bf0ad7661759bfd0594766ecb08d86197410291bb06d5bb66d36db611148492952608e4ea93dae4da897bc9adfe"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "6ac94f4edd502a12f4061de3c3dee1c10831ee42689e055c019fa78c54855a81425f5130ceb513b483127a8000717ac7"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "71d9ede5a988b729015f7bd279948dd9f47e24c1bf7948654bc1ef4b2541248d"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "26cf90162b63d8ef45ebad69dae26a43178ab2bc5566bb16f2b0701acc78daf02ac3ce541717629bd25b14e32671cb8baa85b4966ec177edd00d81baa5e0535e"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/io.cloudsoft.windows/winrm4j@0.12.3?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "vcs",
+ "url" : "http://github.com/cloudsoft/winrm4j"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/io.cloudsoft.windows/winrm4j@0.12.3?type=jar"
+ },
+ {
+ "group" : "io.cloudsoft.windows",
+ "name" : "winrm4j-client",
+ "version" : "0.12.3",
+ "description" : "A WinRM library for Java",
+ "scope" : "required",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "38fe4783e6100373582d0f08b128d831"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "376f872486db6cd3c9e933efbbe69316906e0fd4"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "7b8040d9f14afd1375ee4d13086ed8c73f1a031c95bf0a8322b2675d3d25fb0e"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "13a20f1a882a1b8c2d574db9a8466c079dcb0e7c64dc38f02153ee4b1a1be271d5193002c4395bb3ee3f6efd6aa13ed22cc8490298efad2ceb57e27d56acfeac"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "6fd5f91317c5c38e105ee9372a74758e6b4ae06cf6f2b95abcc2176a01bebbe29b48befa8a2c7724a9b6dba99432fed7"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "a900e0504f0ad605e93745740ceb47f7958ab71a7d0b1d0d1bbf5ba0accae6b57990823c8ae9738fc049667c3ff3d9c4"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "c7617a340be7c090eead8d841979ca94b928373694045ac4e7dfb74a4e307786"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "34c41a322285255f85d30dcc5d33c41dc07f0d202f349352866f2ad699ea3e54ef45fdaf1237bbb1cb32525269073f0ace4aba2eedda91a9825aa91a62e45d5a"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/io.cloudsoft.windows/winrm4j-client@0.12.3?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "vcs",
+ "url" : "http://github.com/cloudsoft/winrm4j"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/io.cloudsoft.windows/winrm4j-client@0.12.3?type=jar"
+ },
+ {
+ "publisher" : "The Apache Software Foundation",
+ "group" : "org.apache.cxf",
+ "name" : "cxf-rt-transports-http",
+ "version" : "3.3.9",
+ "description" : "Apache CXF Runtime HTTP Transport",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "6642a02ae751bed1554e50b216c14b53"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "ed3cd6f670641d352dea21405649d03f587c9b43"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "01ac41fa9e9db5f26323df9f1fb58eef712355cfab789b27b2017a8713d2f45e"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "aeca9e8fddbc77a25a9dfb684fa25f5cc8549ba5ec8b8c3530058739658b62a8c7d9a698d54eeed90e6129360501ffc0282bf511c16054f6856d35ef49430f6c"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "94ad43cd7f3cb6bbc5667b02f512ef7a2e0f703651e4aca285792348f23e4d6f69ab8486ef24a56aa75d0a111aefa9dc"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "be7122b4feb2db23ef1bf87f669bdf3d3e9ee8b2054f17c9efcab95194b0d8f402097fadb716b16f30b4faf5e0e275bd"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "45cc96119f01dbacfa64b73c8fb3ea18aac8cd9cb91303357190bdecb9f253f8"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "92ff0ad63a44c9f4e37f2baeb31c401293e5b6c7655827a685e6b04cd11f6a7729150849f7b91bbf981451d208a72e0afcb947b5fcf6e1f6a591ac23f091cc68"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.apache.cxf/cxf-rt-transports-http@3.3.9?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://www.apache.org/"
+ },
+ {
+ "type" : "build-system",
+ "url" : "https://builds.apache.org/view/A-D/view/CXF/"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://repository.apache.org/service/local/staging/deploy/maven2"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://issues.apache.org/jira/browse/CXF"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "https://mail-archives.apache.org/mod_mbox/cxf-users"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://gitbox.apache.org/repos/asf?p=cxf.git;a=summary"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.apache.cxf/cxf-rt-transports-http@3.3.9?type=jar"
+ },
+ {
+ "publisher" : "The Apache Software Foundation",
+ "group" : "org.apache.cxf",
+ "name" : "cxf-core",
+ "version" : "3.3.9",
+ "description" : "Apache CXF Core",
+ "scope" : "required",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "841dd1708759bff970318618cd027fc8"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "fef0312fc53fdcc0d90fa5ba454bb254e4e49fd4"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "05e57d0f499cf6b3e5c8ec53276722ee976db49123b86a85a4659f2ba621b9b0"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "7dd3fd770b4d800860108e86d7336113c120d1664b1974bba640c135d164414872d4ce9915163760167060c5d7bf0a156752bff94255482116448c00586d45c9"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "e375af54a6931c63d036648dac6581dc2f45e80150446bf0e5eb78b87e575394ed8f129442ce536b9cd51c304a85c91a"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "5bba3d675604c5432e90eafaa3ab65028ff2abe9206af1dde9a172bbbd417e0a7f64debc16e62e9b870a4dc03db1b3c6"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "4a2c31a93e64c4b2c145e3139db17a62c514811a4fbd962404459a70f6615e12"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "2a2f42144f3e56e0c5dcc93ed351aded21c1478340a295dd4989c1a24632766057663206513785eb8a02253cc53e746b7ded646ec4c925465ce531a912ee082f"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.apache.cxf/cxf-core@3.3.9?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://www.apache.org/"
+ },
+ {
+ "type" : "build-system",
+ "url" : "https://builds.apache.org/view/A-D/view/CXF/"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://repository.apache.org/service/local/staging/deploy/maven2"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://issues.apache.org/jira/browse/CXF"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "https://mail-archives.apache.org/mod_mbox/cxf-users"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://gitbox.apache.org/repos/asf?p=cxf.git;a=summary"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.apache.cxf/cxf-core@3.3.9?type=jar"
+ },
+ {
+ "publisher" : "The Apache Software Foundation",
+ "group" : "org.apache.ws.xmlschema",
+ "name" : "xmlschema-core",
+ "version" : "2.2.5",
+ "description" : "Commons XMLSchema is a light weight schema object model that can be used to manipulate or generate XML schema.",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "8cbc8d8b10fb67051a17eaf94bee5a9d"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "789b4ad32ad7ff021c7731fa43d324c0ce8105f2"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "803194d9877110ea2ca795b0b16b13c89851f631d5c601ab5ef9d8ec7e1b0ea6"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "1eb699b43dc25df52298859fa603445dbd3fb2892694c5c931207cfb5f09a075440912a556eae130f19e1008b0ff53e052a8dcf7df52ad0101b402bbfd0d5b62"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "37d7c8931976082cb256630a8a795042a3b300c996c51aa65eb63fc9173c2c98ff7936249a97590a39234512bbd6e594"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "7ba43a0e53ba5feb95137487647b1ce642cf01a38a785957d82f8be7fcd30b222c8a637fe6fc3762f2d53d98de89115a"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "b9ddf38e1e6c6f14b2db5da0190a955e1a33ee223dcf8ceba1361805faf29161"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "c5adac90dfd591d8fca6b43ca7e20e0acda8c8396e3f162a0ff0c06ccb261d82853b227b03921482da8795d9af971bf9cbb284892bb0a466cff4b57ef8b1af89"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.apache.ws.xmlschema/xmlschema-core@2.2.5?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://www.apache.org/"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://issues.apache.org/jira/browse/XMLSCHEMA"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "https://mail-archives.apache.org/mod_mbox/ws-dev/"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://gitbox.apache.org/repos/asf?p=ws-xmlschema.git;a=summary"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://repository.apache.org/service/local/staging/deploy/maven2"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.apache.ws.xmlschema/xmlschema-core@2.2.5?type=jar"
+ },
+ {
+ "publisher" : "GlassFish Community",
+ "group" : "javax.annotation",
+ "name" : "javax.annotation-api",
+ "version" : "1.3.2",
+ "description" : "Common Annotations for the JavaTM Platform API",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "2ab1973eefffaa2aeec47d50b9e40b9d"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "934c04d3cfef185a8008e7bf34331b79730a9d43"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "e04ba5195bcd555dc95650f7cc614d151e4bcd52d29a10b8aa2197f3ab89ab9b"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "679cf44c3b9d635b43ed122a555d570292c3f0937c33871c40438a1a53e2058c80578694ec9466eac9e280e19bfb7a95b261594cc4c1161c85dc97df6235e553"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "fc0058495e54efb6e05a34e3ff422e7c8347bcc77d6d9b87e9253424968dee6ef6a215c318d7e54f8705276be81f0682"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "ed6464b715de6ced0d9981a3f28140824946a4b7a02ffaff6116c833bb36e8f77a6282ce63c0d82cfe841d4fd6916891"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "ecfc9bef24ae28cf94c6775ecf6e2086d90a25d8d5476a4f6bb24001601b6cd0"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "f2b333527faedf504f60aa70a3d491972fa76f7e61e6351027f74613f41001157656824fe312b6e1df6dc4979704fe2a745b618d5368a97fe0bf8749739de9e2"
+ }
+ ],
+ "licenses" : [ ],
+ "purl" : "pkg:maven/javax.annotation/javax.annotation-api@1.3.2?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://javaee.github.io/glassfish"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/javaee/javax.annotation/issues"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/javaee/javax.annotation"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://maven.java.net/service/local/staging/deploy/maven2/"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/javax.annotation/javax.annotation-api@1.3.2?type=jar"
+ },
+ {
+ "publisher" : "Oracle",
+ "group" : "javax.xml.ws",
+ "name" : "jaxws-api",
+ "version" : "2.3.1",
+ "description" : "JAX-WS (JSR 224) API",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "5a6f94e95cc2054bc840cc2f2fedc5d8"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "15e46dba25b1f767a3f517721badf6cce8dbb13d"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "a447f84f95658ea68b347acffe156f7700c62a37ede15d81e5298fb8e5fe6dcf"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "f6795f2e1e72902c29eb976313dbb423d46d22f665846d20ad2ac8f486d32367566e0d81d2ba4614f65c80298b8bdc3fa37de81d7b6c4341a1e228dc8c2b09a1"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "651a5c020788ddb9aa81683dfad98117b00bf9f46c003f502849ab3a8c99453ae9a1f1f39617a951ea8fc39e5d01aadc"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "ee746963571fafb07c2ecb1752a84a6f749c2257e0ac70402596adf674079b88d7d41e0ebdee9981cfd38dc8cf940474"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "9888bb90770c67ee108a02b3a608b8851a55b83a5ee196b6c16cc4365189ec73"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "3612fb28e8b88a50f7bdcbf5d3bba4702484f2d2446a6699587d91fdfbae7314b5b60d1325fb183739b589092a9772def9b6400e394644782c07d8e89415668f"
+ }
+ ],
+ "licenses" : [ ],
+ "purl" : "pkg:maven/javax.xml.ws/jaxws-api@2.3.1?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "http://www.oracle.com"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/javaee/jax-ws-spec/issues"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "https://javaee.groups.io/g/javaee-spec/topics"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/javaee/jax-ws-spec"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://maven.java.net/service/local/staging/deploy/maven2/"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/javax.xml.ws/jaxws-api@2.3.1?type=jar"
+ },
+ {
+ "publisher" : "Oracle",
+ "group" : "javax.xml.soap",
+ "name" : "javax.xml.soap-api",
+ "version" : "1.4.0",
+ "description" : "SAAJ API",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "fb8bbe2cdda8ff7bd945fcb9f0f6b61c"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "667ef2eee594ca7e05a1cbe0b37a428f7b57778f"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "141374e33be99768611a2d42b9d33571a0c5b9763beca9c2dc90900d8cc8f767"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "359293d81529080015f79663ed8adb4a0245de99aa8ab427f57cceaa222622ada80763728fd9473eacd0e70bd24d1a5e8737ded0ade7c510b73ecd30da284109"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "46ffb2747c3c2c7b0209d049dec81534b82c44399a133b1dcae2859a5fe1e3189691e216ab0820101f177eb49140e095"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "6c2523c8e31520b443c72227666556300cdd17b76b618995d317a422de65cf8583fb96c382d06cfa1754016135e0a158"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "b2f0df2273c7bdec54edb2033e8d5e424013ace46ccfff5e63314365d8ce873e"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "3f86e51df021964f66c3b4c5a6f73c2b4e799f341b292feaa9c77f3c34ae5599466af31945aa4f537c072a214a8bcc2a14e8693f8fce94ad44391bcb97c746a7"
+ }
+ ],
+ "licenses" : [ ],
+ "purl" : "pkg:maven/javax.xml.soap/javax.xml.soap-api@1.4.0?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "http://www.oracle.com"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/javaee/javax.xml.soap/issues"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "https://javaee.groups.io/g/javaee-spec/topics"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/javaee/javax.xml.soap"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://maven.java.net/service/local/staging/deploy/maven2/"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/javax.xml.soap/javax.xml.soap-api@1.4.0?type=jar"
+ },
+ {
+ "publisher" : "Oracle",
+ "group" : "com.sun.activation",
+ "name" : "javax.activation",
+ "version" : "1.2.0",
+ "description" : "${project.name}",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "be7c430df50b330cffc4848a3abedbfb"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "bf744c1e2776ed1de3c55c8dac1057ec331ef744"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "993302b16cd7056f21e779cc577d175a810bb4900ef73cd8fbf2b50f928ba9ce"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "b4cbdd8fd1703e4b2e1e691db78fbcf2232d836f740d1821c4c191a14f9472508e27a40d06e4b6b153964af68032959c22945ba169a0ca4018b7748162f420a6"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "7e64f03db2d4f9bacde713ca8aadfcf55e327d92b3cfa54b8cb2f2ffa0cc478d3c7e16f23230ae8266f0dace035142d4"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "b41aa6abfccc16e1f21760b4b3dbec7422f917fcd0c072d109c3024b1c40793820820940dfe07bfa50e00b47c3a0d504"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "ab6207acdd72036b3a5c6e647776b7466e089212602962d87eeb2ac1845508a1"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "e9fea84495f286e0f0ec1de6d002cae9e4676b0d2a9ac4706d155ac6d5ed515a76f3fcf0b8c22161f3cb456e048cce9171e3e42edc83888776173c8e2004a035"
+ }
+ ],
+ "licenses" : [ ],
+ "purl" : "pkg:maven/com.sun.activation/javax.activation@1.2.0?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "http://www.oracle.com"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/javaee/activation/issues"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/javaee/activation"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://maven.java.net/service/local/staging/deploy/maven2/"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/com.sun.activation/javax.activation@1.2.0?type=jar"
+ },
+ {
+ "publisher" : "The Apache Software Foundation",
+ "group" : "org.apache.geronimo.specs",
+ "name" : "geronimo-ws-metadata_2.0_spec",
+ "version" : "1.1.3",
+ "description" : "Web Services Metadata 2.0 API",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "7b87d27ff907a4ed84fe8a0a209b7257"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "5b6aa041a37145d6deedd92c66b3a266d4a601a1"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "905806340528726b2d1a53a82024442ab31b95a6f730750f0720ded806f888a5"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "047790eb209aacb4ba1f1976eea0176050d74befe30c34fd174a4a9ac9e0604a500bf5af26b25f4ecc11d644e64eed4134a5ae2c1969852522cc674920bd7a41"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "1c6e9e8189c4fb00bce6992c483b57196f6cea27f3a3a2c79fb5c867a39ef23659f6ea998fe50355a7e3d886582f3a52"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "a1c4fba0538447d9461f57844ac2afbf97c75539526d37ea3beb840fe2ce2a47731e610116cdf3484a595ad906a57176"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "4a849268bcd9845ce1fe60c795c65d50633f5047569e4c4a53bd60b783ca62a4"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "d8cdadaf35428b85020f03c01a5e102801615f3a1f4d6b968951565dbafd720e7f05b7089a79d7a293c8c5d000a9d03251a0d50dc2ca51349df5713147c3aa41"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.apache.geronimo.specs/geronimo-ws-metadata_2.0_spec@1.1.3?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "vcs",
+ "url" : "http://svn.apache.org/viewcvs.cgi/geronimo/specs/tags/geronimo-ws-metadata_2.0_spec-1.1.3"
+ },
+ {
+ "type" : "website",
+ "url" : "http://www.apache.org"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://issues.apache.org/jira/browse/GERONIMO"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "http://mail-archives.apache.org/mod_mbox/geronimo-user"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://repository.apache.org/service/local/staging/deploy/maven2"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.apache.geronimo.specs/geronimo-ws-metadata_2.0_spec@1.1.3?type=jar"
+ },
+ {
+ "publisher" : "Oracle Corporation",
+ "group" : "com.sun.xml.messaging.saaj",
+ "name" : "saaj-impl",
+ "version" : "1.5.3",
+ "description" : "Implementation of Jakarta SOAP with Attachments Specification",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "9c3bd20b7350f99f18f8c38fbed90199"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "1cd4aa51ea7a8987fe930083e3cd05e2ac72505b"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "21d451aa7dbe1254388ecc4e5ea71aabbc519c7d7344c9d93e9f79954f38b32b"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "de46ee6d6e294954df3cac45dd7738490592478a240ce335e4f12a28fbac97c3728cf9b06bd87a1c295fe44a03fecce0ec50fb1a438a1180f285c10e80726fd2"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "3efe236526171d9797f447525f7e814c08870eaf80df9434e58b6058c8b3b3eec654a165270e282e83364d280865f9bf"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "af04a963878dc17c290f126cfc11bc177dd2814df41790acb22cad81ca7c31f1a894862883127989a94922c7fecc3b7d"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "d1cac8bb371bd03a8980c79a3103fe569e51661ed97c4963381cb8dd0615f42c"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "d746b9d7e892a2a49624c066610096858e0e8d93bc6613f470a2c77ccf2ffd4bd4fa131c33cc5ab7e765940e66a2dd201379f2199352a10381b129e585dde3e9"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "BSD-3-Clause"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/com.sun.xml.messaging.saaj/saaj-impl@1.5.3?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "http://www.oracle.com/"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/eclipse-ee4j/metro-saaj/issues"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "https://www.eclipse.org/lists/metro-dev"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/eclipse-ee4j/metro-saaj"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/com.sun.xml.messaging.saaj/saaj-impl@1.5.3?type=jar"
+ },
+ {
+ "publisher" : "Eclipse Foundation",
+ "group" : "jakarta.xml.soap",
+ "name" : "jakarta.xml.soap-api",
+ "version" : "1.4.2",
+ "description" : "Provides the API for creating and building SOAP messages.",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "d19eb8a4a5401296985db733868425e0"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "4f71fa8ca30be4d04ba658339df3c927fa21209a"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "0b2e9db574869c09b18e7fe87482be2e4e14b3f3cc8207646595806eede77706"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "640b1ad955bf9283d5c557de7a566bc4d100c8f6580e97ed4bcf24abe104225db6246fff18fa13932b3c45c877c6d560f7778eb115e6bd339768766f089901ce"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "568580a4936eca8c4afa1e823c72579b010f77d7d7af613b92483dbb00f0d380f508057281e3020c68455f82d5c8997e"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "6c26b47985d5e8623c0b9cd38bbd1828c84004fe82237528e779069ecddb2fed23a8b93a009c641f6fb640e1d45a1b51"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "81ca7380850de707ccc791655de78e46b73fac45c6277fc283925c99f894de57"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "08e78282a1aa093c3673d3417d593b6fd962db3ea10457ee4f19d2f242ea5876b68dbe30b471d4b2e20f3d90c77ef71430975e52ae879f1f91040aa87b5478c4"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "BSD-3-Clause"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/jakarta.xml.soap/jakarta.xml.soap-api@1.4.2?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/eclipse-ee4j/saaj-api/issues"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "https://dev.eclipse.org/mhonarc/lists/jaxws-dev"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/eclipse-ee4j/saaj-api"
+ },
+ {
+ "type" : "website",
+ "url" : "https://www.eclipse.org"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/jakarta.xml.soap/jakarta.xml.soap-api@1.4.2?type=jar"
+ },
+ {
+ "publisher" : "Eclipse Foundation",
+ "group" : "org.jvnet.staxex",
+ "name" : "stax-ex",
+ "version" : "1.8.3",
+ "description" : "Extensions to JSR-173 StAX API.",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "f6d943e74064cc1e7986236699d6cd04"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "4d69b68ee007aa15238cd4477392068b32747df3"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "bee08da10bbc481418a1af70b9e9a80321b745bfb4dbdebbe98c1aa17c45caf8"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "fb78de98748cfc5bb8326f324c7ac408552a19cec55278fef7900f31595215b85cb3ca31910714bd33eab695557ea550e154acf5919c0d56c7ea91755ae2c3b0"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "a3b732402d31cc5b742491cb86ae551b237ef82e58ff287b34885578a969466bc0b36618325814d54a9669e2e0467cbc"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "ef34e014b2db5eb7948d175eedb1092f31099fcd0202cd332aef3591850d212d393c61ebeba0f29726ce20522ab167cb"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "e6c04ea88f87f34f9acf3c204f355f83ad754f5aa06a8f86a502b44f29549166"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "bb1330140ff310519c2a7e37ebaca8a3c29ebeb8de3e6b29edb591f4d8dc8177d350fccde6bc3d5dea5793de1aac6054ca6b132f4d4bac745e17176debc2ea35"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "BSD-3-Clause"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.jvnet.staxex/stax-ex@1.8.3?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/eclipse-ee4j/jaxb-stax-ex/issues"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "https://dev.eclipse.org/mhonarc/lists/jaxb-impl-dev"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/eclipse-ee4j/jaxb-stax-ex"
+ },
+ {
+ "type" : "website",
+ "url" : "https://www.eclipse.org"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.jvnet.staxex/stax-ex@1.8.3?type=jar"
+ },
+ {
+ "publisher" : "JacORB",
+ "group" : "org.jacorb",
+ "name" : "jacorb-omgapi",
+ "version" : "3.9",
+ "description" : "JacORB OMG API Stubs",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "6dc650cf37bcf15dcc6a2f6e745aa9bf"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "0ff5bf7ba180c5534191ac9a02e7d6937748bf36"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "247f565dfd4b0c1ee54b1e0a6288be84fc66ae961c34715171ca2867c6857447"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "a8b17c3b3f7150b760f8375ba54ef2c826fa0e5cf96a7f84d7f409496df31628f27cbb6449a8114b9b5485bb950319c64d6bcb52f7db8862bb101890a55c0328"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "86a076941587a2a23d49fb4af639380132895160c58e9d48a6deacea9b761d13f4130ce65ffd6a4df91a75f046013f8a"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "6a0739165a89f887fc1d9436816cc72bc27fb6491525497235fc649e45853d5f8aa63d2bef1be8f14b06d48a1b736915"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "a416b222bdd96907bea007389d9bac7ac29497b375ab96bfbd27bc48319cb5a2"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "dcd9a56dfb4cd9d062253a41dcef80f59e037afee155d75bae2ffb29a4037dd70df00f75bfb0af182823e517316015f4354a2a875bf10a5ff11ac7c36905c63e"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "name" : "GNU Lesser General Public License",
+ "url" : "https://www.gnu.org/licenses/old-licenses/lgpl-2.1.html"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.jacorb/jacorb-omgapi@3.9?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "http://www.jacorb.org"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "http://www.jacorb.org/cgi-bin/bugzilla/index.cgi"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/JacORB/JacORB"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.jacorb/jacorb-omgapi@3.9?type=jar"
+ },
+ {
+ "publisher" : "Apache Software Foundation",
+ "group" : "org.apache.geronimo.specs",
+ "name" : "geronimo-jta_1.1_spec",
+ "version" : "1.1.1",
+ "description" : "Provides open-source implementations of Sun specifications.",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "4aa8d50456bcec0bf6f032ceb182ad64"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "aabab3165b8ea936b9360abbf448459c0d04a5a4"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "3a0c3c1bbc2efe8383969574922791959670ef547d6c897496915617025c3023"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "ee10f942eda7199a522aa0838ad69c9b58117580bd60185b4c01bfc43913fd485154b1b3d437b0a361d1bed8a18974c84f5bdf1cb27ed9bc18fe33fba4d8f1f8"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "56f9ad1bcf3f0c3d9ed9c6c372274a47e046ad88335c842f2959c95646eebc14d0ca68562d86a53b8ed6fd56613297bc"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "64b62186232c70ed56c386cfe2eefb45345c8a39f60ccae6b41c0b1664731b77a047a02b7c888ec1ff68cb2a2c2b8a90"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "a8093bd9834f683448f2f01ea33383ad27572ff09f9c29bcef1ecf43d1d33c7c"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "aeb00105ed515e0127fc391fa86b3e805819047b6aa42963c0b6d1bbf23216c26efd7152655d18d428b3965a2bdd6695aaca8d261030841b661df539f96f9d7c"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.apache.geronimo.specs/geronimo-jta_1.1_spec@1.1.1?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "http://www.apache.org"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "http://issues.apache.org/jira/browse/GERONIMO"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "http://mail-archives.apache.org/mod_mbox/geronimo-user"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.apache.geronimo.specs/geronimo-jta_1.1_spec@1.1.1?type=jar"
+ },
+ {
+ "publisher" : "JBoss by Red Hat",
+ "group" : "org.jboss.spec.javax.rmi",
+ "name" : "jboss-rmi-api_1.0_spec",
+ "version" : "1.0.6.Final",
+ "description" : "The javax.rmi and javax.rmi.CORBA classes",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "c7ae7add11a83cbfee9950ab41d1b06b"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "91c0dd9795b90a040bbd3eb591ce4f80bf084caf"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "07615653320a010a648d164e77751daddcfea5602148aa4da2f052bc6af0689e"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "7c4d42e4667ac945cb4a12465cf33b4a546e901ed9dc887113521226de3cdcece383539efb36b2a354911e558a998ef3c615af23e07db809e3b9a601f07f9160"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "1db721c31ee3823afa8cba00836fe90fd101bf4eb59aefc62168de914494b077b337d4b77ddc73bba5e77d7411e8083f"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "b7225ba4cc04a86fa6a8cb69a354334087c281849ed911d9d2cd47b6f9a2f6a0be9ac2a1658caf79e0d9c5bd434e48bc"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "c882e0e97fbd3cbe6a51442f01475d1bcb05abdbb144f26e7d119daa0c586400"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "c6faa07271a730b8b93480c389202c9e25c58ba9eb0c3da85bb26ca724d7ecd8feccdce5f91f20fba535034bf5a6caf1559cfa3b4858b3af4ecbd1425e0f9579"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "name" : "lgpl",
+ "url" : "http://repository.jboss.org/licenses/lgpl-2.1.txt"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.jboss.spec.javax.rmi/jboss-rmi-api_1.0_spec@1.0.6.Final?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/jboss/jboss-rmi-api_spec"
+ },
+ {
+ "type" : "website",
+ "url" : "http://www.jboss.org"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://issues.jboss.org/"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "http://lists.jboss.org/pipermail/jboss-user/"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.jboss.spec.javax.rmi/jboss-rmi-api_1.0_spec@1.0.6.Final?type=jar"
+ },
+ {
+ "publisher" : "The Apache Software Foundation",
+ "group" : "org.apache.cxf",
+ "name" : "cxf-rt-transports-http-hc",
+ "version" : "3.3.9",
+ "description" : "Apache CXF Runtime HTTP Async Transport",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "6d2645198151fd3fd9e1a3ac2c60303b"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "bf4f81e88bd861a334563fc634af71a340226da4"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "3ec3267d52174c44e37d35fb70730a7ab81d5e087c9736be0ab782ce2b39e3ce"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "e1e08d0c1330c205726515442e635fab3a67c0326e82842687769ce417bf4a483d635a60a569bcad4b5152a72023e79f5d8fce8563ea89709b6b90c8dbf532f0"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "0f7ebf48ff937ca089fa570b9d92885810f6d81e08a596758c4ee576b551a221f4542adae51782f215d853504bcf1674"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "4c205d52ce81ca8d68b1245dc901a12d53abef87aaeb8357d629bce2e8b6c6c4f36efa3efecc7d94142c12e68a309dd4"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "047037786a3ff9ffe32041ec7bbb800537a25a11d53a72c4e010cfc214c6d6c5"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "b43dec026bc5770931d13142051068ed554286dcbb09e40f7cf31f95177eeb34d8987aeaa13ddd626a7f3959e7f8e421955d3629b4a12dff4e1932fa6e5279dd"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.apache.cxf/cxf-rt-transports-http-hc@3.3.9?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://www.apache.org/"
+ },
+ {
+ "type" : "build-system",
+ "url" : "https://builds.apache.org/view/A-D/view/CXF/"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://repository.apache.org/service/local/staging/deploy/maven2"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://issues.apache.org/jira/browse/CXF"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "https://mail-archives.apache.org/mod_mbox/cxf-users"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://gitbox.apache.org/repos/asf?p=cxf.git;a=summary"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.apache.cxf/cxf-rt-transports-http-hc@3.3.9?type=jar"
+ },
+ {
+ "publisher" : "QOS.ch",
+ "group" : "org.slf4j",
+ "name" : "jcl-over-slf4j",
+ "version" : "1.7.36",
+ "description" : "JCL 1.2 implemented over SLF4J",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "8065610cde33ed9fd5d34367912c1938"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "d877e195a05aca4a2f1ad2ff14bfec1393af4b5e"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "ab57ca8fd223772c17365d121f59e94ecbf0ae59d08c03a3cb5b81071c019195"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "ac231ab44521bb5478742af13624db5c14aea809c3a2c13b989fba30186ba6db840f2d1b4aea54f9c1f779547b975fd042dd353f54025592774d40192bd71148"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "618704032ab3f8f87091ac797e2c9319a4b7f36a53e060695d56173b67ce9bc9e16c74cba228e758ac90e279df75428a"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "95a189173932d8080d91de8b71b9d1bca49a330db7cad9c41d51fe9514a9f6299b24e31441f06681b3dcc188807dcf40"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "7aef3380fdeae9b7a4adfa6ad69c2c92f246fcdbd4fcd3d1056ee846d8ef92fb"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "da7d1b8e5a150300e1051dda5755df64275e5822256ef624fd8a37c582cc2774aadce97f8732de52e54b1c74e28ba601d3bfc3482abb4a24f7e9f779e7e8dd64"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.slf4j/jcl-over-slf4j@1.7.36?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "http://www.qos.ch"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/qos-ch/slf4j"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.slf4j/jcl-over-slf4j@1.7.36?type=jar"
+ },
+ {
+ "publisher" : "The Apache Software Foundation",
+ "group" : "org.apache.cxf",
+ "name" : "cxf-rt-frontend-jaxws",
+ "version" : "3.3.9",
+ "description" : "Apache CXF Runtime JAX-WS Frontend",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "7a8dd340c7784d40bec22a5556c8af1c"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "f742a8e6d946f6821c5f63cc917634fd54a96ceb"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "fb019ddd46b3a9189a52800bd7ae14bed25d1033888fc67b5065353820f44c44"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "59c5adfef7cb1ee7bc2e6124f5d85dbac4732d4f2473fd16df78bd5080041648283e001792c1269f833986740e85800b770700db1726ece71283a3b44fd76722"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "00a72d00724205ce8abf5c3708ca32a1c4b5270c524be95b044b182dd9d738de7fded095d0aabb2b8f03f3d725884c10"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "d1739943210c78f2d093965a9104a9a4e2eba86e5c75d79d6a22dee5611a0ba96eeb3ae8caab1aa1ce734f42fe8e8505"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "be4c116f6a2c5866d667b7a981d4a3e2c861867cebe575101e22ca88a1a5de89"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "dc4d5660c14aa22148667ed31ce5adfc93a5584b3fbac4841909ac792cad0b3641a04ca67cb459e84fa377ecd88b12832b3e9482f8fe383089eb13c9d6fa72f4"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.apache.cxf/cxf-rt-frontend-jaxws@3.3.9?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://www.apache.org/"
+ },
+ {
+ "type" : "build-system",
+ "url" : "https://builds.apache.org/view/A-D/view/CXF/"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://repository.apache.org/service/local/staging/deploy/maven2"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://issues.apache.org/jira/browse/CXF"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "https://mail-archives.apache.org/mod_mbox/cxf-users"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://gitbox.apache.org/repos/asf?p=cxf.git;a=summary"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.apache.cxf/cxf-rt-frontend-jaxws@3.3.9?type=jar"
+ },
+ {
+ "publisher" : "Apache Software Foundation",
+ "group" : "xml-resolver",
+ "name" : "xml-resolver",
+ "version" : "1.2",
+ "description" : "xml-commons provides an Apache-hosted set of DOM, SAX, and JAXP interfaces for use in other xml-based projects. Our hope is that we can standardize on both a common version and packaging scheme for these critical XML standards interfaces to make the lives of both our developers and users easier.",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "706c533146c1f4ee46b66659ea14583a"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "3d0f97750b3a03e0971831566067754ba4bfd68c"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "47dcde8986019314ef78ae7280a94973a21d2ed95075a40a000b42da956429e1"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "eca19b8a6b04c279b7982b16f1763ca1d49b0081a8d4ca2b7419f057d22a0ec60795eb4d901c5eb25dd4a733248876aa2f522c17a6144a26c8ede9fb2f84531a"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "3eceda91a1ce0a35c490eb4c0bd94b552f96b8e5064b257435d89d65fcc2b04c706d996415efe3cf8a7413db479c3710"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "717fa1ea46c7a6265351dd212a106870c427e71de0bde251a409ee6e7dfe02c61966ef306d20cea5d8712cf7bf58d07a"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "bb83f90bc8b898878455441b3712a2bf489b6584e6685e5cb82d78cab596ae46"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "762f05d93e4f9cc95a969f8fecad13f97064897c83f4e057e84fe054601275912b68be76bb50da7e8d90b30846712b77341eb26a6405c59c07b06e223e9b027c"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/xml-resolver/xml-resolver@1.2?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "issue-tracker",
+ "url" : "http://issues.apache.org/bugzilla/"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "http://mail-archives.apache.org/mod_mbox/xml-commons-dev/"
+ },
+ {
+ "type" : "vcs",
+ "url" : "http://svn.apache.org/viewvc/xml/commons/tags/xml-commons-resolver-1_2/"
+ },
+ {
+ "type" : "website",
+ "url" : "http://www.apache.org/"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/xml-resolver/xml-resolver@1.2?type=jar"
+ },
+ {
+ "publisher" : "OW2",
+ "group" : "org.ow2.asm",
+ "name" : "asm",
+ "version" : "9.0",
+ "description" : "ASM, a very small and fast Java bytecode manipulation framework",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "e87284e4421437854ba938179cf803e7"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "af582ff60bc567c42d931500c3fdc20e0141ddf9"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "0df97574914aee92fd349d0cb4e00f3345d45b2c239e0bb50f0a90ead47888e0"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "135f0be16323936ef10a291df4e5d13ab8e488f41cc2835e9ccdddb3f6b65e948ef3b79eb12636c97815380455a32ece7fa9dd094f04b192a3e8752bbcb83463"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "d6da11983245a34ad4fc6bd25c894b8d125e8ae98b62d7130cafe483acc27d3d59598b2e4cc05930c1fed84ff819ada5"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "423ca9cf704ea268b33297e79bda67bb4b14eb27eff1910d99886846ef8f5a8dee49862e42cd95ab1fb6c52b0631222a"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "1beb0e93ad7e629c54d900dea3ebb394fb62301152e7aa39ede520f9c348bba2"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "8beb13f69f431fb921bf00d6ebd84b22cd6092aab97808aed464caad1e6863958cb32ec199f542d60d630a798ce42d0fe237cb74e97c33157fb6cefed1721173"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "BSD-3-Clause",
+ "url" : "https://opensource.org/licenses/BSD-3-Clause"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.ow2.asm/asm@9.0?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "http://www.ow2.org/"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://gitlab.ow2.org/asm/asm/issues"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "https://mail.ow2.org/wws/arc/asm/"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://gitlab.ow2.org/asm/asm/"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.ow2.asm/asm@9.0?type=jar"
+ },
+ {
+ "publisher" : "The Apache Software Foundation",
+ "group" : "org.apache.cxf",
+ "name" : "cxf-rt-bindings-soap",
+ "version" : "3.3.9",
+ "description" : "Apache CXF Runtime SOAP Binding",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "428c6bc68fa4bacf720d29dea8a96539"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "341e866d92c42461c4e7e4b8e2ccce6e869bb81b"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "556c39559cbe88bca5ad7802db070bb345f896a1f12e615e79d69d23a8854122"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "1d3b447b9c67282fb507a84f4b2ac6f795743a5105f4ed47a902fe9f930c56f30551d4c4c730ac5f75592e182ca4694b36e513cc633810158d6eb53dbcf9566d"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "4467b796d481f44d416eb5d7b8613b03477ea639284aff186eb0189b7064b7d245cb6afb01ed5ebb125ecb801f88e87c"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "a877a70fefab371d0e7fb240e89d561bf2bda0ed037ed9b7e62b625d5f683e1ac18c8ba0bf8c5a7aafd2279bc32849d8"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "d79a8fb1a57bfa5012cde36553e05e41f680b7850e61d875399e3da28af80146"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "25ba5612fc6f2cdc66cfc2ed728e3b9bf90e8de226a3cad240c59536db53d6f5d4878d4ce6ec0f68f5cb59d91fe05ed51379d0f7bca3793c0ed98f2bd2c09eea"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.apache.cxf/cxf-rt-bindings-soap@3.3.9?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://www.apache.org/"
+ },
+ {
+ "type" : "build-system",
+ "url" : "https://builds.apache.org/view/A-D/view/CXF/"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://repository.apache.org/service/local/staging/deploy/maven2"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://issues.apache.org/jira/browse/CXF"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "https://mail-archives.apache.org/mod_mbox/cxf-users"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://gitbox.apache.org/repos/asf?p=cxf.git;a=summary"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.apache.cxf/cxf-rt-bindings-soap@3.3.9?type=jar"
+ },
+ {
+ "publisher" : "The Apache Software Foundation",
+ "group" : "org.apache.cxf",
+ "name" : "cxf-rt-wsdl",
+ "version" : "3.3.9",
+ "description" : "Apache CXF Runtime Core for WSDL Based Technologies",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "dead56aa41a18ba4b39677ed4c773ca3"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "dd73db4e30d8e555adfd59f8807202a99d0d7eec"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "9843e82a91c778a2953c028dc29fdec32dc420d3de68b7bfdc7630b3ae081149"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "3c067ca731241d835500930de36cdb780201fa6f723dc3335416acc544fc630fdbefa06a5a830df65bbf7cf003b30438029fcf7c306223a18585abcab83a32aa"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "2a7260f56817dc8b2bd8ef305d0ca73de6a9f53bcd98905427cb206d5e65d4f4d6650ccf52b86dd33e60f06c44cd9052"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "910dbd712d8aab8cb39d76c0973d0d06d25c557a97669a6adf8577b24dbd5383c2d108a4c54ae6616212a79f42d42742"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "d24a6804be82a6f901e2b6c4e549b12555c602d2fc9e70a1413970b2606b9d6c"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "47635913467352d0ac723894e6711c6fef6461d6e3037aeabbe0e9f77e507c47f725e13e62f87d2664ad2c1bf67ad7289e936dbaeaeb1950bdd9b09b4f8f148a"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.apache.cxf/cxf-rt-wsdl@3.3.9?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://www.apache.org/"
+ },
+ {
+ "type" : "build-system",
+ "url" : "https://builds.apache.org/view/A-D/view/CXF/"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://repository.apache.org/service/local/staging/deploy/maven2"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://issues.apache.org/jira/browse/CXF"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "https://mail-archives.apache.org/mod_mbox/cxf-users"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://gitbox.apache.org/repos/asf?p=cxf.git;a=summary"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.apache.cxf/cxf-rt-wsdl@3.3.9?type=jar"
+ },
+ {
+ "group" : "wsdl4j",
+ "name" : "wsdl4j",
+ "version" : "1.6.3",
+ "description" : "Java stub generator for WSDL",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "cfc28d89625c5e88589aec7a9aee0208"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "6d106a6845a3d3477a1560008479312888e94f2f"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "740f448e6b3bc110e02f4a1e56fb57672e732d2ecaf29ae15835051ae8af4725"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "3779363efe4b7cf23bfc68388f3c6b5105dedb9192080f144534fcacc8a77014f9f3eb3ae1927344a267364c24deedebf25e306f80dfc293851973685cc58c52"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "19b91e5508f5e33b8d7c4ad41d3d679d34c0f7b43651f19c7962f534322e6cb768595430a115df82eaf66905a4a71996"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "ca2e435e6d94fea0b1d025f16b7b540aeb84bb5ef286139fa42c04443d5ec87b5663863a761f125dc4a8114148c89ff4"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "8429876fe0bd0d4bf98130c31856f6accccd2af5986b459689f7b5b49f4bdeff"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "915711a72ea5b1773e3336afcaed273d65283e5e93ddf35a12b8473951cfd3e1454bf782945c7da5399922dda46277054185b182136f2dbc356d43adb8afec8c"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "name" : "CPL",
+ "url" : "http://www.opensource.org/licenses/cpl1.0.txt"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/wsdl4j/wsdl4j@1.6.3?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "vcs",
+ "url" : "http://wsdl4j.cvs.sourceforge.net/wsdl4j"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/wsdl4j/wsdl4j@1.6.3?type=jar"
+ },
+ {
+ "publisher" : "The Apache Software Foundation",
+ "group" : "org.apache.cxf",
+ "name" : "cxf-rt-databinding-jaxb",
+ "version" : "3.3.9",
+ "description" : "Apache CXF Runtime JAXB DataBinding",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "bb7775b395ad93879dc3041a215fd3f9"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "f75b3c0a7a444129ce96e2c624b6f4d3204ed8ba"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "70bd9b316bb83105f1cfa6629e14bb32e0e17ffb904cca9df75eeed0750db60e"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "aa0ec4d06ef5ea95e5f1057f0485515170217ca24867e19f34a1da40a4f25f07977becea120ddbd4b45f21af37c98b8512c5e52d562cdbc677eefbba8a155af1"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "a94b444cb10f30040746e3fab33394416183650b3aaff1f5c3707ee9a7dbb4c0ca535893c9a6d90ce5ea3eb4c4db5913"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "d9f3b4422a68762cdf1666970202a9f6e047a619708afe9ac1cc591695a54e79de7d9a3427bf57d36a105674c00bdd66"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "4c387a43d3aad8b1195a02b028fa9780cf12d03bb752343cfadc6b1bc00bb333"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "46e8d014550adfa855a4df81c72e899c5d0e1dcbb78a4f8ad8db1c6ebbe166e967a00f0c7eb735f7808d7308a36b5b85742930e3b454ff5c801732a197129980"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.apache.cxf/cxf-rt-databinding-jaxb@3.3.9?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://www.apache.org/"
+ },
+ {
+ "type" : "build-system",
+ "url" : "https://builds.apache.org/view/A-D/view/CXF/"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://repository.apache.org/service/local/staging/deploy/maven2"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://issues.apache.org/jira/browse/CXF"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "https://mail-archives.apache.org/mod_mbox/cxf-users"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://gitbox.apache.org/repos/asf?p=cxf.git;a=summary"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.apache.cxf/cxf-rt-databinding-jaxb@3.3.9?type=jar"
+ },
+ {
+ "publisher" : "The Apache Software Foundation",
+ "group" : "org.apache.cxf",
+ "name" : "cxf-rt-bindings-xml",
+ "version" : "3.3.9",
+ "description" : "Apache CXF Runtime XML Binding",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "ba5bb4c79e5c41292756f24664c3b894"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "9c2c871ded810e3328e0d129fd62517b69ee9aef"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "6e56a7e9de5ed546ed6b011188dcfe5c877cf6c164862f5ad39feebea4c1b51f"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "1753f2faf4f46f33230926fbf7eb8c0fb397cd35d5c437811b273d4593d4724bb71f247355b46b5a3e72badc808dfcf4e8e5f6ebab272c1839dc0172eaae4fa4"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "4621d0574d067a3dcacfaf9df218738d47225e89c5ff84e0fa65957db9161f1ea96920df6209bd145215ef486e28b2a1"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "66235e5a1db113772651744a2edc56a34c30001f2c7791fa9004401f5fb886852e41c6633038af2fcd22c7b5ac8cbee7"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "9369eeb76c9844aab5ffef0f1b26dc615cb7ab3db7a169d9fd7dbe03a03391cb"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "4f027c10fa47051a45cb16ffff5b5e06feb4bc55cb8520dd28e5dfc317382b7adac332494f18f56d037f79b8db3ee85b7f3be70ee029b09b461c9940acd2ab84"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.apache.cxf/cxf-rt-bindings-xml@3.3.9?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://www.apache.org/"
+ },
+ {
+ "type" : "build-system",
+ "url" : "https://builds.apache.org/view/A-D/view/CXF/"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://repository.apache.org/service/local/staging/deploy/maven2"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://issues.apache.org/jira/browse/CXF"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "https://mail-archives.apache.org/mod_mbox/cxf-users"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://gitbox.apache.org/repos/asf?p=cxf.git;a=summary"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.apache.cxf/cxf-rt-bindings-xml@3.3.9?type=jar"
+ },
+ {
+ "publisher" : "The Apache Software Foundation",
+ "group" : "org.apache.cxf",
+ "name" : "cxf-rt-frontend-simple",
+ "version" : "3.3.9",
+ "description" : "Apache CXF Runtime Simple Frontend",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "49fa0ef82d16cf19245567b5d230b57d"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "15c4846255d7e778cd2d5c7c599aca87b0e2fb39"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "6f796b206b1e6f15353b441cbb43e0c8289602b79f562b434c86010559c2470a"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "959d38997f5c18ba7eb2ffd64e524399736b2878b783bd54848286497388d49872b9bc80016da955dece4128a2dfd4c929cd68307d5b33c3fcbfc4e8ab9b4c37"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "475cf6e996ecb8dccc2597d5bd0e2c9d1b70b93291d2d52c12941b8133d71314e2eb89d1b971299542969d54c3e9f5ed"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "82b1faa98855efccee9ce4a313d2d3ec70340cb31ac1a5a0c9afcbd971c48d2f589ba255ec1e473a1cd9298a5def4927"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "a2b0356c69e88e37137f9aed4bab4e8623563402b075bd466396a62e5c1903d5"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "32a0ea340039fb0fb1447659606dfd452acc5fbb823849b259dbae4435e215ef452952a01e4b3b7b5cb907af05c45027927fc8309620ff15249d96571306ebec"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.apache.cxf/cxf-rt-frontend-simple@3.3.9?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://www.apache.org/"
+ },
+ {
+ "type" : "build-system",
+ "url" : "https://builds.apache.org/view/A-D/view/CXF/"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://repository.apache.org/service/local/staging/deploy/maven2"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://issues.apache.org/jira/browse/CXF"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "https://mail-archives.apache.org/mod_mbox/cxf-users"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://gitbox.apache.org/repos/asf?p=cxf.git;a=summary"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.apache.cxf/cxf-rt-frontend-simple@3.3.9?type=jar"
+ },
+ {
+ "publisher" : "The Apache Software Foundation",
+ "group" : "org.apache.cxf",
+ "name" : "cxf-rt-ws-addr",
+ "version" : "3.3.9",
+ "description" : "Apache CXF Runtime WS Addressing",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "afd7aa09a030f7334a83402fe21e7945"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "92bf88ff28fc6683084f4c7dd7c088040d98d263"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "69fc0a25ae3f4a0bb6ec223bb71e25765393563952364e3d936444dccecdaba0"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "3c5a7788baadfd9070abeead76c80be33db37e7e5782898325595ee0f8d0d0d192116f555cc38654f84c382523b651f19ea6613e9b34dbbf7594cfce023617d8"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "5543c7d19c9c4f48e24eea1a017e6253a8ff75dbbeb509bbde917cbda3aab3d81fcfa3666061db0ea6f9be903d9b5da9"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "f4c8ef1e45618b9598867dfc85820a799548fb1a801175639dc401479a23aa3ee7aae7ff282ac8d396f2c8f133524657"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "d32a0380bf2727e6244f4312b35a3fc2cfddf3ab2064f259cfdeaa3cfa882330"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "84b096f86dc610e5a4f95bda5a62be0ef28f40ee7d10f37c143f1124a2bf97990f7e94fa400f0a4dc648a3a9da34c14a36c4cceaa985d8e3a25af607acbd1a9c"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.apache.cxf/cxf-rt-ws-addr@3.3.9?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://www.apache.org/"
+ },
+ {
+ "type" : "build-system",
+ "url" : "https://builds.apache.org/view/A-D/view/CXF/"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://repository.apache.org/service/local/staging/deploy/maven2"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://issues.apache.org/jira/browse/CXF"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "https://mail-archives.apache.org/mod_mbox/cxf-users"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://gitbox.apache.org/repos/asf?p=cxf.git;a=summary"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.apache.cxf/cxf-rt-ws-addr@3.3.9?type=jar"
+ },
+ {
+ "publisher" : "The Apache Software Foundation",
+ "group" : "org.apache.cxf",
+ "name" : "cxf-rt-ws-policy",
+ "version" : "3.3.9",
+ "description" : "Apache CXF Runtime WS Policy",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "767bd675d5c28a28713d597bcf702754"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "3cb28305723046ac8a206b03b72ec1ea06023f12"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "9522468e26b951f97ef32b86cbfc0441129841e64d99764edce7bf53fb56231a"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "dbd6f62ac8c9996d8ac29e42c7a6d1365b9d19568a3b0c138aebebb1881452b2bcad3c2a29afe69abf7aa828db782d6d5e1aa398f034c478a60f932166eb2875"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "a8cea2b861db066e78fd03eeaa6e323643e88f11bf9b5049d88eb350928e8cb30f6299c8d830ed1a4a7411994e78de07"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "4cf92c8d32c8439b31e357f1d42c87d295065b6b4868d2b389f428a1628311c198281f34e5ef2b49b8da1af9179bf629"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "a43cef4c63b1a0ee56cc73ca2d182e98e4a8068124531de0dbb3353554468cc2"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "5bd709461236c2d55b25e744c9e9bb2c416b6282130210466232be342996c24647fe118c2673ecbe9644585e6b9111d8d7f33634c7155ea0d04410ace3a15ea6"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.apache.cxf/cxf-rt-ws-policy@3.3.9?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://www.apache.org/"
+ },
+ {
+ "type" : "build-system",
+ "url" : "https://builds.apache.org/view/A-D/view/CXF/"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://repository.apache.org/service/local/staging/deploy/maven2"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://issues.apache.org/jira/browse/CXF"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "https://mail-archives.apache.org/mod_mbox/cxf-users"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://gitbox.apache.org/repos/asf?p=cxf.git;a=summary"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.apache.cxf/cxf-rt-ws-policy@3.3.9?type=jar"
+ },
+ {
+ "publisher" : "The Apache Software Foundation",
+ "group" : "org.apache.neethi",
+ "name" : "neethi",
+ "version" : "3.1.1",
+ "description" : "Apache Neethi provides general framework for the programmers to use WS Policy. It is compliant with latest WS Policy specification which was published in March 2006. This framework is specifically written to enable the Apache Web services stack to use WS Policy as a way of expressing it's requirements and capabilities.",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "13dd27a2bd870dfb01d67a086a8c1948"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "3a942a7921e66bb0081b16cf8f8a68e456b91de1"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "7f8c00d9bbfbaa97a97a461cdeadb20054b956acb7536782703ca5a9a330ff22"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "34c8a859e41df1a737ae0e4e2979f03d09528595cf56a940f171157f13d2994fffbf11945052643c5e56e30016340fc65111c2d813b1967f94b44823bb4318ea"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "f9d7bc7dfe75763b67801b640ae1aad488127af8dc2c0ba6dba1bee6927da059c03951f057591f046d5f3c8071ec0f8d"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "1d6fa259ad241d19e73cbdd2b8f1ec23fd146b777d2462fadefa082e37aa7da5e5f9fa863b3c225527e16c32565ddb09"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "01e1a9ba813d10536054a85fcefdacf29b46471d14504ee80210dc3d6a35c0f5"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "4cb4d1c1e03196586fc95ac9cabb1f47742bc67dd6a23232335f496fd587ca556e6ee11d099647f60cdcad30e6b6fb0b14b85f1a7a4250a507cca0a33bb366ca"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.apache.neethi/neethi@3.1.1?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "http://www.apache.org/"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "http://issues.apache.org/jira/browse/NEETHI"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "http://mail-archives.apache.org/mod_mbox/ws-dev/"
+ },
+ {
+ "type" : "vcs",
+ "url" : "http://svn.apache.org/viewcvs.cgi/webservices/neethi/tags/neethi-3.1.1"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://repository.apache.org/service/local/staging/deploy/maven2"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.apache.neethi/neethi@3.1.1?type=jar"
+ },
+ {
+ "publisher" : "The Apache Software Foundation",
+ "group" : "org.apache.httpcomponents",
+ "name" : "httpcore-nio",
+ "version" : "4.4.15",
+ "description" : "Apache HttpComponents Core (non-blocking I/O)",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "295da715492b1f7d4e38711f820e42a0"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "85d2b6825d42db909a1474f0ffbd6328429b7a32"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "44ee3edb7d5e96d3e6d00263c838af23dd2ce67554129714ea30ae447ba95b92"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "58730c69cd14d5ef1fcf39150186dd33077c08051c87c150d39561cce7f5e82dcb2ceceeb64a268b0cbafdbc605b11e1eaddf9e45574d9f010dbebbc6fbf460c"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "035c93a9323efa78196aef2c54e7b541ce63752874bf2f4d54db027fdae0f0e50b2e39eece5f1822241503555c87822a"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "a913ca42651272aad24860e5815080068eb05a7bec5bc391ca8e2a480d043ceff4d0cb78032c9197be5d849f5b5aabbb"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "10a5e095773305796825d5fb86e1252bcb5e1b52ea10478c0567ed7ee242bba2"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "561f18b2b03cdfb0e593213c91e43d896e4172a65069ffd8cca80836588e13a2c3d778d1304e6c05309a2bde4446001605d59b8d5fbb4f131f974bf4c9178384"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.apache.httpcomponents/httpcore-nio@4.4.15?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "http://www.apache.org/"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "http://issues.apache.org/jira/browse/HTTPCORE"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "http://mail-archives.apache.org/mod_mbox/hc-httpclient-users/"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://repository.apache.org/service/local/staging/deploy/maven2"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.apache.httpcomponents/httpcore-nio@4.4.15?type=jar"
+ },
+ {
+ "publisher" : "The Apache Software Foundation",
+ "group" : "org.apache.httpcomponents",
+ "name" : "httpclient",
+ "version" : "4.5.13",
+ "description" : "Apache HttpComponents Client",
+ "scope" : "required",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "40d6b9075fbd28fa10292a45a0db9457"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "e5f6cae5ca7ecaac1ec2827a9e2d65ae2869cada"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "6fe9026a566c6a5001608cf3fc32196641f6c1e5e1986d1037ccdbd5f31ef743"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "3567739186e551f84cad3e4b6b270c5b8b19aba297675a96bcdff3663ff7d20d188611d21f675fe5ff1bfd7d8ca31362070910d7b92ab1b699872a120aa6f089"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "093ac3e2dde58e34aa70309c7305eb3c9b5be2509a9293f1672494da55479a86bd112e83326746dc7a32855472952b99"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "cd6882e7868624164e460f2f3ea01466f863c0dcb902b031c656b57356f563be83b29530df41d88d634ed3d01fc9964d"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "710b1d8d7dae0b8e4270756694ca9c83d64965f42d3b4170c609b14d47c2762c"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "276fa6a6599dc89382d658115695cf4da6b0d39b34e9c349c17a5dbd64122eaee553bb9ed75c0378ec4a83be157c8aa39370662de3c9b8fd55ebc1dd608383e6"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.apache.httpcomponents/httpclient@4.5.13?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "http://www.apache.org/"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "http://issues.apache.org/jira/browse/HTTPCLIENT"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "http://mail-archives.apache.org/mod_mbox/hc-httpclient-users/"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://repository.apache.org/service/local/staging/deploy/maven2"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.apache.httpcomponents/httpclient@4.5.13?type=jar"
+ },
+ {
+ "publisher" : "The Apache Software Foundation",
+ "group" : "org.apache.httpcomponents",
+ "name" : "httpcore",
+ "version" : "4.4.15",
+ "description" : "Apache HttpComponents Core (blocking I/O)",
+ "scope" : "required",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "be7c67929df007fcac6c8eff5322d3a0"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "7f2e0c573eaa7a74bac2e89b359e1f73d92a0a1d"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "3cbaed088c499a10f96dde58f39dc0e7985171abd88138ca1655a872011bb142"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "f0605e4d521c6e9c7e645905687c519239fa9e2128403a515e6118b0406b503b0865a8ead197f8532186b0c9aaa4189ff5bb301d5b0cf84bd54fa2258d17551d"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "fffa9cd7434271990e20230ef9c3754f4b198958437573cdec2d4e7063147a765cb0cdf0b79a9688e81ff85dc704c25b"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "0b72d65d0c3a7d74d1baf1a2fc4e9510e64bd34f7b23f52d436621d2043d81b5395c9b05803e7471537964ac42e2fe94"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "3290e3547fd3ea688f30ba6a554c779c784bb209642ec4d48b284ca8374191b3"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "230b7196270183aaaf5e89e8d7598a3c65ac6bbede816e222e6d457fe5fca50fbe8ca2cb30ecf161bf4ddf34a08ee3a95d2f559e0aa513e9e730eeb5624b296b"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.apache.httpcomponents/httpcore@4.4.15?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "http://www.apache.org/"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "http://issues.apache.org/jira/browse/HTTPCORE"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "http://mail-archives.apache.org/mod_mbox/hc-httpclient-users/"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://repository.apache.org/service/local/staging/deploy/maven2"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.apache.httpcomponents/httpcore@4.4.15?type=jar"
+ },
+ {
+ "publisher" : "The Apache Software Foundation",
+ "group" : "org.apache.httpcomponents",
+ "name" : "httpasyncclient",
+ "version" : "4.1.5",
+ "description" : "Apache HttpComponents AsyncClient",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "5346c547bfd0da64eb3dc54be9380d65"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "cd18227f1eb8e9a263286c1d7362ceb24f6f9b32"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "0c1877489a9d1ba4fa50f6cfcab11d1123618858cb31d56afaab5afdd5064d99"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "1e33c7fdfa63f377ec4844b7744d2f8ec30dc7867136905ff5a5a6e5f94efa5b8159ba20e81f0048f48430cf63ada7411a3974a418aefa497d2b4fab3501f5ba"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "9c4cf09ffeb61bccc3b67375f401c8a96c46bdee7c77f84e3227271a635e109a550526185407869e93ede8f081786977"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "25bcc09200af70f5624baf5ddb95ac6bf46daaffb938d141f72f63ef76df8b740ba3b50104da997cfe67c34bd520fa5e"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "ddb21eeb3e1c3f00ebcf397b58d8d972cc7ab7b140e8939654bf24b8b89382a7"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "f753a8b9607f42417912c3bddeda3f189ab9f469416dafdbcd29b1df7a358aa57deba8a79a5663fdd1a4acbe35b39a48fd24f889a50e05a4726132db85699ebd"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.apache.httpcomponents/httpasyncclient@4.1.5?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "http://www.apache.org/"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "http://issues.apache.org/jira/browse/HTTPASYNC"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://svn.apache.org/repos/asf/httpcomponents/httpasyncclient/branches/4.1.x"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "http://mail-archives.apache.org/mod_mbox/hc-httpclient-users/"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://repository.apache.org/service/local/staging/deploy/maven2"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.apache.httpcomponents/httpasyncclient@4.1.5?type=jar"
+ },
+ {
+ "publisher" : "The Apache Software Foundation",
+ "group" : "commons-io",
+ "name" : "commons-io",
+ "version" : "2.4",
+ "description" : "The Commons IO library contains utility classes, stream implementations, file filters, file comparators, endian transformation classes, and much more.",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "7f97854dc04c119d461fed14f5d8bb96"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "b1b6ea3b7e4aa4f492509a4952029cd8e48019ad"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "cc6a41dc3eaacc9e440a6bd0d2890b20d36b4ee408fe2d67122f328bb6e01581"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "957a438894a196e534af9ae1e61fb21e16f273952b55a81abb8faf0b139fc031ea940cf477f81704db417d1ce6ff2d9ddd4a2cbf316903b0e2dc1aeaef24f292"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "af8a3e210cb1dd5475d497249acf1a86266077f5c7df0ded76d92467ab7f69e445f79dcfacfd7375085ad24f49625955"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "96ad8ffd01492835e0f0d0d19b0414950f487603caa7bbbed28bd3dc41721077c871eb534399aa178ed97aa01d743983"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "78a19109fbcc47fcdd9486c1906e244d1cfad3172d7497d4f0009cdf100ff97b"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "171ce4f320389faf73f95242098be01116709a9eaa88e770ef4aa63e249076dc9133f4c228809bd6989d657dabd6100d34a61232232adf19bbeea82482f46b29"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/commons-io/commons-io@2.4?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "issue-tracker",
+ "url" : "http://issues.apache.org/jira/browse/IO"
+ },
+ {
+ "type" : "vcs",
+ "url" : "http://svn.apache.org/viewvc/commons/proper/io/trunk"
+ },
+ {
+ "type" : "build-system",
+ "url" : "http://vmbuild.apache.org/continuum/"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "http://mail-archives.apache.org/mod_mbox/commons-user/"
+ },
+ {
+ "type" : "website",
+ "url" : "http://www.apache.org/"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://repository.apache.org/service/local/staging/deploy/maven2"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/commons-io/commons-io@2.4?type=jar"
+ },
+ {
+ "publisher" : "FasterXML",
+ "group" : "com.fasterxml.woodstox",
+ "name" : "woodstox-core",
+ "version" : "5.3.0",
+ "description" : "Woodstox is a high-performance XML processor that implements Stax (JSR-173), SAX2 and Stax2 APIs",
+ "scope" : "optional",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "89fb07387e448325eacc9c642e3d69af"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "59a3a7fb46a364ee383ea7e8c67c152a224b3d99"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "b2bd29c31fda49a9b28a22b9e5c2b26443bcfa99c1a28eab70ab9c7d349b5002"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "a9e981b270cef762d2077522f158287141cc47a3d2705f7d03349390bfc12e2dc33641cab6278678e7225087d8e5a9a891f396e958ea1527628d7e8edf833ae2"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "e653d5f0a2802aeb1e98e19d453850567c77fb31a3dfff41af953d2cd198d1a3fc374fb1c82f63a92bb5dd120b9f576a"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "e4608171de5487c5e33d11b46f72450f6773f650c89bead729ec0c87e34de27367b3fb739f0b8b6e476c2bfeed2bb2b9"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "5c95c04690fa6ea1614a08003e25a67cb184d4c983497ca9cd3171807e011515"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "1769c8c0efcdf1d893ba717e448b697d0c64ad1474997184f55cd65ca613b255288345dbc3e9a6dc569f07556209d6afdc2689b76d9b1b584a2d3b489767cbff"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/com.fasterxml.woodstox/woodstox-core@5.3.0?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "http://fasterxml.com"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/FasterXML/woodstox/issues"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/FasterXML/woodstox"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/com.fasterxml.woodstox/woodstox-core@5.3.0?type=jar"
+ },
+ {
+ "publisher" : "fasterxml.com",
+ "group" : "org.codehaus.woodstox",
+ "name" : "stax2-api",
+ "version" : "4.2",
+ "description" : "tax2 API is an extension to basic Stax 1.0 API that adds significant new functionality, such as full-featured bi-direction validation interface and high-performance Typed Access API.",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "5d22fe6dbb276d1fd6dab40c386a4f0a"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "13c2b30926bca0429c704c4b4ca0b5d0432b69cd"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "badf6081a0bb526fd2c01951dfefad91b6846b6dd0eb0048587e30d1dd334e68"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "4c7642993e96b6941cf80feb8ae7a285a0c6c8102d629cd265ec493bd05a6f2bab5b37979749430e0aa0625c269088692c36ed063b52e3b95e346f54e5dfa358"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "5d747ee5480365a3175d2b16cdc5763fcc476ed414134421c0dc59bcf9a63c321efd0b036ae6a6cf146e80977b326859"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "67cac327dba0b16611fd58cac746ae38ac12b19e276108f01bba7e0a1cef7a0a5b96ef1b2f3d949e10e86f0a54853d78"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "93083ae19e85f9dff5c66a08fdfb973f2cdd2d8d1f25519ff6bef94ebb1d7f22"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "f5a03f0a85b6532e386079104340101bd3baa767bfd433359bde62dd98063ba6045a594453973cec5ac4a3cf4827222cf114bcba2515cd2054602f9876874aa9"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "BSD-4-Clause"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.codehaus.woodstox/stax2-api@4.2?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "http://fasterxml.com"
+ },
+ {
+ "type" : "vcs",
+ "url" : "http://github.com/FasterXML/stax2-api"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.codehaus.woodstox/stax2-api@4.2?type=jar"
+ },
+ {
+ "publisher" : "The Apache Software Foundation",
+ "group" : "commons-net",
+ "name" : "commons-net",
+ "version" : "3.6",
+ "description" : "Apache Commons Net library contains a collection of network utilities and protocol implementations. Supported protocols include: Echo, Finger, FTP, NNTP, NTP, POP3(S), SMTP(S), Telnet, Whois",
+ "scope" : "required",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "b46661b01cc7aeec501f1cd3775509f1"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "b71de00508dcb078d2b24b5fa7e538636de9b3da"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "d3b3866c61a47ba3bf040ab98e60c3010d027da0e7a99e1755e407dd47bc2702"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "dba414cea9fb4b47dfe6d20c347bd91052185dd958996bfdd1e709f66b5fa7812ebb0dad80c47e72bcc0075b3b5526c705216efe771cac1cc53b2f7923124faf"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "da4e47cc5b90fdb04f76ec59d9e1c17dcb6c85507fa0867dbfea02ec8b7788fb9c7a8cfa13064675004805ec476f4802"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "8afdb2f0b22a357bd7bd554a8583eaf4c2ec385288abe06cf4da66d3d4af3e66bee242104a4e0252e3af7964a9c4d426"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "a031d0a8e3deff004c46b903e8a12995f80f1e161893f596bde45d5a2b06c870"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "5e55185f5cebb4763a44cb6672c181e0cf804ae3bfd90db8ba86207502ddd7bd99c6c60aabb0d1dcce8b77f9961ccf02db1f6414eeb23bbe62f5ad29a0f84c7d"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/commons-net/commons-net@3.6?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "issue-tracker",
+ "url" : "http://issues.apache.org/jira/browse/NET"
+ },
+ {
+ "type" : "vcs",
+ "url" : "http://svn.apache.org/viewvc/commons/proper/net/tags/NET_3_6"
+ },
+ {
+ "type" : "build-system",
+ "url" : "https://builds.apache.org/"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "http://mail-archives.apache.org/mod_mbox/commons-user/"
+ },
+ {
+ "type" : "website",
+ "url" : "https://www.apache.org/"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://repository.apache.org/service/local/staging/deploy/maven2"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/commons-net/commons-net@3.6?type=jar"
+ },
+ {
+ "group" : "com.h2database",
+ "name" : "h2",
+ "version" : "1.4.199",
+ "description" : "H2 Database Engine",
+ "scope" : "optional",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "f805f57d838de4b42ce01c7f85e46e1c"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "7bf08152984ed8859740ae3f97fae6c72771ae45"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "3125a16743bc6b4cfbb61abba783203f1fb68230aa0fdc97898f796f99a5d42e"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "79a256b47ddb1ec3370606a9c08022b2199715ecbbef5cb6c91e6cebfc7837aa745eb35d90be5d2991d10b006c7e475f915595ecd652c9553f39c1bafe2f1477"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "e319a2b469a656e3a31f22cda95082f1b0e725f51a926d180a668a3b5cd5766528797866b95b3b7794a8087a495e30ba"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "086d14e2970737b9f6804dcfa62d88a4e152753f265b5fbc5fa2a9cd05978e52aa1a2136681abb799fc7ba3c108d9cd5"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "4e31995d488db01cd5434f6d5e1abc57c5cf1a294f657ff8c7b67119e49a7673"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "8450836e04fed4ed6f527840a089dcd50b30d1ee1e7604b231d1aca73dfc97518d6ae7d1573945954c5af0f171cebaa40b4ee1a97426a1e6c3a5ee2d9e15440a"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "name" : "MPL 2.0 or EPL 1.0",
+ "url" : "http://h2database.com/html/license.html"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/com.h2database/h2@1.4.199?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/h2database/h2database"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/com.h2database/h2@1.4.199?type=jar"
+ },
+ {
+ "publisher" : "QOS.ch",
+ "group" : "ch.qos.logback",
+ "name" : "logback-classic",
+ "version" : "1.2.11",
+ "description" : "logback-classic module",
+ "scope" : "required",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "e13679004cc76ad5792f275f04884fab"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "4741689214e9d1e8408b206506cbe76d1c6a7d60"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "4d8e899621a3006c2f66e19feab002b11e6cfc5cb1854fc41f01532c00deb2aa"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "6df8b42396c5d3257f11fb19c280533aa28d66e647115816d4ebfd6a58c9b5adf0e098504772261b29435df75b86cb2b9a47f846ed45d770179c9d10f39941de"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "d480881d1a0d58c94aba0b719d56cd492147bc6481b67370dc7426ea7a81326af5b19f32d6a95fee714f37b90a5eed76"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "070647c93da744f04cc13ab3f1958c61a8b1e219fe221ed0bf251e4cc97563c64be323bfb3a9e2fd4839e33ded424b21"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "60c1dbe51066ffb3885673255a279e8894c89fe26f079180fa992478c1d9b03e"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "ce16fae69767bca975bec0d7dd0ceeb40c15cf034a4a949721c828a0f2c25cb9d619c4db3f986f6d9805d5b76d27b8926c55be5579522cd5ab3fa5e69bb68aeb"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "EPL-1.0"
+ }
+ },
+ {
+ "license" : {
+ "name" : "GNU Lesser General Public License",
+ "url" : "http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/ch.qos.logback/logback-classic@1.2.11?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "http://www.qos.ch"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/ceki/logback"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/ch.qos.logback/logback-classic@1.2.11?type=jar"
+ },
+ {
+ "publisher" : "QOS.ch",
+ "group" : "ch.qos.logback",
+ "name" : "logback-core",
+ "version" : "1.2.11",
+ "description" : "logback-core module",
+ "scope" : "required",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "115da115b5e66ef64e774ec35af1fb1a"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "a01230df5ca5c34540cdaa3ad5efb012f1f1f792"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "6ce1e9397be8298a2e99029f55f955c6fa3cef255171c554d0b9c201cffd0159"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "86b12a74c2a822a12ba2e9a7b0db5013803f18784a3cb1201c95d5f7872a6aa8cf06d5861a5c35777a7decc7ea26df7b4388fab3b3b71aab7274527d9b339318"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "2afd896ebe6333d99e5baa553d80b7851d8ff51c06c725267e061df81bc9a878b74a65394699ae853f9738a08963aa0a"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "43d39acc5608b60d671c000bf6114f4623d3057399142abca01b0fc2381f2191479a2f0dd74f812223b66f57fa48fd9c"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "c23af1733b972e958369a2e14372fd2b306d4f552d7ae5ff6b9dfad3c14611c6"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "c7f6357d32a3b9fd82dfbd162c3a6cbe4b4909ef530e956bcd18649b2d3624eb51c5a71fee54533a9786e87cf1ccdc693f563ef6e3c6fbff7beedbd1d670f9bb"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "EPL-1.0"
+ }
+ },
+ {
+ "license" : {
+ "name" : "GNU Lesser General Public License",
+ "url" : "http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/ch.qos.logback/logback-core@1.2.11?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "http://www.qos.ch"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/ceki/logback"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/ch.qos.logback/logback-core@1.2.11?type=jar"
+ },
+ {
+ "group" : "io.jsonwebtoken",
+ "name" : "jjwt-api",
+ "version" : "0.10.5",
+ "description" : "JSON Web Token support for the JVM and Android",
+ "scope" : "required",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "ea57d941aab0b215eda1e5b27adf802d"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "4bcf9036f62a404d6abecfffb37eae9033248933"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "dc15294d0bee3f5d9c8ee8381dcdf37457f9c33604484b1d3a438478a05a05c5"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "3fda7eff90654af3c79e05ef09d4228cb2534f3df9da3a9f1143111d1c620e3eafbda4b421c62c38219261ceee7ae99c578c7e02f0d4ada2be982542bdba563d"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "fdfdb502b2377ad22664fabce09e51caea3db58a7d66e2bea1ad3623f97ef0861dbd93a53286a4e552689ce9a9c6b4b4"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "4239ed1d9983ad903df11da847a352899a5e7ffcb9bc1080c9e7a4d0d1c28079655edea51d0834ba69d30d9244699a1e"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "d7b37180bc0cbdfb2ba6cf00858fa150bf91847d20df5d89e1e7847c16dc8401"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "3e7d7576ea9226fa6487b02d82aee06bc260945223eb18b6309230a37dce590cd10fe6d29231fa7ac42da97763a329fe587ec357dce9558a9b7f2238e0350a0d"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/io.jsonwebtoken/jjwt-api@0.10.5?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "build-system",
+ "url" : "https://travis-ci.org/jwtk/jjwt"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/jwtk/jjwt/issues"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
+ },
+ {
+ "type" : "vcs",
+ "url" : "http://svn.sonatype.org/spice/tags/oss-parent-7"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/io.jsonwebtoken/jjwt-api@0.10.5?type=jar"
+ },
+ {
+ "group" : "io.jsonwebtoken",
+ "name" : "jjwt-impl",
+ "version" : "0.10.5",
+ "description" : "JSON Web Token support for the JVM and Android",
+ "scope" : "optional",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "96b799c260221c1714d04a6cb58a460d"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "f6d6dc168128f40652ca973b212f483f0e0765e3"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "78bc9d0033a16c1a46511dcf5a75f884ffe301bed89fe7124b478080e5d97c0a"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "44a8d5d0ab1e4593199fda20f3f148f87701157bbccd1d6f8bdb4bc008a17a89d0883cd939b9d4e7e56521e8b4a8ac4aa5930ac40acdf939d4b420180a040341"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "ca93f8888ecd418ebc1c0ef7531954f12a5a9ff8e8a74720fb57a5268101c172979095bf08c6eaeb4ddb4ddea223cea2"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "b7871eae8d2ce187dea8b251a598b3c41c5037aa573846e88acf588baf66db967692887b9ec37c403ab8888fa20a16de"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "b9cc889df115af1178c02df933b130251bfaa2c8dba208b34cd30114e85ad029"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "b49a67e142c5c6decf39133b4c203814f1a0b800e7a216ab7fd13238990cdd5120171558679ae5b8dd1b401248aafb4736f9eeb39f37bda97cb81ddb97ea2fa7"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/io.jsonwebtoken/jjwt-impl@0.10.5?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "build-system",
+ "url" : "https://travis-ci.org/jwtk/jjwt"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/jwtk/jjwt/issues"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
+ },
+ {
+ "type" : "vcs",
+ "url" : "http://svn.sonatype.org/spice/tags/oss-parent-7"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/io.jsonwebtoken/jjwt-impl@0.10.5?type=jar"
+ },
+ {
+ "group" : "io.jsonwebtoken",
+ "name" : "jjwt-jackson",
+ "version" : "0.10.5",
+ "description" : "JSON Web Token support for the JVM and Android",
+ "scope" : "optional",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "d27f25d0835b54044889aa0c61c9b53a"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "eb99c1575f73a56b7adaa478b5ad140c7b105fa4"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "d2c03db8830c20384c6830b41d7547681bb65a5dcd23906d805bdd4f340edcde"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "422bf0fb33ff65aa2270df1bee08ade7ab4e9979150c6f9468aca46c315847524e3c6a6be25926ca6ac68ef6c9635a9bbd18938e28bcb7e90432675e532ca00d"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "8245e9afbbf520f6105844a33b884994128eb961ff377693d779b475a9e83254fc3229998f42c2922d6e419e0bbd08f5"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "496b35fd4d7fbae228f8be7b19b3f845b42cd74df3819ac294f314fdbb50a647f5327026c78203019c6b43fc0860e903"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "8479e3bc368ccf60cb55174802daccffee0926a0357637629c9ebff973ba1f26"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "e48caea2a593fe06ad97819bb347aa7472fc1dc3fc86298f93179b8ede03b8249e527fa15ffcaf40f9c9ee175ab59d7ef3f81253c31c84e02512219f03b68249"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/io.jsonwebtoken/jjwt-jackson@0.10.5?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "build-system",
+ "url" : "https://travis-ci.org/jwtk/jjwt"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/jwtk/jjwt/issues"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
+ },
+ {
+ "type" : "vcs",
+ "url" : "http://svn.sonatype.org/spice/tags/oss-parent-7"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/io.jsonwebtoken/jjwt-jackson@0.10.5?type=jar"
+ },
+ {
+ "publisher" : "ANTLR",
+ "group" : "org.antlr",
+ "name" : "antlr-complete",
+ "version" : "3.5.3",
+ "description" : "Complete distribution for ANTLR 3",
+ "scope" : "optional",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "88707e14f43ae2bc2f9528bc218faad9"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "5225357e50cc4597aee756de5eb4d58ffdca3e69"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "e781de9b3e2cc1297dfdaf656da946a1fd22f449bd9e0ce1e12d488976887f83"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "fb5c045bda1e4810086cd3015dd6390ddefde73cdddde7b7e615775f22b5bc76c494d7d89de0abf7355fa3ab29d3caa769ffb2d6fba81ce9662e87f671f7bb12"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "d6a1ca62975fb10b5d505ef9da4fabf7777d029e0eda3517613c80128e7848f0f4ae3a37df7ede747421eba08b50493e"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "a153d9bb3df8108ff1b1bb4375ef65a3f8d97f5171afdcfb27f3bfa10b775246b6b5eba884bdaa11d87e6baf43846e61"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "4a07ad25bba671a32a7706065e907dba2d709f5c64bcad899296193f853f9ec4"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "6918472868716156942682bc7339ef8a20acae4c4bc8d101c6135ab96d81efb955ca512f0932a0bf4af086406ac5384dd4b2bc28f8d1515ad29644cfbea4f035"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "name" : "BSD licence",
+ "url" : "http://antlr.org/license.html"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.antlr/antlr-complete@3.5.3?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "http://www.antlr.org"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/antlr/antlr3/issues"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "https://groups.google.com/forum/?fromgroups#!forum/antlr-discussion"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/antlr/antlr3/tree/master"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.antlr/antlr-complete@3.5.3?type=jar"
+ },
+ {
+ "publisher" : "ANTLR",
+ "group" : "org.antlr",
+ "name" : "antlr",
+ "version" : "3.5.3",
+ "description" : "The ANTLR 3 tool.",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "3d5331f09afc4e58f019114e29518b0b"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "254a043f13d3204f503bb6939553ede3b36759e1"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "d0a819afddbd837b278649eb7ff17b15259d5acc49c58af614f03468a291bd7c"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "3f52f4a7ec3b1037ea0acff410322aa9764757f75612da9b611a53d0e58f9987eb1666438689dce6f406b3b0b9b34d27ba590cba35529fc81e1e6d3714e7d5e4"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "269f8aa68ff58846623afbb71bb826726dd3f88405764c797258466c0a1aa870dfcbaa322cf6751323721d3771ffed61"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "5b68cde3bb70bcf52f7d5757e55379fa955d411ee9f1190afe08c520948881ad8aa754e7062d7f34811884422cda9613"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "56a0a3c79aa1785386be517a5a80a07513ee2f8ca26e725945d942f87e1c77fc"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "47acfd0ccca4614c9d6acb53e6a61ee7eaef415980a42faf5739a8a4a5f2bd95349ea0ad876aa40779d142221822c88d3526e26535abfd9cbbdcdee764aebc3c"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "name" : "BSD licence",
+ "url" : "http://antlr.org/license.html"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.antlr/antlr@3.5.3?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "http://www.antlr.org"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/antlr/antlr3/issues"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "https://groups.google.com/forum/?fromgroups#!forum/antlr-discussion"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/antlr/antlr3/tree/master"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.antlr/antlr@3.5.3?type=jar"
+ },
+ {
+ "publisher" : "ANTLR",
+ "group" : "org.antlr",
+ "name" : "antlr-runtime",
+ "version" : "3.5.3",
+ "description" : "A framework for constructing recognizers, compilers, and translators from grammatical descriptions containing Java, C#, C++, or Python actions.",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "0b5c0ce1bb9c8190e2e60401fc439daa"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "9011fb189c5ed6d99e5f3322514848d1ec1e1416"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "68bf9f5a33dfcb34033495c587e6236bef4e37aa6612919f5b1e843b90669fb9"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "7714970915d7187d7abb32610b3764305e67798d8289f8a59461ebb3bf7f26a09b933279de1cf95c14bbb60f213bf3f1af6aa8f20e75b26768223883a6883aaa"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "e2c7c6211b673413739f34a28420af990809a4ed3ef4832d12ce3910c409be42adfbf0a90b949b17f88aaf8980dd124e"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "08924b6c5772c6d588b4bf3a026c79d4cd69b19f460758e94169a72a210efe9da2d8684ea0c029008d028a8a5414cc9f"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "86a8aa88ee5c27c2f90600c9cbedece6a3ac6b8e7762543299e6af7f64729121"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "ef4d5408027ccf3db7ac34065d610d978b59ef759964301103c720a7d6d97d832aa46554ef4e8e70b469d132e870627bd050e7bd165b2385ddc98bd621b3059c"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "name" : "BSD licence",
+ "url" : "http://antlr.org/license.html"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.antlr/antlr-runtime@3.5.3?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "http://www.antlr.org"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/antlr/antlr3/issues"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "https://groups.google.com/forum/?fromgroups#!forum/antlr-discussion"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/antlr/antlr3/tree/master"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.antlr/antlr-runtime@3.5.3?type=jar"
+ },
+ {
+ "group" : "com.hynnet",
+ "name" : "tinyradius",
+ "version" : "1.0",
+ "description" : "TinyRadius Java Radius Library",
+ "scope" : "required",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "a6319c1b8960a0c341a8e2a7891a3977"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "4864cd1ef8f04336f0aaf74d6b73b2d3c72ff122"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "117fa96eb024a4b6a6d90599aba370aa99d6e99979ebc2459ebd8d4f5eacf55e"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "758ff13ff8336cfe66b2353b37c8407d08d592c08d97bb7bc5c961579001eda986d159bcb9e9bb9d420e3f7b4ccbf81cb84967800d5790f71d6089ff41b36afb"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "fd09fc87c6cce74f41ed239c3219aba69761000ac427085ec573da0e29ae49b9c150b736cc0d93c2390caca5445aae3c"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "9b84e98346d46a86900a2c80e52d1029a18773416fd619c9e56f2c5d12fc09275c023453af59484732233eea93667b39"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "f0ce6dc4ea23c35f7a0443c7103e919b1443da542aef65f579e80663e744a895"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "6fd91a1b6c3962e36bea3c3635e41ce78937ae5ce42346a52269c681ee03125aceac31cc5e39220945429ecaab5842d56582872a879296a1b07ac72830abd69e"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/com.hynnet/tinyradius@1.0?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "vcs",
+ "url" : "http://tinyradius.sourceforge.net/"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/com.hynnet/tinyradius@1.0?type=jar"
+ },
+ {
+ "group" : "net.bytebuddy",
+ "name" : "byte-buddy",
+ "version" : "1.12.18",
+ "description" : "Byte Buddy is a Java library for creating Java classes at run time. This artifact is a build of Byte Buddy with all ASM dependencies repackaged into its own name space.",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "aa9260b3a85969a1a37c192c63d07df3"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "875a9c3f29d2f6f499dfd60d76e97a343f9b1233"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "39200c13a72b6a3f4ec43c7b6d2fb78ecbeb25c29e986f4efa572636b39d750e"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "55c475f428083d656dd9ed5a0872bbf34da3ef03e567dc5dffa900a83530d163c2e059cd630408c73f74077020e7dfe62d578a0f58263eeef01c9c307e044309"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "83e4c6e1698f6b9a9c2b57c34da982aa3fecf4800445ef992421760fc31b355c9353062b43b137cd913076d5e31eff2e"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "b5b690877c9892e1f7964b32e8cb3fe6db536fd441f1a0508f24fc5991b8169495143cb4e503003e7db85862f920c640"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "e719e8af7a78247495a4bc5ae0e2d1392a1d135310701840672821162643533f"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "b7045faf9d3467fd9e5a865e981957fe8668d7a5d131907b108d7c5eb74247a089b4a164206a169d137b79a745a519921bdaabdcff43922191c6de60529059d5"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/net.bytebuddy/byte-buddy@1.12.18?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/raphw/byte-buddy/issues"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/net.bytebuddy/byte-buddy@1.12.18?type=jar"
+ }
+ ],
+ "dependencies" : [
+ {
+ "ref" : "pkg:maven/br.com.test/test-backend@01.23.00?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.springframework.boot/spring-boot-starter-web@2.7.5?type=jar",
+ "pkg:maven/org.springframework.boot/spring-boot-starter-websocket@2.7.5?type=jar",
+ "pkg:maven/org.springframework.boot/spring-boot-starter-data-jpa@2.7.5?type=jar",
+ "pkg:maven/org.springframework.boot/spring-boot-starter-security@2.7.5?type=jar",
+ "pkg:maven/org.springframework.boot/spring-boot-starter-logging@2.7.5?type=jar",
+ "pkg:maven/org.springframework.boot/spring-boot-starter-validation@2.7.5?type=jar",
+ "pkg:maven/org.springframework/spring-oxm@5.3.23?type=jar",
+ "pkg:maven/com.fasterxml.jackson.datatype/jackson-datatype-jsr310@2.13.4?type=jar",
+ "pkg:maven/org.springframework.boot/spring-boot-devtools@2.7.5?type=jar",
+ "pkg:maven/org.projectlombok/lombok@1.18.24?type=jar",
+ "pkg:maven/com.unboundid/unboundid-ldapsdk@4.0.8?type=jar",
+ "pkg:maven/org.snmp4j/snmp4j@2.5.6?type=jar",
+ "pkg:maven/org.openmuc/openiec61850@1.7.0?type=jar",
+ "pkg:maven/io.cloudsoft.windows/winrm4j@0.12.3?type=jar",
+ "pkg:maven/com.fasterxml.woodstox/woodstox-core@5.3.0?type=jar",
+ "pkg:maven/org.apache.commons/commons-lang3@3.6?type=jar",
+ "pkg:maven/commons-net/commons-net@3.6?type=jar",
+ "pkg:maven/com.h2database/h2@1.4.199?type=jar",
+ "pkg:maven/ch.qos.logback/logback-classic@1.2.11?type=jar",
+ "pkg:maven/io.jsonwebtoken/jjwt-api@0.10.5?type=jar",
+ "pkg:maven/io.jsonwebtoken/jjwt-impl@0.10.5?type=jar",
+ "pkg:maven/io.jsonwebtoken/jjwt-jackson@0.10.5?type=jar",
+ "pkg:maven/org.antlr/antlr-complete@3.5.3?type=jar",
+ "pkg:maven/com.hynnet/tinyradius@1.0?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.springframework.boot/spring-boot-starter-web@2.7.5?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.springframework.boot/spring-boot-starter@2.7.5?type=jar",
+ "pkg:maven/org.springframework.boot/spring-boot-starter-json@2.7.5?type=jar",
+ "pkg:maven/org.springframework.boot/spring-boot-starter-tomcat@2.7.5?type=jar",
+ "pkg:maven/org.springframework/spring-web@5.3.23?type=jar",
+ "pkg:maven/org.springframework/spring-webmvc@5.3.23?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.springframework.boot/spring-boot-starter@2.7.5?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.springframework.boot/spring-boot@2.7.5?type=jar",
+ "pkg:maven/org.springframework.boot/spring-boot-autoconfigure@2.7.5?type=jar",
+ "pkg:maven/org.springframework.boot/spring-boot-starter-logging@2.7.5?type=jar",
+ "pkg:maven/jakarta.annotation/jakarta.annotation-api@1.3.5?type=jar",
+ "pkg:maven/org.springframework/spring-core@5.3.23?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.springframework.boot/spring-boot@2.7.5?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.springframework/spring-core@5.3.23?type=jar",
+ "pkg:maven/org.springframework/spring-context@5.3.23?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.springframework.boot/spring-boot-autoconfigure@2.7.5?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.springframework.boot/spring-boot@2.7.5?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.springframework.boot/spring-boot-starter-logging@2.7.5?type=jar",
+ "dependsOn" : [
+ "pkg:maven/ch.qos.logback/logback-classic@1.2.11?type=jar",
+ "pkg:maven/org.apache.logging.log4j/log4j-to-slf4j@2.17.2?type=jar",
+ "pkg:maven/org.slf4j/jul-to-slf4j@1.7.36?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/jakarta.annotation/jakarta.annotation-api@1.3.5?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/org.springframework/spring-core@5.3.23?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.springframework/spring-jcl@5.3.23?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.springframework.boot/spring-boot-starter-json@2.7.5?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.springframework.boot/spring-boot-starter@2.7.5?type=jar",
+ "pkg:maven/org.springframework/spring-web@5.3.23?type=jar",
+ "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.13.4.2?type=jar",
+ "pkg:maven/com.fasterxml.jackson.datatype/jackson-datatype-jdk8@2.13.4?type=jar",
+ "pkg:maven/com.fasterxml.jackson.datatype/jackson-datatype-jsr310@2.13.4?type=jar",
+ "pkg:maven/com.fasterxml.jackson.module/jackson-module-parameter-names@2.13.4?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.springframework/spring-web@5.3.23?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.springframework/spring-beans@5.3.23?type=jar",
+ "pkg:maven/org.springframework/spring-core@5.3.23?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.13.4.2?type=jar",
+ "dependsOn" : [
+ "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.13.4?type=jar",
+ "pkg:maven/com.fasterxml.jackson.core/jackson-core@2.13.4?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/com.fasterxml.jackson.datatype/jackson-datatype-jdk8@2.13.4?type=jar",
+ "dependsOn" : [
+ "pkg:maven/com.fasterxml.jackson.core/jackson-core@2.13.4?type=jar",
+ "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.13.4.2?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/com.fasterxml.jackson.core/jackson-core@2.13.4?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/com.fasterxml.jackson.datatype/jackson-datatype-jsr310@2.13.4?type=jar",
+ "dependsOn" : [
+ "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.13.4?type=jar",
+ "pkg:maven/com.fasterxml.jackson.core/jackson-core@2.13.4?type=jar",
+ "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.13.4.2?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/com.fasterxml.jackson.module/jackson-module-parameter-names@2.13.4?type=jar",
+ "dependsOn" : [
+ "pkg:maven/com.fasterxml.jackson.core/jackson-core@2.13.4?type=jar",
+ "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.13.4.2?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.springframework.boot/spring-boot-starter-tomcat@2.7.5?type=jar",
+ "dependsOn" : [
+ "pkg:maven/jakarta.annotation/jakarta.annotation-api@1.3.5?type=jar",
+ "pkg:maven/org.apache.tomcat.embed/tomcat-embed-core@9.0.68?type=jar",
+ "pkg:maven/org.apache.tomcat.embed/tomcat-embed-el@9.0.68?type=jar",
+ "pkg:maven/org.apache.tomcat.embed/tomcat-embed-websocket@9.0.68?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.apache.tomcat.embed/tomcat-embed-core@9.0.68?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/org.apache.tomcat.embed/tomcat-embed-el@9.0.68?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/org.apache.tomcat.embed/tomcat-embed-websocket@9.0.68?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.apache.tomcat.embed/tomcat-embed-core@9.0.68?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.springframework/spring-beans@5.3.23?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.springframework/spring-core@5.3.23?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.springframework/spring-webmvc@5.3.23?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.springframework/spring-aop@5.3.23?type=jar",
+ "pkg:maven/org.springframework/spring-beans@5.3.23?type=jar",
+ "pkg:maven/org.springframework/spring-context@5.3.23?type=jar",
+ "pkg:maven/org.springframework/spring-core@5.3.23?type=jar",
+ "pkg:maven/org.springframework/spring-expression@5.3.23?type=jar",
+ "pkg:maven/org.springframework/spring-web@5.3.23?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.springframework/spring-aop@5.3.23?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.springframework/spring-beans@5.3.23?type=jar",
+ "pkg:maven/org.springframework/spring-core@5.3.23?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.springframework/spring-context@5.3.23?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.springframework/spring-aop@5.3.23?type=jar",
+ "pkg:maven/org.springframework/spring-beans@5.3.23?type=jar",
+ "pkg:maven/org.springframework/spring-core@5.3.23?type=jar",
+ "pkg:maven/org.springframework/spring-expression@5.3.23?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.springframework/spring-expression@5.3.23?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.springframework/spring-core@5.3.23?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.springframework.boot/spring-boot-starter-websocket@2.7.5?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.springframework.boot/spring-boot-starter-web@2.7.5?type=jar",
+ "pkg:maven/org.springframework/spring-messaging@5.3.23?type=jar",
+ "pkg:maven/org.springframework/spring-websocket@5.3.23?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.springframework/spring-messaging@5.3.23?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.springframework/spring-beans@5.3.23?type=jar",
+ "pkg:maven/org.springframework/spring-core@5.3.23?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.springframework/spring-websocket@5.3.23?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.springframework/spring-context@5.3.23?type=jar",
+ "pkg:maven/org.springframework/spring-core@5.3.23?type=jar",
+ "pkg:maven/org.springframework/spring-web@5.3.23?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.springframework.boot/spring-boot-starter-data-jpa@2.7.5?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.springframework.boot/spring-boot-starter-aop@2.7.5?type=jar",
+ "pkg:maven/org.springframework.boot/spring-boot-starter-jdbc@2.7.5?type=jar",
+ "pkg:maven/jakarta.transaction/jakarta.transaction-api@1.3.3?type=jar",
+ "pkg:maven/jakarta.persistence/jakarta.persistence-api@2.2.3?type=jar",
+ "pkg:maven/org.hibernate/hibernate-core@5.6.12.Final?type=jar",
+ "pkg:maven/org.springframework.data/spring-data-jpa@2.7.5?type=jar",
+ "pkg:maven/org.springframework/spring-aspects@5.3.23?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.springframework.boot/spring-boot-starter-aop@2.7.5?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.springframework.boot/spring-boot-starter@2.7.5?type=jar",
+ "pkg:maven/org.springframework/spring-aop@5.3.23?type=jar",
+ "pkg:maven/org.aspectj/aspectjweaver@1.9.7?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.aspectj/aspectjweaver@1.9.7?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/org.springframework.boot/spring-boot-starter-jdbc@2.7.5?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.springframework.boot/spring-boot-starter@2.7.5?type=jar",
+ "pkg:maven/com.zaxxer/HikariCP@4.0.3?type=jar",
+ "pkg:maven/org.springframework/spring-jdbc@5.3.23?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/com.zaxxer/HikariCP@4.0.3?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.slf4j/slf4j-api@1.7.36?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.slf4j/slf4j-api@1.7.36?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/org.springframework/spring-jdbc@5.3.23?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.springframework/spring-beans@5.3.23?type=jar",
+ "pkg:maven/org.springframework/spring-core@5.3.23?type=jar",
+ "pkg:maven/org.springframework/spring-tx@5.3.23?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.springframework/spring-tx@5.3.23?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.springframework/spring-beans@5.3.23?type=jar",
+ "pkg:maven/org.springframework/spring-core@5.3.23?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/jakarta.transaction/jakarta.transaction-api@1.3.3?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/jakarta.persistence/jakarta.persistence-api@2.2.3?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/org.hibernate/hibernate-core@5.6.12.Final?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.jboss.logging/jboss-logging@3.4.3.Final?type=jar",
+ "pkg:maven/net.bytebuddy/byte-buddy@1.12.18?type=jar",
+ "pkg:maven/org.jboss/jandex@2.4.2.Final?type=jar",
+ "pkg:maven/com.fasterxml/classmate@1.5.1?type=jar",
+ "pkg:maven/org.hibernate.common/hibernate-commons-annotations@5.1.2.Final?type=jar",
+ "pkg:maven/org.glassfish.jaxb/jaxb-runtime@2.3.7?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.jboss.logging/jboss-logging@3.4.3.Final?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/javax.annotation/javax.annotation-api@1.3.2?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/net.bytebuddy/byte-buddy@1.12.18?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/org.jboss/jandex@2.4.2.Final?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/com.fasterxml/classmate@1.5.1?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/org.hibernate.common/hibernate-commons-annotations@5.1.2.Final?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.jboss.logging/jboss-logging@3.4.3.Final?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.glassfish.jaxb/jaxb-runtime@2.3.7?type=jar",
+ "dependsOn" : [
+ "pkg:maven/jakarta.xml.bind/jakarta.xml.bind-api@2.3.3?type=jar",
+ "pkg:maven/org.glassfish.jaxb/txw2@2.3.7?type=jar",
+ "pkg:maven/com.sun.istack/istack-commons-runtime@3.0.12?type=jar",
+ "pkg:maven/com.sun.activation/jakarta.activation@1.2.2?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/jakarta.xml.bind/jakarta.xml.bind-api@2.3.3?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/org.glassfish.jaxb/txw2@2.3.7?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/com.sun.istack/istack-commons-runtime@3.0.12?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/com.sun.activation/jakarta.activation@1.2.2?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/org.springframework.data/spring-data-jpa@2.7.5?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.springframework.data/spring-data-commons@2.7.5?type=jar",
+ "pkg:maven/org.springframework/spring-orm@5.3.23?type=jar",
+ "pkg:maven/org.springframework/spring-context@5.3.23?type=jar",
+ "pkg:maven/org.springframework/spring-aop@5.3.23?type=jar",
+ "pkg:maven/org.springframework/spring-tx@5.3.23?type=jar",
+ "pkg:maven/org.springframework/spring-beans@5.3.23?type=jar",
+ "pkg:maven/org.springframework/spring-core@5.3.23?type=jar",
+ "pkg:maven/org.slf4j/slf4j-api@1.7.36?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.springframework.data/spring-data-commons@2.7.5?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.springframework/spring-core@5.3.23?type=jar",
+ "pkg:maven/org.springframework/spring-beans@5.3.23?type=jar",
+ "pkg:maven/org.slf4j/slf4j-api@1.7.36?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.springframework/spring-orm@5.3.23?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.springframework/spring-beans@5.3.23?type=jar",
+ "pkg:maven/org.springframework/spring-core@5.3.23?type=jar",
+ "pkg:maven/org.springframework/spring-jdbc@5.3.23?type=jar",
+ "pkg:maven/org.springframework/spring-tx@5.3.23?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.springframework/spring-aspects@5.3.23?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.aspectj/aspectjweaver@1.9.7?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.springframework.boot/spring-boot-starter-security@2.7.5?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.springframework.boot/spring-boot-starter@2.7.5?type=jar",
+ "pkg:maven/org.springframework/spring-aop@5.3.23?type=jar",
+ "pkg:maven/org.springframework.security/spring-security-config@5.7.4?type=jar",
+ "pkg:maven/org.springframework.security/spring-security-web@5.7.4?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.springframework.security/spring-security-config@5.7.4?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.springframework.security/spring-security-core@5.7.4?type=jar",
+ "pkg:maven/org.springframework/spring-aop@5.3.23?type=jar",
+ "pkg:maven/org.springframework/spring-beans@5.3.23?type=jar",
+ "pkg:maven/org.springframework/spring-context@5.3.23?type=jar",
+ "pkg:maven/org.springframework/spring-core@5.3.23?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.springframework.security/spring-security-core@5.7.4?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.springframework.security/spring-security-crypto@5.7.4?type=jar",
+ "pkg:maven/org.springframework/spring-aop@5.3.23?type=jar",
+ "pkg:maven/org.springframework/spring-beans@5.3.23?type=jar",
+ "pkg:maven/org.springframework/spring-context@5.3.23?type=jar",
+ "pkg:maven/org.springframework/spring-core@5.3.23?type=jar",
+ "pkg:maven/org.springframework/spring-expression@5.3.23?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.springframework.security/spring-security-crypto@5.7.4?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/org.springframework.security/spring-security-web@5.7.4?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.springframework.security/spring-security-core@5.7.4?type=jar",
+ "pkg:maven/org.springframework/spring-core@5.3.23?type=jar",
+ "pkg:maven/org.springframework/spring-aop@5.3.23?type=jar",
+ "pkg:maven/org.springframework/spring-beans@5.3.23?type=jar",
+ "pkg:maven/org.springframework/spring-context@5.3.23?type=jar",
+ "pkg:maven/org.springframework/spring-expression@5.3.23?type=jar",
+ "pkg:maven/org.springframework/spring-web@5.3.23?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/ch.qos.logback/logback-classic@1.2.11?type=jar",
+ "dependsOn" : [
+ "pkg:maven/ch.qos.logback/logback-core@1.2.11?type=jar",
+ "pkg:maven/org.slf4j/slf4j-api@1.7.36?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.apache.logging.log4j/log4j-to-slf4j@2.17.2?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.slf4j/slf4j-api@1.7.36?type=jar",
+ "pkg:maven/org.apache.logging.log4j/log4j-api@2.17.2?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.apache.logging.log4j/log4j-api@2.17.2?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/org.slf4j/jul-to-slf4j@1.7.36?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.slf4j/slf4j-api@1.7.36?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.springframework.boot/spring-boot-starter-validation@2.7.5?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.springframework.boot/spring-boot-starter@2.7.5?type=jar",
+ "pkg:maven/org.apache.tomcat.embed/tomcat-embed-el@9.0.68?type=jar",
+ "pkg:maven/org.hibernate.validator/hibernate-validator@6.2.5.Final?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.hibernate.validator/hibernate-validator@6.2.5.Final?type=jar",
+ "dependsOn" : [
+ "pkg:maven/jakarta.validation/jakarta.validation-api@2.0.2?type=jar",
+ "pkg:maven/org.jboss.logging/jboss-logging@3.4.3.Final?type=jar",
+ "pkg:maven/com.fasterxml/classmate@1.5.1?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/jakarta.validation/jakarta.validation-api@2.0.2?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/org.springframework/spring-oxm@5.3.23?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.springframework/spring-beans@5.3.23?type=jar",
+ "pkg:maven/org.springframework/spring-core@5.3.23?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.springframework/spring-jcl@5.3.23?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.13.4?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/org.springframework.boot/spring-boot-devtools@2.7.5?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.springframework.boot/spring-boot@2.7.5?type=jar",
+ "pkg:maven/org.springframework.boot/spring-boot-autoconfigure@2.7.5?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.projectlombok/lombok@1.18.24?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/com.unboundid/unboundid-ldapsdk@4.0.8?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/org.snmp4j/snmp4j@2.5.6?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/org.openmuc/openiec61850@1.7.0?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.slf4j/slf4j-api@1.7.36?type=jar",
+ "pkg:maven/org.openmuc/jasn1-iec61850mod@1.10.0?type=jar",
+ "pkg:maven/ch.qos.logback/logback-classic@1.2.11?type=jar",
+ "pkg:maven/com.toedter/jcalendar@1.4?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.openmuc/jasn1-iec61850mod@1.10.0?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/com.toedter/jcalendar@1.4?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/io.cloudsoft.windows/winrm4j@0.12.3?type=jar",
+ "dependsOn" : [
+ "pkg:maven/io.cloudsoft.windows/winrm4j-client@0.12.3?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/io.cloudsoft.windows/winrm4j-client@0.12.3?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.apache.cxf/cxf-rt-transports-http@3.3.9?type=jar",
+ "pkg:maven/org.apache.cxf/cxf-rt-transports-http-hc@3.3.9?type=jar",
+ "pkg:maven/org.apache.cxf/cxf-rt-frontend-jaxws@3.3.9?type=jar",
+ "pkg:maven/org.apache.httpcomponents/httpcore-nio@4.4.15?type=jar",
+ "pkg:maven/org.apache.httpcomponents/httpclient@4.5.13?type=jar",
+ "pkg:maven/org.apache.httpcomponents/httpasyncclient@4.1.5?type=jar",
+ "pkg:maven/commons-io/commons-io@2.4?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.apache.cxf/cxf-rt-transports-http@3.3.9?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.apache.cxf/cxf-core@3.3.9?type=jar",
+ "pkg:maven/javax.annotation/javax.annotation-api@1.3.2?type=jar",
+ "pkg:maven/javax.xml.ws/jaxws-api@2.3.1?type=jar",
+ "pkg:maven/com.sun.activation/javax.activation@1.2.0?type=jar",
+ "pkg:maven/org.apache.geronimo.specs/geronimo-ws-metadata_2.0_spec@1.1.3?type=jar",
+ "pkg:maven/com.sun.xml.messaging.saaj/saaj-impl@1.5.3?type=jar",
+ "pkg:maven/org.jacorb/jacorb-omgapi@3.9?type=jar",
+ "pkg:maven/org.apache.geronimo.specs/geronimo-jta_1.1_spec@1.1.1?type=jar",
+ "pkg:maven/org.jboss.spec.javax.rmi/jboss-rmi-api_1.0_spec@1.0.6.Final?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.apache.cxf/cxf-core@3.3.9?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.glassfish.jaxb/jaxb-runtime@2.3.7?type=jar",
+ "pkg:maven/org.apache.ws.xmlschema/xmlschema-core@2.2.5?type=jar",
+ "pkg:maven/jakarta.xml.bind/jakarta.xml.bind-api@2.3.3?type=jar",
+ "pkg:maven/javax.annotation/javax.annotation-api@1.3.2?type=jar",
+ "pkg:maven/javax.xml.ws/jaxws-api@2.3.1?type=jar",
+ "pkg:maven/com.sun.activation/javax.activation@1.2.0?type=jar",
+ "pkg:maven/org.apache.geronimo.specs/geronimo-ws-metadata_2.0_spec@1.1.3?type=jar",
+ "pkg:maven/com.sun.xml.messaging.saaj/saaj-impl@1.5.3?type=jar",
+ "pkg:maven/org.jacorb/jacorb-omgapi@3.9?type=jar",
+ "pkg:maven/org.apache.geronimo.specs/geronimo-jta_1.1_spec@1.1.1?type=jar",
+ "pkg:maven/org.jboss.spec.javax.rmi/jboss-rmi-api_1.0_spec@1.0.6.Final?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.apache.ws.xmlschema/xmlschema-core@2.2.5?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/javax.xml.ws/jaxws-api@2.3.1?type=jar",
+ "dependsOn" : [
+ "pkg:maven/javax.xml.soap/javax.xml.soap-api@1.4.0?type=jar",
+ "pkg:maven/javax.annotation/javax.annotation-api@1.3.2?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/com.sun.activation/javax.activation@1.2.0?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/org.apache.geronimo.specs/geronimo-ws-metadata_2.0_spec@1.1.3?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/com.sun.xml.messaging.saaj/saaj-impl@1.5.3?type=jar",
+ "dependsOn" : [
+ "pkg:maven/jakarta.xml.soap/jakarta.xml.soap-api@1.4.2?type=jar",
+ "pkg:maven/org.jvnet.staxex/stax-ex@1.8.3?type=jar",
+ "pkg:maven/com.sun.activation/jakarta.activation@1.2.2?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.jacorb/jacorb-omgapi@3.9?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/org.apache.geronimo.specs/geronimo-jta_1.1_spec@1.1.1?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/org.jboss.spec.javax.rmi/jboss-rmi-api_1.0_spec@1.0.6.Final?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/javax.xml.soap/javax.xml.soap-api@1.4.0?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/jakarta.xml.soap/jakarta.xml.soap-api@1.4.2?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/org.jvnet.staxex/stax-ex@1.8.3?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/org.apache.cxf/cxf-rt-transports-http-hc@3.3.9?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.apache.cxf/cxf-core@3.3.9?type=jar",
+ "pkg:maven/org.apache.cxf/cxf-rt-transports-http@3.3.9?type=jar",
+ "pkg:maven/org.slf4j/slf4j-api@1.7.36?type=jar",
+ "pkg:maven/org.slf4j/jcl-over-slf4j@1.7.36?type=jar",
+ "pkg:maven/javax.annotation/javax.annotation-api@1.3.2?type=jar",
+ "pkg:maven/javax.xml.ws/jaxws-api@2.3.1?type=jar",
+ "pkg:maven/com.sun.activation/javax.activation@1.2.0?type=jar",
+ "pkg:maven/org.apache.geronimo.specs/geronimo-ws-metadata_2.0_spec@1.1.3?type=jar",
+ "pkg:maven/com.sun.xml.messaging.saaj/saaj-impl@1.5.3?type=jar",
+ "pkg:maven/org.jacorb/jacorb-omgapi@3.9?type=jar",
+ "pkg:maven/org.apache.geronimo.specs/geronimo-jta_1.1_spec@1.1.1?type=jar",
+ "pkg:maven/org.jboss.spec.javax.rmi/jboss-rmi-api_1.0_spec@1.0.6.Final?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.slf4j/jcl-over-slf4j@1.7.36?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.slf4j/slf4j-api@1.7.36?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.apache.cxf/cxf-rt-frontend-jaxws@3.3.9?type=jar",
+ "dependsOn" : [
+ "pkg:maven/xml-resolver/xml-resolver@1.2?type=jar",
+ "pkg:maven/org.ow2.asm/asm@9.0?type=jar",
+ "pkg:maven/org.apache.cxf/cxf-core@3.3.9?type=jar",
+ "pkg:maven/org.apache.cxf/cxf-rt-bindings-soap@3.3.9?type=jar",
+ "pkg:maven/org.apache.cxf/cxf-rt-bindings-xml@3.3.9?type=jar",
+ "pkg:maven/org.apache.cxf/cxf-rt-frontend-simple@3.3.9?type=jar",
+ "pkg:maven/org.apache.cxf/cxf-rt-transports-http@3.3.9?type=jar",
+ "pkg:maven/org.apache.cxf/cxf-rt-ws-addr@3.3.9?type=jar",
+ "pkg:maven/javax.annotation/javax.annotation-api@1.3.2?type=jar",
+ "pkg:maven/javax.xml.ws/jaxws-api@2.3.1?type=jar",
+ "pkg:maven/com.sun.activation/javax.activation@1.2.0?type=jar",
+ "pkg:maven/org.apache.geronimo.specs/geronimo-ws-metadata_2.0_spec@1.1.3?type=jar",
+ "pkg:maven/com.sun.xml.messaging.saaj/saaj-impl@1.5.3?type=jar",
+ "pkg:maven/org.jacorb/jacorb-omgapi@3.9?type=jar",
+ "pkg:maven/org.apache.geronimo.specs/geronimo-jta_1.1_spec@1.1.1?type=jar",
+ "pkg:maven/org.jboss.spec.javax.rmi/jboss-rmi-api_1.0_spec@1.0.6.Final?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/xml-resolver/xml-resolver@1.2?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/org.ow2.asm/asm@9.0?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/org.apache.cxf/cxf-rt-bindings-soap@3.3.9?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.apache.cxf/cxf-core@3.3.9?type=jar",
+ "pkg:maven/org.apache.cxf/cxf-rt-wsdl@3.3.9?type=jar",
+ "pkg:maven/org.apache.cxf/cxf-rt-databinding-jaxb@3.3.9?type=jar",
+ "pkg:maven/javax.annotation/javax.annotation-api@1.3.2?type=jar",
+ "pkg:maven/javax.xml.ws/jaxws-api@2.3.1?type=jar",
+ "pkg:maven/com.sun.activation/javax.activation@1.2.0?type=jar",
+ "pkg:maven/org.apache.geronimo.specs/geronimo-ws-metadata_2.0_spec@1.1.3?type=jar",
+ "pkg:maven/com.sun.xml.messaging.saaj/saaj-impl@1.5.3?type=jar",
+ "pkg:maven/org.jacorb/jacorb-omgapi@3.9?type=jar",
+ "pkg:maven/org.apache.geronimo.specs/geronimo-jta_1.1_spec@1.1.1?type=jar",
+ "pkg:maven/org.jboss.spec.javax.rmi/jboss-rmi-api_1.0_spec@1.0.6.Final?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.apache.cxf/cxf-rt-wsdl@3.3.9?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.apache.cxf/cxf-core@3.3.9?type=jar",
+ "pkg:maven/wsdl4j/wsdl4j@1.6.3?type=jar",
+ "pkg:maven/org.ow2.asm/asm@9.0?type=jar",
+ "pkg:maven/org.springframework/spring-core@5.3.23?type=jar",
+ "pkg:maven/org.springframework/spring-beans@5.3.23?type=jar",
+ "pkg:maven/org.springframework/spring-context@5.3.23?type=jar",
+ "pkg:maven/javax.annotation/javax.annotation-api@1.3.2?type=jar",
+ "pkg:maven/javax.xml.ws/jaxws-api@2.3.1?type=jar",
+ "pkg:maven/com.sun.activation/javax.activation@1.2.0?type=jar",
+ "pkg:maven/org.apache.geronimo.specs/geronimo-ws-metadata_2.0_spec@1.1.3?type=jar",
+ "pkg:maven/com.sun.xml.messaging.saaj/saaj-impl@1.5.3?type=jar",
+ "pkg:maven/org.jacorb/jacorb-omgapi@3.9?type=jar",
+ "pkg:maven/org.apache.geronimo.specs/geronimo-jta_1.1_spec@1.1.1?type=jar",
+ "pkg:maven/org.jboss.spec.javax.rmi/jboss-rmi-api_1.0_spec@1.0.6.Final?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/wsdl4j/wsdl4j@1.6.3?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/org.apache.cxf/cxf-rt-databinding-jaxb@3.3.9?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.apache.cxf/cxf-core@3.3.9?type=jar",
+ "pkg:maven/org.apache.cxf/cxf-rt-wsdl@3.3.9?type=jar",
+ "pkg:maven/javax.annotation/javax.annotation-api@1.3.2?type=jar",
+ "pkg:maven/javax.xml.ws/jaxws-api@2.3.1?type=jar",
+ "pkg:maven/com.sun.activation/javax.activation@1.2.0?type=jar",
+ "pkg:maven/org.apache.geronimo.specs/geronimo-ws-metadata_2.0_spec@1.1.3?type=jar",
+ "pkg:maven/com.sun.xml.messaging.saaj/saaj-impl@1.5.3?type=jar",
+ "pkg:maven/org.jacorb/jacorb-omgapi@3.9?type=jar",
+ "pkg:maven/org.apache.geronimo.specs/geronimo-jta_1.1_spec@1.1.1?type=jar",
+ "pkg:maven/org.jboss.spec.javax.rmi/jboss-rmi-api_1.0_spec@1.0.6.Final?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.apache.cxf/cxf-rt-bindings-xml@3.3.9?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.apache.cxf/cxf-core@3.3.9?type=jar",
+ "pkg:maven/javax.annotation/javax.annotation-api@1.3.2?type=jar",
+ "pkg:maven/javax.xml.ws/jaxws-api@2.3.1?type=jar",
+ "pkg:maven/com.sun.activation/javax.activation@1.2.0?type=jar",
+ "pkg:maven/org.apache.geronimo.specs/geronimo-ws-metadata_2.0_spec@1.1.3?type=jar",
+ "pkg:maven/com.sun.xml.messaging.saaj/saaj-impl@1.5.3?type=jar",
+ "pkg:maven/org.jacorb/jacorb-omgapi@3.9?type=jar",
+ "pkg:maven/org.apache.geronimo.specs/geronimo-jta_1.1_spec@1.1.1?type=jar",
+ "pkg:maven/org.jboss.spec.javax.rmi/jboss-rmi-api_1.0_spec@1.0.6.Final?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.apache.cxf/cxf-rt-frontend-simple@3.3.9?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.apache.cxf/cxf-core@3.3.9?type=jar",
+ "pkg:maven/org.apache.cxf/cxf-rt-bindings-soap@3.3.9?type=jar",
+ "pkg:maven/org.apache.cxf/cxf-rt-wsdl@3.3.9?type=jar",
+ "pkg:maven/javax.annotation/javax.annotation-api@1.3.2?type=jar",
+ "pkg:maven/javax.xml.ws/jaxws-api@2.3.1?type=jar",
+ "pkg:maven/com.sun.activation/javax.activation@1.2.0?type=jar",
+ "pkg:maven/org.apache.geronimo.specs/geronimo-ws-metadata_2.0_spec@1.1.3?type=jar",
+ "pkg:maven/com.sun.xml.messaging.saaj/saaj-impl@1.5.3?type=jar",
+ "pkg:maven/org.jacorb/jacorb-omgapi@3.9?type=jar",
+ "pkg:maven/org.apache.geronimo.specs/geronimo-jta_1.1_spec@1.1.1?type=jar",
+ "pkg:maven/org.jboss.spec.javax.rmi/jboss-rmi-api_1.0_spec@1.0.6.Final?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.apache.cxf/cxf-rt-ws-addr@3.3.9?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.apache.cxf/cxf-core@3.3.9?type=jar",
+ "pkg:maven/org.apache.cxf/cxf-rt-bindings-soap@3.3.9?type=jar",
+ "pkg:maven/org.apache.cxf/cxf-rt-ws-policy@3.3.9?type=jar",
+ "pkg:maven/javax.annotation/javax.annotation-api@1.3.2?type=jar",
+ "pkg:maven/javax.xml.ws/jaxws-api@2.3.1?type=jar",
+ "pkg:maven/com.sun.activation/javax.activation@1.2.0?type=jar",
+ "pkg:maven/org.apache.geronimo.specs/geronimo-ws-metadata_2.0_spec@1.1.3?type=jar",
+ "pkg:maven/com.sun.xml.messaging.saaj/saaj-impl@1.5.3?type=jar",
+ "pkg:maven/org.jacorb/jacorb-omgapi@3.9?type=jar",
+ "pkg:maven/org.apache.geronimo.specs/geronimo-jta_1.1_spec@1.1.1?type=jar",
+ "pkg:maven/org.jboss.spec.javax.rmi/jboss-rmi-api_1.0_spec@1.0.6.Final?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.apache.cxf/cxf-rt-ws-policy@3.3.9?type=jar",
+ "dependsOn" : [
+ "pkg:maven/wsdl4j/wsdl4j@1.6.3?type=jar",
+ "pkg:maven/org.apache.cxf/cxf-core@3.3.9?type=jar",
+ "pkg:maven/org.apache.neethi/neethi@3.1.1?type=jar",
+ "pkg:maven/javax.annotation/javax.annotation-api@1.3.2?type=jar",
+ "pkg:maven/javax.xml.ws/jaxws-api@2.3.1?type=jar",
+ "pkg:maven/com.sun.activation/javax.activation@1.2.0?type=jar",
+ "pkg:maven/org.apache.geronimo.specs/geronimo-ws-metadata_2.0_spec@1.1.3?type=jar",
+ "pkg:maven/com.sun.xml.messaging.saaj/saaj-impl@1.5.3?type=jar",
+ "pkg:maven/org.jacorb/jacorb-omgapi@3.9?type=jar",
+ "pkg:maven/org.apache.geronimo.specs/geronimo-jta_1.1_spec@1.1.1?type=jar",
+ "pkg:maven/org.jboss.spec.javax.rmi/jboss-rmi-api_1.0_spec@1.0.6.Final?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.apache.neethi/neethi@3.1.1?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/org.apache.httpcomponents/httpcore-nio@4.4.15?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/org.apache.httpcomponents/httpclient@4.5.13?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.apache.httpcomponents/httpcore@4.4.15?type=jar",
+ "pkg:maven/commons-codec/commons-codec@1.15?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.apache.httpcomponents/httpcore@4.4.15?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/commons-codec/commons-codec@1.15?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/org.apache.httpcomponents/httpasyncclient@4.1.5?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/commons-io/commons-io@2.4?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/com.fasterxml.woodstox/woodstox-core@5.3.0?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.codehaus.woodstox/stax2-api@4.2?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.codehaus.woodstox/stax2-api@4.2?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/org.apache.commons/commons-lang3@3.6?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/commons-net/commons-net@3.6?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/com.h2database/h2@1.4.199?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/ch.qos.logback/logback-core@1.2.11?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/io.jsonwebtoken/jjwt-api@0.10.5?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/io.jsonwebtoken/jjwt-impl@0.10.5?type=jar",
+ "dependsOn" : [
+ "pkg:maven/io.jsonwebtoken/jjwt-api@0.10.5?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/io.jsonwebtoken/jjwt-jackson@0.10.5?type=jar",
+ "dependsOn" : [
+ "pkg:maven/io.jsonwebtoken/jjwt-api@0.10.5?type=jar",
+ "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.13.4.2?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.antlr/antlr-complete@3.5.3?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.antlr/antlr@3.5.3?type=jar",
+ "pkg:maven/org.antlr/antlr-runtime@3.5.3?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.antlr/antlr@3.5.3?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.antlr/antlr-runtime@3.5.3?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.antlr/antlr-runtime@3.5.3?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/com.hynnet/tinyradius@1.0?type=jar",
+ "dependsOn" : [ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/src/LCT.PackageIdentifier.UTest/PackageIdentifierUTTestFiles/MavenDevDependency/WithDev/bom.cdx.json b/src/LCT.PackageIdentifier.UTest/PackageIdentifierUTTestFiles/MavenDevDependency/WithDev/bom.cdx.json
new file mode 100644
index 00000000..9f8ef7c0
--- /dev/null
+++ b/src/LCT.PackageIdentifier.UTest/PackageIdentifierUTTestFiles/MavenDevDependency/WithDev/bom.cdx.json
@@ -0,0 +1,9407 @@
+{
+ "bomFormat" : "CycloneDX",
+ "specVersion" : "1.3",
+ "serialNumber" : "urn:uuid:b3198003-8000-4ad8-8475-db750977aaa2",
+ "version" : 1,
+ "metadata" : {
+ "timestamp" : "2023-06-22T09:12:41Z",
+ "tools" : [
+ {
+ "vendor" : "OWASP Foundation",
+ "name" : "CycloneDX Maven plugin",
+ "version" : "2.7.1",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "538c878ebf89b372876e247d056a3fc5"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "4561e50edb47e12a03712b1afce9b20cba32fd28"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "f0ea7b3bcf5c7ba649b8d9807e805385330501881677d47333aebce8305ef4d4"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "a35400ca6411692ae8964fe7030eaba2a83a2fa50e2883def3054191283c3b48e2dcdd68bf80f5a0ede3898cc6b7cb7b998aacd2c1e969320053c43b6ab8d873"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "75c0c03a03c69e82ad1f7b942d6d733da8261c4058174355d6b24ebd88cee34180f2e8484d2b0fedaf459078bdf6e927"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "98cd312d4dfc104a0a66d65023d0aade423f08951f2a9e0215e703f0c81c4f274d8e11a2db1abc30a558b820d65860c4"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "0c5fd65013128de457b049a824c4ad11212d668b503613ce19a54d545e5cf82d"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "72ea0ed8faa3cc4493db96d0223094842e7153890b091ff364040ad3ad89363157fc9d1bd852262124aec83134f0c19aa4fd0fa482031d38a76d74dfd36b7964"
+ }
+ ]
+ }
+ ],
+ "component": {
+ "publisher": "test",
+ "group": "br.com.test",
+ "name": "test-backend",
+ "version": "01.23.00",
+ "description": "Substation Device Monitoring - Backend",
+ "licenses": [
+ {
+ "license": {
+ "id": "Apache-2.0"
+ }
+ }
+ ],
+ "purl": "pkg:maven/br.com.test/test-backend@01.23.00?type=jar",
+ "externalReferences": [
+ {
+ "type": "website",
+ "url": "http://www.test.com/"
+ },
+ {
+ "type": "vcs",
+ "url": "https://github.com/spring-projects/spring-boot/sdmct/test-backend"
+ }
+ ],
+ "type": "library",
+ "bom-ref": "pkg:maven/br.com.test/test-backend@01.23.00?type=jar"
+ }
+ },
+ "components" : [
+ {
+ "publisher" : "Pivotal Software, Inc.",
+ "group" : "org.springframework.boot",
+ "name" : "spring-boot-starter-web",
+ "version" : "2.7.5",
+ "description" : "Starter for building web, including RESTful, applications using Spring MVC. Uses Tomcat as the default embedded container",
+ "scope" : "optional",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "5cf782727add6bfc7c778162222133e5"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "bb4099d0466a62c3b11ab9323babca13bb430a2e"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "75bcf5c2e5103dd5fa16c82bb3387d0ae3cfb82e91a378bab4c644dd0538552f"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "884020f2121346480bb5928ffa7a9cadaa5cc17aad396c800c68a84c1c4dfb18a5a4540c293eade0af003490c2a750061316cc7d42b6fe40fe81723057fdac9f"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "d201f146382307e41d6777ced391942e295c76c4452d6fef5cfa18e1cce8e2b121bfda04c6f5df9a725a6bafd974dc3f"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "9b8721ce15307aeaf7d99a5ae3b4e947cb69fbf96cf7358c54790a04b3990e2cfcbacee04e2f505ca0c49c0831641e9b"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "62d41a23ae42115bd881cce16b5dcc9de814a4ef08b7515f7d2a93ddf5a67fc5"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "1bad0469d0042a4e4fa0d1d1ef2dea965011fe887945e896d1e6ad8e5b9f5c18e67d748c790135ac478124c021da32324dba92cd60670bc46228a28c170698cc"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.springframework.boot/spring-boot-starter-web@2.7.5?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://spring.io"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/spring-projects/spring-boot/issues"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/spring-projects/spring-boot"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.springframework.boot/spring-boot-starter-web@2.7.5?type=jar"
+ },
+ {
+ "publisher" : "Pivotal Software, Inc.",
+ "group" : "org.springframework.boot",
+ "name" : "spring-boot-starter",
+ "version" : "2.7.5",
+ "description" : "Core starter, including auto-configuration support, logging and YAML",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "97c7fe599ea0a94e13f938e41ae583e8"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "c28e1546461803490588085345ba5d2897d232bc"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "142e8a6de770ad2ff5d788edc1ee9efe44fbfc24569e5d9b914013026bc33dc4"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "131e4ed9aa01c66516815ab86cf2afca382054604c953dd4dea418c269d4ba215483780bff21e63d55b1239f046780676d6683c0a8487420fb04f1fdacea7806"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "8de4a7df93c12f08cffa1d4af9662cd12b4cd7c6f35b49979e99b389d16f71e31a8e36d17ff389b9ae966efa942cbc4e"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "4efa105dc7708fae97edb5d10fce1dfc5ece0e25593c365ddd82451fbfd908206ed4c5257f3e77b1575d1b1563e26008"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "a942615da0d8f800497defd2983ec7efa9c4d11f6f5ff5a411084c53c0dcc0a9"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "54ff50fd33e31db983fca7e5be224864c7b6063f9ce270d28e2ad12886c988eaa2315fcd50f14b5eb5b68ef3da6ce463e16c17c7d6d97ebf9ad08b7663cadd6b"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.springframework.boot/spring-boot-starter@2.7.5?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://spring.io"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/spring-projects/spring-boot/issues"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/spring-projects/spring-boot"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.springframework.boot/spring-boot-starter@2.7.5?type=jar"
+ },
+ {
+ "publisher" : "Eclipse Foundation",
+ "group" : "jakarta.annotation",
+ "name" : "jakarta.annotation-api",
+ "version" : "1.3.5",
+ "description" : "Jakarta Annotations API",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "8b165cf58df5f8c2a222f637c0a07c97"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "59eb84ee0d616332ff44aba065f3888cf002cd2d"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "85fb03fc054cdf4efca8efd9b6712bbb418e1ab98241c4539c8585bbc23e1b8a"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "d1acff146c0f9ea923a9325ad4c22ba2052ec474341ab8392abab7e8abd3ca010db2400ff9b5849fc4f1fa5c0a18830eb104da07a13bd26b4f0a43d167935878"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "004a4bde333c0575f72df1cb9cf95ee0c6c7f738a6f0f723a5ec545aaa1664abeb82f01627708a1377e3136754fb7859"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "abcc5b1fbad59b3e9b6d2d6195ec11d6254f689116c534a964724b61f815cca60ba3a2c1489933403f3f78dc54fd20a6"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "3d3ef16365e7a0357d82f874fa26b2b0a146cf7bf98a351c65ef1586444fa009"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "88625a8811be514851209291344df32478b527bc7838ddee58752269bf2457ae8f4e6b6a0d0b5c18522e287ba6df1def0cb19dee2b85e01ee21f0b48ac2630d3"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "EPL-2.0"
+ }
+ },
+ {
+ "license" : {
+ "id" : "GPL-2.0-with-classpath-exception"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/jakarta.annotation/jakarta.annotation-api@1.3.5?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/eclipse-ee4j/common-annotations-api/issues"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "https://dev.eclipse.org/mhonarc/lists/ca-dev"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/eclipse-ee4j/common-annotations-api"
+ },
+ {
+ "type" : "website",
+ "url" : "https://www.eclipse.org"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/jakarta.annotation/jakarta.annotation-api@1.3.5?type=jar"
+ },
+ {
+ "publisher" : "Pivotal Software, Inc.",
+ "group" : "org.springframework.boot",
+ "name" : "spring-boot-starter-json",
+ "version" : "2.7.5",
+ "description" : "Starter for reading and writing json",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "78f7430ef43f9a18e56de79a8f40ee71"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "9c7df04ff37b2e7471632ddeb4a296c5fb6bddee"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "b8b941e9d26bb7b28713251b53711786872e2cd4b06d7c231b26eeef3c44e305"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "4df8ace3465051c91f3ca7931972a707f4ce89db685e74140ac7cb7ec5d4c513a937c4e148ccb9b4f5d923cb5c284a18d7ce71aae55c9ec98c2db5b046c76e80"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "a7dbe57fd28c741fd40b58c49ccca9dee5b4f6b1a84dc3c077fecaca5dd1902ca19cd80f66604a77dbcb5a1fbf1a26c6"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "217d3c0a6ae9383c56ef5179cac0c81944af65dd95a1061902f15a6b508a62ab0180103891fa1acc496157f7b184e1fd"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "da8163019d72e3556356b055a72fa2e1266a243bce3cb5bf2087f2ca066082e5"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "59b39563ccbb91059f1f62c64857ba27c983f2bbce69a3811f0c4b6e334b5657a6a697fa158375473d96320181bc02e52910a1d3a31bbbc29b3293e46a53929a"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.springframework.boot/spring-boot-starter-json@2.7.5?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://spring.io"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/spring-projects/spring-boot/issues"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/spring-projects/spring-boot"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.springframework.boot/spring-boot-starter-json@2.7.5?type=jar"
+ },
+ {
+ "publisher" : "FasterXML",
+ "group" : "com.fasterxml.jackson.datatype",
+ "name" : "jackson-datatype-jdk8",
+ "version" : "2.13.4",
+ "description" : "Add-on module for Jackson (http://jackson.codehaus.org) to support JDK 8 data types.",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "c5c20325ffc71b3cce65f4fc388d01b9"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "557dbba5d8dfc7b7f944c58fe084109afcb5670b"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "fc568852020844d753d12d93c5ac25ef545792ac4926b3075e81c42ac32e606e"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "061f5d68bf1f25b924673ee966273e48d02d72080ee84bd148a7a4a746aa4995eba46f6770f95b5e19dd701bdbd09d3806c255d1edbb9662e16c79be58b7dd2e"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "a59fd8dbe08205457307fe117bc630230fdfc55333099e59ec2120fc998ecf98b037e5cb7ec44b5a4907fd7908b8fbb6"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "3a1bd603d690773c9a37b59863798b9634a098bcc9b5ac17655485066d89faa755a4f31f741adf9828811a2a0087c0e7"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "2cd081c83e00041faa4aefea2537aecee82429f7088969b25d7d75e9b415aade"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "3b334c458965ac32a8bac956a146d8950bad76fb0a56ed508d03bf6ac84c5edadd7634f40ea3145c02cb87c7c7c1382f2403f1bd667a9b546fbd40be3ba507b3"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/com.fasterxml.jackson.datatype/jackson-datatype-jdk8@2.13.4?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/FasterXML/jackson-modules-java8/issues"
+ },
+ {
+ "type" : "vcs",
+ "url" : "http://github.com/FasterXML/jackson-modules-java8"
+ },
+ {
+ "type" : "website",
+ "url" : "http://fasterxml.com/"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/com.fasterxml.jackson.datatype/jackson-datatype-jdk8@2.13.4?type=jar"
+ },
+ {
+ "publisher" : "FasterXML",
+ "group" : "com.fasterxml.jackson.module",
+ "name" : "jackson-module-parameter-names",
+ "version" : "2.13.4",
+ "description" : "Add-on module for Jackson (http://jackson.codehaus.org) to support introspection of method/constructor parameter names, without having to add explicit property name annotation.",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "46c63416748a27d334e891e64a1867c3"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "858ccf6624b5fac6044813e845063edb6a62cf37"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "e67856b02a988768784c5a675c0ad5c17e330cd78375ef39e740cbf04879d363"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "0d925ac80fa2feb7b805bb4473046a33e2a0f5902262611d17e3934f6b4d714ed5e312010a572eb9409fbe44d6d7c22bf44eba9115b82c51f9dcceb2ac8c0051"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "c725e0896bb8e1e2857aeb8f363fa48aca5bc7213197667ec39f693c95efadb5e02977ca0ed0fe6056edd06db9a73bf5"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "4120dec8df4dc9c1187d0c79bdc6fbd3404c14f79bfafbd2cad43c8d1a62483e5526d103767c9bba9e7cfae08b50125e"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "5f855f462cec866aec690ae32eb4199e1897540cf4e5900f8dd3566d48a7027f"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "34f5bf770950caf2b2065dffe643613c4789e12920bcb9e6761fb7e38e73d3d0057a58d43219ea1870f271ff7c137fa4b4e090197d20c592d6f2f8cd611ba100"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/com.fasterxml.jackson.module/jackson-module-parameter-names@2.13.4?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/FasterXML/jackson-modules-java8/issues"
+ },
+ {
+ "type" : "vcs",
+ "url" : "http://github.com/FasterXML/jackson-modules-java8"
+ },
+ {
+ "type" : "website",
+ "url" : "http://fasterxml.com/"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/com.fasterxml.jackson.module/jackson-module-parameter-names@2.13.4?type=jar"
+ },
+ {
+ "publisher" : "Pivotal Software, Inc.",
+ "group" : "org.springframework.boot",
+ "name" : "spring-boot-starter-tomcat",
+ "version" : "2.7.5",
+ "description" : "Starter for using Tomcat as the embedded servlet container. Default servlet container starter used by spring-boot-starter-web",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "4f11edfc254bdd5c45bd40f430e1179a"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "eb7849c52953de44d9712adf45398ccb1a7d4295"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "b2c454279799a43ac0e2c9b65fceff6d279a38e82d96f4ca9e4898f1162811f2"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "d2cec869939e241e12155f194ebc0d505a7ecc47f6db8f270389543d0f05e37306619cfecdb93438f9291b04ec8cadbdd2915f25b51e481926d8080c9f5d32fd"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "4405c5f7a110c5e76567c920c4139bfec49cd46a8785b9a851a83724901c29645498e7c0c654e93c4569c3aafc7b76db"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "9b6a726e0d39ad452f644ff186087a5ea48d41902d5a470028fd9c4d0700a7ae9e9fa0b29370a6c1825c43b305c2dfcf"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "da649a29ee5ada69a2aa02d50d20ceddf33860f06a2d7f4e09e40555be98542e"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "d420990c6da1696b54213eba86ae9514bab72bdda64b6c8758c1a42f5ccc128a118b4575144908ea5f5e85c38d72777cbf7b7c7c45928b18a70ff265e4446e39"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.springframework.boot/spring-boot-starter-tomcat@2.7.5?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://spring.io"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/spring-projects/spring-boot/issues"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/spring-projects/spring-boot"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.springframework.boot/spring-boot-starter-tomcat@2.7.5?type=jar"
+ },
+ {
+ "group" : "org.apache.tomcat.embed",
+ "name" : "tomcat-embed-core",
+ "version" : "9.0.68",
+ "description" : "Core Tomcat implementation",
+ "scope" : "required",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "e623e590ec70239dd4379c7729823034"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "caafeb87d6ff30adda888049c9b81591c7cc20d1"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "b6b86db980382a452a3fd88c694957891c5de9b08569e688968de96ad61b0af2"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "353072e38e590ed18558df1de544672f4f68210e11088299ad34ebbea4a6858a726f911d03fb8b4844e305bfa89293439efd6186bd96405fbfa523a0862de773"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "a9c274d5881afdb03cc8151ac3f4d55e5101da0fc369b80d417c8d6374ef891324ae1799487ab27820cd3d98e4e3ec87"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "e2a6d3625785d3542473d14769b25f30f9f0c96931ec3e61dd7040a291eedcd4ef42d522221da855f4fa45ee80de6d04"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "26514bae3b20883b5aa6816a0640da10b561fdc33fb283a5d3aed9b0b790e040"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "130352063f8c0ac67e19f1f71668f787f7d6dedfd35a6a88127b7d546f09c05ef3fe026dbb5f4771405023f84b635190260b189ebde9539057c5d50ab082161e"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.apache.tomcat.embed/tomcat-embed-core@9.0.68?type=jar",
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.apache.tomcat.embed/tomcat-embed-core@9.0.68?type=jar"
+ },
+ {
+ "group" : "org.apache.tomcat.embed",
+ "name" : "tomcat-embed-websocket",
+ "version" : "9.0.68",
+ "description" : "Core Tomcat implementation",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "c3d042c2cf0c0fdbbff506012ffc133b"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "15fc94001bb916a808631422a6488a678496ef94"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "7e6244ba5d189713125d83682125e6aff0c10aaf97ab1c45a46bf3dfdd59661c"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "e850b7acadf64222733ca5b33d4fed0524103f35a15e65bc49fae1869293be1e2a92de7998471393793cefffb555e26f26b608bebc25d7fb413f96c6d5ec539d"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "e46dc68d9886772c8518df7d8aab0ea5cf5134352b606cb969bd2c0fc289a6ad83450c519fda98c61674d6307b29e9bb"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "a987e920e2b997d052a3c996a342d858c4870122ba574695acc2204c779c368452fa52065fcd41fdd58c7203757eb4c6"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "dc77e0dd1f6af3673bcef52b3cac25c7b682db4738c7099b41c4488318052101"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "824b3aa5f94d9dc190e5ac48d3b2b25b1a10c7579115af40c53d0abeb4d420c4e4ccb014b4d9229dc1c1df3cf177991900591722ecd009beac2b62312378f23c"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.apache.tomcat.embed/tomcat-embed-websocket@9.0.68?type=jar",
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.apache.tomcat.embed/tomcat-embed-websocket@9.0.68?type=jar"
+ },
+ {
+ "publisher" : "Spring IO",
+ "group" : "org.springframework",
+ "name" : "spring-web",
+ "version" : "5.3.23",
+ "description" : "Spring Web",
+ "scope" : "required",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "19c1f44c123f1bed8e36816f64c873ae"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "0193f5276092d9cbe3222c63885b47ca7b2cce97"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "e1c834322e379f0d650abf348d4da060ca7cc700fc4f548392852f7987114569"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "7245e8c2ed0fc96b50bf9a33f2b5085d9d1c47c84c6d54592c61933ecd9c549db8774158a580611c26e5e4edc9f9f80c67f743d8962ce325f6074b501556f698"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "54edac1cc42952bb1a5dfa218ac8fa8408b1901dd7bd35a4b59f28e18a973f2e757c3ae8432aa24c941b6c455213e5ea"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "c2451ec2e379c576fc8fc840ce7bf6dab7f4d96bba1a0042e8857d90363b9126a30e416836f4f5e3573e9c14717975db"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "fba0dd45a2f66fa7e70fa8b3cd1a99164a1dd48fb519b7b7f8620074f8b329ff"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "b4ee7c9307b1d2e8107db898616dcd01450cc858ec98045dfa29c0b9bd0f398ecc6ed29ea5f02a60e9243674fd49ae43eefd3841d962d1e24dda50affd5916a2"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.springframework/spring-web@5.3.23?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://spring.io/projects/spring-framework"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/spring-projects/spring-framework/issues"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/spring-projects/spring-framework"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.springframework/spring-web@5.3.23?type=jar"
+ },
+ {
+ "publisher" : "Spring IO",
+ "group" : "org.springframework",
+ "name" : "spring-webmvc",
+ "version" : "5.3.23",
+ "description" : "Spring Web MVC",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "4085c2870c380281c38dc9a9a340910a"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "b163527c275b0374371890c0b76c2a2a09f9804b"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "140ed250ef7344082f179f7273b41dd131f8b3bc8c09c361ea2100614272ca6b"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "a75aa47852370a5147739f16930197e40529d5a8d97d55a08b42aab0d4c9162c32b9bd92c7a53c488e42300f06616a05988dae7ea9c8d512ab0ecd806c988c29"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "8b7ed7ee73e28c25c0e0c5abeef7e49ddd8b4be5d8ed2c69e45d4dfacb6fd79af77295f6b3dee1090981f4f7a13dd22a"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "a12ee65866822e993375629b218e913924a9ce558ec83766e1f60c5397cdb957c6807c21cd5a0d3c9d3178fe3ee09067"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "abaab471b9303d7230bcae3e40b15bb68f5a350c2346569add8a4c843b108316"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "1746cc5bb9ce389063c4d893352032ab1b576b0965649e03d905bf83d1a4572e6f0417fc1f70d40bb46478e3b4e2dc22fce9997ea6b6dd12693a51ca5e535fc9"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.springframework/spring-webmvc@5.3.23?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://spring.io/projects/spring-framework"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/spring-projects/spring-framework/issues"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/spring-projects/spring-framework"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.springframework/spring-webmvc@5.3.23?type=jar"
+ },
+ {
+ "publisher" : "Spring IO",
+ "group" : "org.springframework",
+ "name" : "spring-context",
+ "version" : "5.3.23",
+ "description" : "Spring Context",
+ "scope" : "required",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "46c0dbad4be399fa6b5b3db33c2f1e2a"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "530b36b2ce2c9e471c6a260c3f181bcd20325a58"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "23ead0de51a5215526d961160d18baaea18b1fa2261e5ed50c3cfb2551ff6382"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "39ec855b2856f0627329eed6b9c5e6aa4661f4be2cbb2a04efb95f148c9dfe2cdd50e4cb1a8ca965feda999eba37e1b968bf17502863d08565757b9534ccc23e"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "9fc1c3dc0ca4b8e3d1a1d03d69868dfe7d5ebb484e4e2a9349360787ea805dd52a50780ea56de3768d8d2725b22e5b6a"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "72573bd3c9feec6167c3b989dd54a2727f159a1238fa5c25b607d09d75b1255648231603553c46a64e25033d461ac5c3"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "7e5adf0ce98542cdffc18a81bf295a08b4d02d1e0b3b0c25de7ec432179b5523"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "1557d5834dbbcdfacaa82f17e635a426203196aaed1cd8169871416368b2862232f987e2658c8ec73961dc50f46b6ced43df8ef7a4e08e171550c88dd3a8033f"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.springframework/spring-context@5.3.23?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://spring.io/projects/spring-framework"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/spring-projects/spring-framework/issues"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/spring-projects/spring-framework"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.springframework/spring-context@5.3.23?type=jar"
+ },
+ {
+ "publisher" : "Spring IO",
+ "group" : "org.springframework",
+ "name" : "spring-expression",
+ "version" : "5.3.23",
+ "description" : "Spring Expression Language (SpEL)",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "561b0a8c63dccf2a3f67e26bc4708979"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "3a676bf4b9bc42bd37ab5ad264acb6ceb63397a2"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "0976b322a7feb20f90691b2b64e22c5240518cd8721bf6fb2c8da90521665c5a"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "517618300a4c1155739a3ab23a771e3fd2023fe8c5da844fdae50d4a7395235384e755e34c81ec1cc7c39e6c26433649a9f83d9fda42bb501d8eb01408843f2e"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "623bbdf25b44a12464f0b7a2f50b8969a44aba5fc3b539c025821be1af62e4aab2399b0977f2a6cd83457200747dbfc2"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "52bcae7739144442716b0a97eba5bd1accf53ca84b7ce47d80c5bfeb1bf7a2a637b08c5aa34c5c9bf2ce7862622df6cf"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "08e476ef9c73ce0c4eae1ca532b25dc5ef4f4955e8dbb3d36cf3b7ae450790f1"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "ff5027bf6b7c5f4456e5d7c800003b0825b97ac82763cde804833383a198aa20455a17173b01bfee1c86b2ec907e9b2db687263066147353fafe0f9adb80cefa"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.springframework/spring-expression@5.3.23?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://spring.io/projects/spring-framework"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/spring-projects/spring-framework/issues"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/spring-projects/spring-framework"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.springframework/spring-expression@5.3.23?type=jar"
+ },
+ {
+ "publisher" : "Pivotal Software, Inc.",
+ "group" : "org.springframework.boot",
+ "name" : "spring-boot-starter-websocket",
+ "version" : "2.7.5",
+ "description" : "Starter for building WebSocket applications using Spring Framework's WebSocket support",
+ "scope" : "optional",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "9925243079553a3f01379563e9331721"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "0fef1dcd9a493c2453a6b0a17bec0141a855fb93"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "fdf32e7e22196f88c88bb4b519e9e50edb6df417647dd950bb5f4c6ee2e1bd6c"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "a0bf73406cf4d4d83152ba602b3258077b975d54de2ffcce1c13f50da461d52935bc8e6e8e949ffa4d3ebd7c170aa1465495ade693497ad4a611aaac63ca1b34"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "60379760e2f38da82e18548b5a396c8fc9d6f04c1e47a1841acb13d986a28ec62b44fa37d1249817683ca7639501b792"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "12d547d8d722484536a964148d06b6d5925ab2d05a77716409e92d33e14f619d9bb9eaf8d599e44d84ab849cc590cf3f"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "1a19ce0da17330c0c10815515139710f6d1ebcd4276cb09ac76494367c69d2a0"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "0bb5c6aa826b8ab2d79ad4571aa2163d6672cca2b88d264c9259e3fcf8aaf0d8bda6700453b58829878b0db8447a0d01f893a25c22336845e26412599dd9867e"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.springframework.boot/spring-boot-starter-websocket@2.7.5?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://spring.io"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/spring-projects/spring-boot/issues"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/spring-projects/spring-boot"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.springframework.boot/spring-boot-starter-websocket@2.7.5?type=jar"
+ },
+ {
+ "publisher" : "Spring IO",
+ "group" : "org.springframework",
+ "name" : "spring-messaging",
+ "version" : "5.3.23",
+ "description" : "Spring Messaging",
+ "scope" : "required",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "c63a9d1d936ad785861c67cbb3f300b6"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "ba45e1d5cbafca683baa5d801b779eba1f4adaee"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "8fc60fb2ca529424b0d9eb863797a3716a7daf3a83d72e33617d5197b33bd4b2"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "ffda2d668a6af463646f73d6ef829ceb328f37ac562d4f5d9a61c03d67b416d8f20094a0598ff1bdfe2dc4b7f0c00d8e8a29c15063ae7d56a429042a3ab14ff4"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "3d81bdfe751d2b73e3d4969e42477c9729272698bb0b253214d04ef43829bcb8221ab6d285f60d21f8345b82c844ee38"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "fce88f3424f0c6600e7153c98abb7ada96db031930d2bf641410adcecb7a8a015ca3ee32b1e4d62a88e6d9b3898da8b1"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "d2780ae7990a521f4c8500b280a5de85b84812d3db0fde2ecfaa42f52da57852"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "eb197bbd7db5c0f0242d31f9e5a175bb23e53d4c2b7e0395dacc404c90490f24cfc7ff7ad23f52f7d00884fcb666f962a8fb4ddf9401691097dcf09750e1aa4d"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.springframework/spring-messaging@5.3.23?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://spring.io/projects/spring-framework"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/spring-projects/spring-framework/issues"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/spring-projects/spring-framework"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.springframework/spring-messaging@5.3.23?type=jar"
+ },
+ {
+ "publisher" : "Spring IO",
+ "group" : "org.springframework",
+ "name" : "spring-websocket",
+ "version" : "5.3.23",
+ "description" : "Spring WebSocket",
+ "scope" : "required",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "a2a8cdda00b43f994f964372beb24068"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "28c5d2ab4ab1f0fec2ca68c502576a91d552c356"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "571599458726aae784560193fbcefe67d05f7da89b3242b9e6aeaab4dc1182ff"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "8070c9b4f524839b0cc5fbad5554c21ff1ed5805e67632eed2533bec3de32858fcb48c620f36c857d20211b9897005c4a297e0bb6047b37f033223bf2ba73256"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "36994cf4bfe27136586ce33a1d00c7b2eeec84c20ccb1bb2b6974c548d6bdcabde954deb0f5dd1dfbafcb318229cfa56"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "8d42c4522688173f45969bfe6c8f7c4c334ef9e526aace23ef9835014a793357564f47e10f3db8d89615570794272890"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "4b3236ab816cff8bcfa11d7e78e081fb98267650e041724e9a26511e5d7bed46"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "dbc3e45ba5b676f211f74889828a44489a50e18c7c06be55001d4e117bccf189c2706978f96cc312126dd0cb7873ac0034932ade60f0a2f70257843b5f4ec6e4"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.springframework/spring-websocket@5.3.23?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://spring.io/projects/spring-framework"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/spring-projects/spring-framework/issues"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/spring-projects/spring-framework"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.springframework/spring-websocket@5.3.23?type=jar"
+ },
+ {
+ "publisher" : "Pivotal Software, Inc.",
+ "group" : "org.springframework.boot",
+ "name" : "spring-boot-starter-data-jpa",
+ "version" : "2.7.5",
+ "description" : "Starter for using Spring Data JPA with Hibernate",
+ "scope" : "optional",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "fb1647e45cd440d75d006cd98e3837a5"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "b83184467079d5b808fb2f9fbc858b1804975808"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "6a3b6db4cebdd32db94497975f0ed6b84a336e62aa4ba5ca0e56eb80ccf3547c"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "a01fb4914d0a018016a542933ee28edb4782a2687bc0ad2d5269bfc3dc624c9bd7f44da7c9aaae61b68fa0220b188e226a13a352e9ca2242afca06ea5309a2ef"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "2aa581f74ec521558db8797aeef1d2d7ce2b2ad0fa407bee6054acd1b6286fe614d08ab2a65de74e0895954717696aec"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "9c83678b33b95ca136d320a0e389b03d54cf3a7b2ffb913eb4a67b4d7f048a3b427be5183c4de951a0e098841b6ae216"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "8fd06df9c8853db5f41f7906b2edf792259bd567e66019ce65e8d142551b9722"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "3c3a54d6ac0b5a162aa9aea159e2145dbbf845602ab7e0cf412c72afc1a57773f1eca0a4236bbd06809a8ca4ddb15ebd2cd0233f29da6566e192efe54e2daaf1"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.springframework.boot/spring-boot-starter-data-jpa@2.7.5?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://spring.io"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/spring-projects/spring-boot/issues"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/spring-projects/spring-boot"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.springframework.boot/spring-boot-starter-data-jpa@2.7.5?type=jar"
+ },
+ {
+ "publisher" : "Pivotal Software, Inc.",
+ "group" : "org.springframework.boot",
+ "name" : "spring-boot-starter-aop",
+ "version" : "2.7.5",
+ "description" : "Starter for aspect-oriented programming with Spring AOP and AspectJ",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "2ddc091bc12be952017ecdd13b72a18d"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "ea4b85395faaa3a382f2a582e4bf023d088d320e"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "0205455d5c819c78ca89f8e5304cfb65f7a8212197e11ee40a2b0623c3a5b07f"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "09b1f86c0c8559d92ac3ff30b0bc048b65c7acc141d152fae36b6e7db4ae651b32f31a2a606c33fd02068fed531b19f5cdbb6006b522d9e48bd06e09bf87e182"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "ca0f0917354c447c62eaa4c16c41c1ff892650fbe45ac545c3cf90c92fd88a3b7c5c9b9bda596e088e84f5de74e38878"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "fba086ec4ea9f810c7e6bfec51e83992f5ae0c13eafc64889ec52e339876102852a06982738fcf5b7c2a518d78f19127"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "4387fa467b2ee4051afeae0c444096f34c47e10c8340598a92d7c71fbbbf469b"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "6fa6cb6883966ccb6d7543f14dffe7337aba66035a6b332dfd9b6c442a3728be5b5c5e21ffdeea4566580ea73863e0d74998668a21a01f6f1b390cc6d23fd1ad"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.springframework.boot/spring-boot-starter-aop@2.7.5?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://spring.io"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/spring-projects/spring-boot/issues"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/spring-projects/spring-boot"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.springframework.boot/spring-boot-starter-aop@2.7.5?type=jar"
+ },
+ {
+ "group" : "org.aspectj",
+ "name" : "aspectjweaver",
+ "version" : "1.9.7",
+ "description" : "The AspectJ weaver applies aspects to Java classes. It can be used as a Java agent in order to apply load-time weaving (LTW) during class-loading and also contains the AspectJ runtime classes.",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "a4d97c5a2f94b8b5d132761a769e5eeb"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "158f5c255cd3e4408e795b79f7c3fbae9b53b7ca"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "1b448d82bd0f8a8c1842506e6c7edb95ff1a1275ce39f766e7884122b866fe5d"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "490fcf238486848e27cbed45fd437613193c9e89748a0818fb532aed5c213aab2624d148ed9fd58080c6934da5f7ec12c64e40b64bb46d16e361eb404393c5ba"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "4d3b13d7e7ab437410226974ad3acebc8c663b21d9ccad6d70b5adede33bc4033858e8b303c7263a8e17c073c354b87b"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "0d56981fa691d1d79f39aa65dc091def5fb106f65d5d1b0836a7279b95195961c5a49f07979cda49e35768276a30477d"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "e10b7535b50a0017f062b7eb71f1f1b301beadfe474d050f7100996797a8640c"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "a77467b7b04410e7eb33214e84b4061f3e7112eb4c29a2c826691bdc0af6136c7a78789ae685273e9e69cfb40e674b64ecb31d1e516a8b5d79afefb13f57ffa1"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "EPL-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.aspectj/aspectjweaver@1.9.7?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "distribution",
+ "url" : "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/eclipse/org.aspectj"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.aspectj/aspectjweaver@1.9.7?type=jar"
+ },
+ {
+ "publisher" : "Pivotal Software, Inc.",
+ "group" : "org.springframework.boot",
+ "name" : "spring-boot-starter-jdbc",
+ "version" : "2.7.5",
+ "description" : "Starter for using JDBC with the HikariCP connection pool",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "b1aeafc4460b34e42430eb2f103ad71d"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "b57c3f8fb2fe235a8ff368755092371423bbc5b3"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "a0e620c6e24517d9456b4a11ee04ba34a85f1dcfb792158a2efbe3549cb9d626"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "a47d4168818d25e8cdde1f57cfc24530f4d38b5f8f4c80c9ae8fbbf31cfad5a72b1ecac4b2a907dcc656654dfde88ec7364ad5bb7e927417939deb0a790730fe"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "168298fe16ed4bbd3a2ce8f309884233b220afac37e50061fc3580f7ee916031c94175c38bae98bacaf5bb0a4d2df43d"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "11802704fbc15078e9b955accf6a2a7ff2b01b784d4258c4c33d02a834563d7bc5e401d152e9548e11f3424d62a3bc05"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "35fffcfeb8c282990b560e2942717a1e303ade1ba42911fe0a3f797d52291496"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "4f8733d74adcc22712de7bd6e899f9ce2da2f2af290cdbd5f36739f16bf5b175e5bb1102a34d7162a8d3386a7a61c2481a362a6674635d727d17fa7e917a9e92"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.springframework.boot/spring-boot-starter-jdbc@2.7.5?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://spring.io"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/spring-projects/spring-boot/issues"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/spring-projects/spring-boot"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.springframework.boot/spring-boot-starter-jdbc@2.7.5?type=jar"
+ },
+ {
+ "publisher" : "Zaxxer.com",
+ "group" : "com.zaxxer",
+ "name" : "HikariCP",
+ "version" : "4.0.3",
+ "description" : "Ultimate JDBC Connection Pool",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "e725642926105cd1bbf4ad7fdff5d5a9"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "107cbdf0db6780a065f895ae9d8fbf3bb0e1c21f"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "7c024aeff1c1063576d74453513f9de6447d8e624d17f8e27f30a2e97688c6c9"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "34a9ee96c51ae070634cd0b642cad3c4c54b9d2ab7f1714f59dad805512ae27c9c69b8be83da473689f55474c4e2874c93e727f9f31d3bfc9b80ec37aeb68898"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "9c49efde42b89a8cd2b119d666076bc9d532c4a835c640b77d8a5858d3325f9ba99f8cd19cd21b9df4f386d1c21855ae"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "ccea43e68e6dcf0426c271640abf132575a9e28b439ac968b5608e3d04d7ec80dd948d33c474e31fb18bab9b80959c2b"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "163e0d75894a0a4c2d36f4a992449e2dfd71bf495f5789813cd333ad1b571fc5"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "bc20907f677b6fceaf8f81361d5a7e0099799561af550a2a49dfed531a3b8ee29f35ecc2c4419cd8eef9e25a147a2cf88cfb7ffc9218b8b35b0e0524caf56d8d"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/com.zaxxer/HikariCP@4.0.3?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://github.com/brettwooldridge"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
+ },
+ {
+ "type" : "vcs",
+ "url" : "http://svn.sonatype.org/spice/trunk/oss/oss-parent-9"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/com.zaxxer/HikariCP@4.0.3?type=jar"
+ },
+ {
+ "publisher" : "Spring IO",
+ "group" : "org.springframework",
+ "name" : "spring-jdbc",
+ "version" : "5.3.23",
+ "description" : "Spring JDBC",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "bed59ec8d164f9c32d58b57e74317831"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "c859919a644942822e49cb7f2404b2c4d3cba040"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "d655e8111c81658e27dcfc5e9e428dc7ddb8229e6cdbb3e9b2e00f1c3089a5c2"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "7fa15b649e0c64ff88f17a9c2041a2252c87e00d7382aa4102b4287953e62bf145699759de687c2cffe99eb2dbd2b81595fe2c9101b3107c66aad197177df821"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "e84e5897b7884ae5ffcbdac59a5a5540c336cf46d8e3c9930ee648fe63a9c6cc8cd6d104e4b63a35356ca382dd86b911"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "ddea752bbe843eab05d6403f9d060265c99b476d1fc52891f963c402c8e9a92f2b6fdd09d0706c0007721e37c4c315d4"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "81acd56c8659d3b14d821c6d7556df75a2a3a7f2fc123f29a56b03897ca54efe"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "57c7025e08ab5aa2b2764fde3d194b1cb60ceb750044d3052285d6bd9217fecf6a41f4fa1b9b3b48fc5a58057de7fb4d4b2400ecec07a609fa27fd18a1d45d51"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.springframework/spring-jdbc@5.3.23?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://spring.io/projects/spring-framework"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/spring-projects/spring-framework/issues"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/spring-projects/spring-framework"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.springframework/spring-jdbc@5.3.23?type=jar"
+ },
+ {
+ "publisher" : "EE4J Community",
+ "group" : "jakarta.transaction",
+ "name" : "jakarta.transaction-api",
+ "version" : "1.3.3",
+ "description" : "Jakarta Transactions",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "cc45726045cc9a0728f803f9db4c90c4"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "c4179d48720a1e87202115fbed6089bdc4195405"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "0b02a194dd04ee2e192dc9da9579e10955dd6e8ac707adfc91d92f119b0e67ab"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "764ade8ba807682dcd1ec7382c35275f3d8ab09a03d5b45c48e732501190e2738269080aaf28aa8dd656c11ee84bfb7dae6953dd2768f2acecd3a8cf0ca4961e"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "63adeb3c5eb24ad0147377436b6e3208d5e97c0e800e0e1e4cb3ba92699f1b06034c2ba00e3689aa8f909ee96c432db0"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "dd0a253f45dac003d40ebeed7f38b0850ff4b08941d55db5b3bbf4c936f94062d23799729ff718c54a565de2482bfd3d"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "d47afbaf1daba46c7aa107bf1b476857523738370309394958f96a2105686684"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "1b744b2d939a8d0a2bbd0be29c717af4a5e2374ca26fbb95a16df03aa55d2aa092e9314f20d5b080f02030ae1b70e4904ef0f8e1509680b9001153cdb7bc1934"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "EPL-2.0"
+ }
+ },
+ {
+ "license" : {
+ "id" : "GPL-2.0-with-classpath-exception"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/jakarta.transaction/jakarta.transaction-api@1.3.3?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://github.com/eclipse-ee4j"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/eclipse-ee4j/jta-api/issues"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "https://dev.eclipse.org/mhonarc/lists/jta-dev/"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/eclipse-ee4j/jta-api"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/jakarta.transaction/jakarta.transaction-api@1.3.3?type=jar"
+ },
+ {
+ "publisher" : "Eclipse Foundation",
+ "group" : "jakarta.persistence",
+ "name" : "jakarta.persistence-api",
+ "version" : "2.2.3",
+ "description" : "Eclipse Enterprise for Java (EE4J) is an open source initiative to create standard APIs, implementations of those APIs, and technology compatibility kits for Java runtimes that enable development, deployment, and management of server-side and cloud-native applications.",
+ "scope" : "required",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "e0a655f398f8e68e0afebb0f71fba4e5"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "8f6ea5daedc614f07a3654a455660145286f024e"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "0c2d73ab36ad24eeed6e0bea928e9d0ef771de8df689e23b7754d366dda27c53"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "1e07257b631ae3331a71d7cd9136152cddebbe786ba50c689bec618a9eb659be8e952fe0405db36332cb6c12c6c87c6d648e817c027ea8c6e0c660ce82f6f424"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "d68e1f600244d7a3628244e0265208ce08881f4ea33a3cd1f085886f7ce755cdd44bc6788ebda1baf8bc23b1f3c844dd"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "fb77e58872d4e3ef6475094ea96f1ce32a1a7c3617393fcab47c47cb84f6995315c5f805d518c69a0cea751ce980bf13"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "3619596135b169649ed16b75972c39614192d2a802291a7eb4c1814ef7dc9ff8"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "045c7f1ec7f9191cd2ff35fadf5c037aa596a288189185fd10d5fed89cd3661b6353945083f4c3943c87e343b61a556699f43f00a0e928c165e52d57fe514fa5"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "EPL-2.0"
+ }
+ },
+ {
+ "license" : {
+ "id" : "BSD-3-Clause"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/jakarta.persistence/jakarta.persistence-api@2.2.3?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/eclipse-ee4j/jpa-api/issues"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "https://dev.eclipse.org/mhonarc/lists/jpa-dev/"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/eclipse-ee4j/jpa-api.git"
+ },
+ {
+ "type" : "website",
+ "url" : "https://www.eclipse.org"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/jakarta.persistence/jakarta.persistence-api@2.2.3?type=jar"
+ },
+ {
+ "publisher" : "Hibernate.org",
+ "group" : "org.hibernate",
+ "name" : "hibernate-core",
+ "version" : "5.6.12.Final",
+ "description" : "Hibernate's core ORM functionality",
+ "scope" : "required",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "2f3d66df99f0c7202910bc4068da221b"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "66720fe38bdb9515924d559b8aac7b522d7ae171"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "5395eb2a7e2f1ff18495dced2d50817f39504ebc0145fbc7340a025e863f383d"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "1000a77478d167aa58956ae1f06544d83d980e317d188f67096d080f14d7a11c988e341517163b4d621dc34367b8b35e841ed8a37419d6847f2749f5924051d1"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "29ffe688303dda3121f90c6098a110b062d44372e7f1ec566cb85c04f8d71ee7bcff996b1f4bded5ab1043995583e599"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "41562cd331a05c644f936721e7d59414c2eaacc001ec45e2be9b443ebf95ca4a2a71a865f3510d52a953591d47577755"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "eb34af32173d874860b7c7036490723442b265da4b413d8ab1d5dabce8480fa9"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "8797c796ef887d7f74c4b83d09890efbd05995ca48be7f113dbb96f888a4c62b3da9f8aeb56dd27dbf0b6725cebd39e7fe0a77b90a324f710f6964e267ddf43d"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "LGPL-2.1+",
+ "url" : "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.hibernate/hibernate-core@5.6.12.Final?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://hibernate.org"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://hibernate.atlassian.net/browse/HHH"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/hibernate/hibernate-orm"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.hibernate/hibernate-core@5.6.12.Final?type=jar"
+ },
+ {
+ "publisher" : "JBoss by Red Hat",
+ "group" : "org.jboss.logging",
+ "name" : "jboss-logging",
+ "version" : "3.4.3.Final",
+ "description" : "The JBoss Logging Framework",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "b298d4b79e591843c1eb1458ea79f070"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "c4bd7e12a745c0e7f6cf98c45cdcdf482fd827ea"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "0b324cca4d550060e51e70cc0045a6cce62f264278ec1f5082aafeb670fcac49"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "60759c4340a7c1af0f10a5c2252e028150413d2437547f42018a94a838dc4a2bb24256411490a7e5f109b76305e2752ecf37def85e631d7e7b7e8461e0b54dda"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "1c07afd380f25c076ca0e568be205ede18c875471547133711f04bb2ffc9936c7c97708605cca18c9a98fc94b072caea"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "f17eeff5983e9e0562c90b8b3051b2dbee885818adb104ba8700a399f90a1a3c85a766686dafa06122cd6f8979561ea9"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "c41833778a14d364e29767d543ac402e93222616bfcc020552f0f037cfc6b02a"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "0dace1456d22070719b6e7322cdfb64b34f36f5c8f271f62026c691b00fe32fba50ac17f61b467160ec2b7cabdeeac77029ded3d7f9b1e08a4a0f709222a5017"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.jboss.logging/jboss-logging@3.4.3.Final?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/jboss-logging/jboss-logging"
+ },
+ {
+ "type" : "website",
+ "url" : "http://www.jboss.org"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://issues.redhat.com/"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "http://lists.jboss.org/pipermail/jboss-user/"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.jboss.logging/jboss-logging@3.4.3.Final?type=jar"
+ },
+ {
+ "publisher" : "JBoss by Red Hat",
+ "group" : "org.jboss",
+ "name" : "jandex",
+ "version" : "2.4.2.Final",
+ "description" : "Parent POM for JBoss projects. Provides default project build configuration.",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "489f7a97d2ed7ae34ea56d01b3566d57"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "1e1c385990b258ff1a24c801e84aebbacf70eb39"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "3f2ce55c7d71e744581488dc5105806aa8084c08e6e916a019bab8f8698994f0"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "635642582701f6ae26df91e39d5bfd9345c4c219da73e71a27f4740a4c0c7970f52cef667bb9cc4dd08c26d9b0447ee003c9e56d5ede68870976356c2fcc4a5c"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "ed9e4cf2b47f0891d5fda2a4a63650f0309a5e05f4b51b208bb0c0759dd1cd713e8db68816666ade0fc2faa855bd98c1"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "66c79624a37e19a65063c3d3c0e4779c18e33c2f558078abe1f05c69b1a85a6aae561f0aee1163c41d5efb4a315a3567"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "b6214feecbcb01f82e7442d614d5ddfb02efb686c0b603def92fdc7545f46412"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "0073443439cbc3897ea98f332c61422e0ffd40309fd93c6683a35f70df8e4828ed9e34025e0368ea55935d66863bdec895560054f1869dafd87f2bfc21f47ebf"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.jboss/jandex@2.4.2.Final?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "http://www.jboss.org"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://issues.jboss.org/"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "http://lists.jboss.org/pipermail/jboss-user/"
+ },
+ {
+ "type" : "vcs",
+ "url" : "http://github.com/jboss/jboss-parent-pom"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.jboss/jandex@2.4.2.Final?type=jar"
+ },
+ {
+ "publisher" : "fasterxml.com",
+ "group" : "com.fasterxml",
+ "name" : "classmate",
+ "version" : "1.5.1",
+ "description" : "Library for introspecting types with full generic information including resolving of field and method types.",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "e91fcd30ba329fd1b0b6dc5321fd067c"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "3fe0bed568c62df5e89f4f174c101eab25345b6c"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "aab4de3006808c09d25dd4ff4a3611cfb63c95463cfd99e73d2e1680d229a33b"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "7fc4764eb65227f5ba614698a5cf2f9430133f42ec6e2ae53b4c724ee53f258541a0109fe0659e0b9e45729b46c95c00227e696b8d1addcd772c85f877658c9a"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "28b4780b2353ebc08dbc02c9a343527a9062a0455bfb4ab135cb639c03e5dfd9c2250a835c44d5f17d275667c2009694"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "b194ace8f1f49f410286bd859866678b95a1b2c6f73e41f48291eb7438dffea57aaa9b177459038b6997771ce4d1cee1"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "50234c94efed4c816eb77bd2f70b869c9f89ddf8ee73dc25e354f4d0b81b3e1f"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "9886421726066b313a62283a6811b76d904ea1c1e9b7b2d850cb47afa189b03cdef053c8f7f6b79e77f2269c45f8cc2ed75c3389e96594b50987fef311d5a25f"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/com.fasterxml/classmate@1.5.1?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://fasterxml.com"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/FasterXML/java-classmate"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/com.fasterxml/classmate@1.5.1?type=jar"
+ },
+ {
+ "publisher" : "Hibernate.org",
+ "group" : "org.hibernate.common",
+ "name" : "hibernate-commons-annotations",
+ "version" : "5.1.2.Final",
+ "description" : "Common reflection code used in support of annotation processing",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "2a2490b3eb8e7585a6a899d27d7ed43f"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "e59ffdbc6ad09eeb33507b39ffcf287679a498c8"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "1c7ce712b2679fea0a5441eb02a04144297125b768944819be0765befb996275"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "9ce69f19b2e080071a69a2faa992be70b2c153d94862c306f784d1f91fe66e01139c13a3b4f156ee17bdc58ea9c93b61e2dbdfc43152d43896610251488c6e24"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "4f1652cc7f93556ca615f7a70a63e22004f7e1325b6d38492c5601d9b13f9ee3292b7e8919c1a0ef41de0266ed84b941"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "c39a9a94055696454d0ecc5c9718ca1ca7ea05f3b22eb8991c69f31e976a595b86fcaa37fd030c03c0860610bd7251c4"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "a2dc556200c3503ae769c6efa3634a94ac30f475f60b9fd7e478c8919e326720"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "4c791c5d5c43a3d4907f495966d89bd281d90727e3884d889b07a6e88c0ad3f9a712fabf4f2d73c57412d9eff1946ac48ad5450067ca9f6e83212ab09c18907e"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "LGPL-2.1+",
+ "url" : "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.hibernate.common/hibernate-commons-annotations@5.1.2.Final?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "http://hibernate.org"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://hibernate.atlassian.net/browse/HCANN"
+ },
+ {
+ "type" : "vcs",
+ "url" : "http://github.com/hibernate/hibernate-commons-annotations"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.hibernate.common/hibernate-commons-annotations@5.1.2.Final?type=jar"
+ },
+ {
+ "publisher" : "Eclipse Foundation",
+ "group" : "org.glassfish.jaxb",
+ "name" : "jaxb-runtime",
+ "version" : "2.3.7",
+ "description" : "JAXB (JSR 222) Reference Implementation",
+ "scope" : "required",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "4fb00614ad222cfdfc2204ceae827fb5"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "ebcde6a44159eb9e3db721dfe6b45f26e6272341"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "c048d9edde5d5d67bca4f66921ef1315b8e20b1a978b757d54cea0ea5ce1c907"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "9f47f8fa383711b17f650ccb74f14f80288529bd2d822a4a26bec16e5cecde048504d94217e568b088fbf6a6ca80c4f89ec4827b02a90b5e33c9d497c39a3312"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "6e96de592f2c0c5bb494c655aa6fa850b2d5399d243506a4e21fe97c137cce43d030748c61df5a6890851fc12f006351"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "32cb5d5f53723d2e6b0fb45c625ba8103dda7f7a93387cddfc38b82480ae9389db4534c2551334ecf4c81b478fd69743"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "113b31c82029f98d83a2f7b3b1dc2cb46bff2f0329f1eebdc29759c0bcaa9f9d"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "6bbbe8c3f83221ed70324fda7486b217eaa71ed3c152b7a2e6f1fb6f92c50b8f5757ff03b36f4ce9bbd8ed3c89f9dddb271df3b42b5423c177bf171fcc4770c4"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "BSD-3-Clause"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.glassfish.jaxb/jaxb-runtime@2.3.7?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/eclipse-ee4j/jaxb-ri/issues"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "https://accounts.eclipse.org/mailing-list/jaxb-impl-dev"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/eclipse-ee4j/jaxb-ri.git"
+ },
+ {
+ "type" : "website",
+ "url" : "https://www.eclipse.org"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.glassfish.jaxb/jaxb-runtime@2.3.7?type=jar"
+ },
+ {
+ "publisher" : "Eclipse Foundation",
+ "group" : "jakarta.xml.bind",
+ "name" : "jakarta.xml.bind-api",
+ "version" : "2.3.3",
+ "description" : "Jakarta XML Binding API",
+ "scope" : "required",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "61286918ca0192e9f87d1358aef718dd"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "48e3b9cfc10752fba3521d6511f4165bea951801"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "c04539f472e9a6dd0c7685ea82d677282269ab8e7baca2e14500e381e0c6cec5"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "adf6436a7a9dc6f64b97127861d7a89b78e82bea67f72bda800ef285163adcd84dbf006f679108a2a8c2eed013e0b771da2354087e0845479ff2b6318b881442"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "bad8b9f52bf7a7e1d3974cb305a69c093fb32d2131539c18d34e471e3ec32bdd9dd136bb4b38bb14d84e99c562f208c7"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "8131aaf65f996cfa2c3f7d406caab3acf3e6650bcbbcd5595f8a457a211810ff110c1923876e068831a07388ddc26f33"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "a9e4179a6bfa8b363b9fd4f32f8892c4a7954ed1695d3f33ccef73ceffcaa1d4"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "9ecbc0f4aa9cff28d519cbf74c8234b5180ae6ff0d6de4efe2de126b3251d466a5ddb878e70b9968095a843c82721c93a4dec53bfe09e3700f4cfe2e38bcac0a"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "BSD-3-Clause"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/jakarta.xml.bind/jakarta.xml.bind-api@2.3.3?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/eclipse-ee4j/jaxb-api/issues"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "https://dev.eclipse.org/mhonarc/lists/jaxb-dev"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/eclipse-ee4j/jaxb-api.git"
+ },
+ {
+ "type" : "website",
+ "url" : "https://www.eclipse.org"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/jakarta.xml.bind/jakarta.xml.bind-api@2.3.3?type=jar"
+ },
+ {
+ "publisher" : "Eclipse Foundation",
+ "group" : "org.glassfish.jaxb",
+ "name" : "txw2",
+ "version" : "2.3.7",
+ "description" : "TXW is a library that allows you to write XML documents.",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "d7d7c63bc636c072394334c85cb6d49f"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "55cddcac1945150e09b09b0f89d86799652eee82"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "4a52d7c42a7e6270c8d72554eb994059f53d69c2545fb2daa02c6e9bfbda8b22"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "220d61c9309eb9a0fcf5b41eda0f625305f5fff2cc9c1f0f96f0319903e44ec3a2c3353f7c07a14e0132335a62c7901c018117954194bab4474e88edea37b1ef"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "21dafda6e46429a2dae5b2e146f765897c1b8a3f7b6d63ba9f558b9c97bc8e9c7e707712c0d2484f2042bce3d4d8e242"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "62048d62d86908b0866d4942f2bb7b507d6688abb4cf6fe9fe3940132c3a4ec056c543401334f9cedd6c76e2aebd8fc4"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "3b884782ca5f898199a6b59251c55d2d8f364a85cb6f75b5401c2b37ef8a13f6"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "05a77d26fb0151495d4eea07e704a7cb3e3aa92fb4a09e0ca483ee7505311eb022c54836ace62be02661aa51e80bc480c4154e640bfff3d0f46609a7382febb3"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "BSD-3-Clause"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.glassfish.jaxb/txw2@2.3.7?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/eclipse-ee4j/jaxb-ri/issues"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "https://accounts.eclipse.org/mailing-list/jaxb-impl-dev"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/eclipse-ee4j/jaxb-ri.git"
+ },
+ {
+ "type" : "website",
+ "url" : "https://www.eclipse.org"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.glassfish.jaxb/txw2@2.3.7?type=jar"
+ },
+ {
+ "publisher" : "Eclipse Foundation",
+ "group" : "com.sun.istack",
+ "name" : "istack-commons-runtime",
+ "version" : "3.0.12",
+ "description" : "istack common utility code",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "1952bd76321f8580cfaa57e332a68287"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "cbbe1a62b0cc6c85972e99d52aaee350153dc530"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "27d85fc134c9271d5c79d3300fc4669668f017e72409727c428f54f2417f04cd"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "af36b11cc0d82b7f62c64941f4e7d441d25cb9f3c4b3e08753d038c388e5a09364b5dac9127f29a9b8df6d96034133caadab6d74371077478d2f301605913460"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "ad8ba1f6538e087915b1e7fbf4a7a60b006ebecc4ab52986c10dfe88ae11ae7eb6e1f302bee06f70b16ec316f001375b"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "2207c7e1570860d6300ef3157905498efaf26ba85566b053495f583b20c755cc07d6855b2d79136ab4d6544635e39f4d"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "50a425e524a6ee81110ecd86190d039a84d46aa3c45855310fe4f95abba3c21e"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "286997280ee0885c456686cf91c601e600106138f39eb81fc27381868f7ede0d1521cdf22c420331b1a961ed2f1ba1887a9ae05073f4364e3ffc297f40f0de53"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "BSD-3-Clause"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/com.sun.istack/istack-commons-runtime@3.0.12?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/eclipse-ee4j/jaxb-istack-commons/issues"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "https://dev.eclipse.org/mhonarc/lists/jaxb-impl-dev"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/eclipse-ee4j/jaxb-istack-commons"
+ },
+ {
+ "type" : "website",
+ "url" : "https://www.eclipse.org"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/com.sun.istack/istack-commons-runtime@3.0.12?type=jar"
+ },
+ {
+ "publisher" : "Eclipse Foundation",
+ "group" : "com.sun.activation",
+ "name" : "jakarta.activation",
+ "version" : "1.2.2",
+ "description" : "${project.name}",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "0b8bee3bf29b9a015f8b992035581a7c"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "74548703f9851017ce2f556066659438019e7eb5"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "02156773e4ae9d048d14a56ad35d644bee9f1052a791d072df3ded3c656e6e1a"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "8bd94a4370b827e3904f31253b022e5c1851896d3b616ca7daebfef259238cedc56d4ced32c74f24a13c3e2295b0ea012af5d04656b7f713cc53a2f18d5e2cf7"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "1cb0aff8b73ba52a9931b2cf13c75a1ce6665fb826bf97ede66db75c532136aa189fb53a1925e62b6eef572309ef3b9a"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "83801332576d931f4091ba65ea240d49c23e3b93dae939ce2eed63de943f80f251a4347638b99900de5b831796b12590"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "5363211b59dfaff6e1973e93548e5e4062189c6d0f43d7802627ebeb7b7ff37d"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "0c7b62a3432b19ffad02eafffc7e598391cd32b1313d075f94cda09913402770b4ba2314716625571f266431067229c93cec36e17c3ea598623542988634ca0a"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "BSD-3-Clause"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/com.sun.activation/jakarta.activation@1.2.2?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/eclipse-ee4j/jaf/issues/"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/eclipse-ee4j/jaf"
+ },
+ {
+ "type" : "website",
+ "url" : "https://www.eclipse.org"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "https://dev.eclipse.org/mhonarc/lists/jakarta.ee-community/"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/com.sun.activation/jakarta.activation@1.2.2?type=jar"
+ },
+ {
+ "publisher" : "Pivotal Software, Inc.",
+ "group" : "org.springframework.data",
+ "name" : "spring-data-jpa",
+ "version" : "2.7.5",
+ "description" : "Spring Data module for JPA repositories.",
+ "scope" : "required",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "679d3cd19c5ecbd194a3fb01be4dc11f"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "dc0bb497a33fcd3f82fe0ccfd674476d93889b3d"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "9af3cf88e39ad26a513f56f91ecb1eb969c7e557730ec6a23b31444732a693db"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "fd7458430056fe5d014e4b062a30c44e548e4913164d5a4f0eb05574fb4d0e9c623cda0f63ea552a63bd606daae92796d3a3384c6049d9247e88e1074d3961d4"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "9439a9282d7348c12efee0d69e8f914a4ae393eb80592ab4159c325d5bcbf122662f52e4873cce89659c978bec6b507b"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "d71f047c63c21836f88a94f0ae8594b3bcf42c63b17e2b1a55c6c649baf8433ca7a79b1787fcd18697a68eb4a5b5080e"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "a291aeec0a009650003c239c51242148130e7b09495d9ea72ffccefce94de0a0"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "1d7dbc67ac2710608933924698d0b9a35caf064154bb263ee230d7716748ac994accdec5ae27fde682033b07383fc293489ce6d8cade56be6cb989e4009f7eb9"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.springframework.data/spring-data-jpa@2.7.5?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/spring-projects/spring-data-jpa/issues"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/spring-projects/spring-data-jpa"
+ },
+ {
+ "type" : "website",
+ "url" : "https://www.spring.io"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.springframework.data/spring-data-jpa@2.7.5?type=jar"
+ },
+ {
+ "publisher" : "Pivotal Software, Inc.",
+ "group" : "org.springframework.data",
+ "name" : "spring-data-commons",
+ "version" : "2.7.5",
+ "description" : "Global parent pom.xml to be used by Spring Data modules",
+ "scope" : "required",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "9d96980e5547912448eca4b75308c8b6"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "0314b3faf010d9a5bf5a7cf12914e721ad0257f4"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "7b818ec53f28f4adef04a63ff4dda84181b5f2eba601a5402078b29e10f78c80"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "065312ba1763793932f470ffcca1717b474fa9f6578e067959af32ae6d5f5fc9a1aa73b322ef9711cecfe99ad9f0423f5c2a0174daa2250f3a388210ff3b4fbb"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "60bed9cbee936f4637cba3b65e29148682a863bfdd51216a609065f498bb3e19c67dbf01019660108427c10bec6f30bb"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "8d22a26051afb0c15f6afd8d095eae86ea98b94abe41a9849eef8170d11f33301caa2c402d7e23e3fb35c0b0bb70494b"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "e57d27493cb642ea74a2022c28d04a0e64e2af8e6c32bce2e5cb1a26d3d4d060"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "c61c741559f69f916734812e3d2441043c4c42ce098863857079e4eaf4a2308affcf9dcd0a4f46db9a033d9ad8e88e1e49bb2b4c0a9ff1cbc29a0ae9ffb38af0"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.springframework.data/spring-data-commons@2.7.5?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://www.spring.io"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/spring-projects/spring-data-build/issues"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/spring-projects/spring-data-build"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.springframework.data/spring-data-commons@2.7.5?type=jar"
+ },
+ {
+ "publisher" : "Spring IO",
+ "group" : "org.springframework",
+ "name" : "spring-orm",
+ "version" : "5.3.23",
+ "description" : "Spring Object/Relational Mapping",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "729981a93a9565becac1aae1f31aba7d"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "7d023546cde0f1b2b8d289c690679f740394298b"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "0e1e258e536a74ece74b0f7954d540ef888baba4f02d9b14980fa6157364d153"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "e86c5eef082d9378efcd554f27e333b3b32a316885f6f71b007a1c8e9e35ae83d94f349e1dffee30edee915a7c85514cfc305ab5954b894eae9d031d931ac860"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "1fa200780ea690a34722c3efb146035fdec468f4ed0acaed298c9fa3abfba726c2c814dd27cb7a43d533e2e43480638b"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "f1ea88d140816f9f6b80f7d9e8d4c858ec92bdcba9ac591870f2e04888f9d0fb92ffb832ce53e65e5522c653599ec2c5"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "701ac81878b7003e2647d592ffa75dafd1b1960bbdebd22f5e995f6bef37c550"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "9e029336e77f5ef0c164f1af13b4a1013fce67cbf4ef3d363a9a1a276a525cc69d8fd89c20e6a2d3889aeaa434eb1f3c339568eecde2e3aef2af54fbfff65964"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.springframework/spring-orm@5.3.23?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://spring.io/projects/spring-framework"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/spring-projects/spring-framework/issues"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/spring-projects/spring-framework"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.springframework/spring-orm@5.3.23?type=jar"
+ },
+ {
+ "publisher" : "Spring IO",
+ "group" : "org.springframework",
+ "name" : "spring-tx",
+ "version" : "5.3.23",
+ "description" : "Spring Transaction",
+ "scope" : "required",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "9abf629595fe674159f7240b6e4d652c"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "ab313b4028c62e18fe02defdd5050af704778428"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "50ec8e851eecc36e8cc046ce9a0cb8e9f150aefbae9ce8ccd9689a297c28746b"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "78ac60cddde270cd013898e6f353632c912964a89d3ead3083b7045a21c821a72a41cbf90a6ccfee9e81338ad4f694070db3a886b2b5cf1846ef8853a162087b"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "611e58be6fd702ac53faaa3a6e676ff9572717b39c2752120d09fe1a086acc5ceb5ded169d44ba931ce93cea65d97c9e"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "c1ad8b0f9713ba57e6b1d4a46ce3ade6270a45c96ef3ebaa78cda3e7fceaa3a825bd1ef48bf78c30c6bc0686da2b965e"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "d2f74b2c8e7079995858fcc78cae887cca7c79a095cd4e2a0d3fa27c3a1a23cf"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "9493f0d9b2a8678ffc308cef8ac2fdaefbeb8d39577fb63f3f97cd195d6498cc3e2b36b3f76ad0d846de4ca4d98f66886a165cf644738223f8dff0725b0e433d"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.springframework/spring-tx@5.3.23?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://spring.io/projects/spring-framework"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/spring-projects/spring-framework/issues"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/spring-projects/spring-framework"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.springframework/spring-tx@5.3.23?type=jar"
+ },
+ {
+ "publisher" : "Spring IO",
+ "group" : "org.springframework",
+ "name" : "spring-aspects",
+ "version" : "5.3.23",
+ "description" : "Spring Aspects",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "2fb0559787036339df65df932238a48a"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "35a0f5df4241f794fd79dd2447195ac055e88b8e"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "006faad1942076696e99b88d17f0f7eabb47261419cef0ce8cbcac98b7d7737e"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "c9ed752d606973e542a65ceb46741d3032ce51ce81f1306eef9ce49784054618658229c6f09af615f3793907e4073ccc2e5f08ba934f437aee64a9ba6c5084ff"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "2902ee5cd02611c2d097238c13fceb873e9c82ba8a6fa228c19b3b1c3499c6bfb6994c1b9f8283123259cfc4011da1df"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "a952ff6c86643c0cb5381f311f477c7b5a6f1c5ee29fc86a8235cb57ba3b616842555bb9cfdd33fa080ef99d8dfe5ca8"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "ab5cc9503667904d9ffa1b69575184366bff5a0ec2b8bb2b77b71f08bb59fa71"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "1937835349dba8e62265799084cb96d754543b896b4473a369b897ff9bddf4b31ab58d814532bde433426078665d67c20445cd4d976a9fd8a05286f539b1fa3c"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.springframework/spring-aspects@5.3.23?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://spring.io/projects/spring-framework"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/spring-projects/spring-framework/issues"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/spring-projects/spring-framework"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.springframework/spring-aspects@5.3.23?type=jar"
+ },
+ {
+ "publisher" : "Pivotal Software, Inc.",
+ "group" : "org.springframework.boot",
+ "name" : "spring-boot-starter-security",
+ "version" : "2.7.5",
+ "description" : "Starter for using Spring Security",
+ "scope" : "optional",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "f8e2ba709058c693d954db22281db402"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "cc83d58be6861484d25ae9e2fc6db6564062140d"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "0473a3b8f86c64ab992824bde28c5ed30aeaa0b8395b9e9a7099854e1b7b3851"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "f81648cc47093f8692bd3e87b1dadbeaf217542c6110875875e5149c912fb5e1f041173dfd3573f68cf3ebcafd6481538dc7167ca7682d44db789ee392352edb"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "4128265d44aba33f9ea38c003a3ee8b57e3bef70654cbde8bb8a50d5bbe5fd53de0a007f24b4ffbc9978a79f1ea01376"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "26c7c1e1c5306b1fd9abb58cb4d67335a2b548354af1133764923c70c4cdea174867902b817763aefc1aaa8dd8efffd8"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "b119721a630c37775acd820ca12ba1192afda1c9a70589bef5d4d23da58b5e08"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "bcce8da2bece6f1f5e7b33d0e4c348de9edc34e022efc40fff959d4ae2687b14ada6ed6b0d384f6d930d23a061de2f5dae7f909889f075cf51de161b1daf3e23"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.springframework.boot/spring-boot-starter-security@2.7.5?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://spring.io"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/spring-projects/spring-boot/issues"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/spring-projects/spring-boot"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.springframework.boot/spring-boot-starter-security@2.7.5?type=jar"
+ },
+ {
+ "publisher" : "Spring IO",
+ "group" : "org.springframework",
+ "name" : "spring-aop",
+ "version" : "5.3.23",
+ "description" : "Spring AOP",
+ "scope" : "required",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "3d1bd213d1a8356d6f87c3c8d4f49509"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "30d0034ba29178e98781d85f51a7eb709a628e9b"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "532584069f50c6f2c0a6692422a501ee77ba3245acff4a7fe51f3d658bc555db"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "e77024f92f4cd12fe6448d12c312f38f2a85e6aa1518c760c853fdfd868f742b1130e3091c281183f1af8752c0b95c9031697e8b321375d7237ca133464356cf"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "86b11a21779d13962f7a7182af1ffe8b6f1273648a6c12bbcce463ce36cb66b44150a6ef4f389af14c9d6f09135fdb57"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "cfc1c46aad61f39ae30d4b9f75416cbc1867a37f3f2f524b56471829fa421502bbe05b1f2674f2b151dcaa3ee0831420"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "a602ca0ee455284dfb683293b288720b887a4dd42634668012856022e893120a"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "66d3a88ffdb5d38d85ab68754a6b1a048542b53ae9150c2c79296d8d23780ade4b1d8d3bcff892d6934a7980d623892e6f521fcff8919fc89eb5ca6f4b8ad1ad"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.springframework/spring-aop@5.3.23?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://spring.io/projects/spring-framework"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/spring-projects/spring-framework/issues"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/spring-projects/spring-framework"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.springframework/spring-aop@5.3.23?type=jar"
+ },
+ {
+ "publisher" : "Pivotal Software, Inc.",
+ "group" : "org.springframework.security",
+ "name" : "spring-security-config",
+ "version" : "5.7.4",
+ "description" : "Spring Security",
+ "scope" : "required",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "395c19eed8c342fcdec5542495b825c5"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "fb76b6ee2d2ff36df920f21a2b9130f02345729a"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "521636db6935f89e47f6a2615c17d1c205719674f056e8b29ac5a3d0a81aac63"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "c35559c1dd3561d154133a6f03c1558af86b033fee8c784fc6228c7ae1a8aa4a8d6a7297e9134b9de15dde984f23f85fdce5ef675867677c67b35b5c210ad33a"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "221819bfa5bf4a59b86c9844e238ef9625d322d69b9b133562c2b1d1787b94a883b2e2b93c8c6aefe98c0683083ecfbb"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "8f28d526964bfba249d05832b9553f1c1ee3a836f14c203d65d38a94a3b5c5bc69bb76ee31dd5e863b01767ec761f993"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "2fbd6c00a54645b68235bfc1ab57a07bddf685d670ec6b38e5ca044d775c6cd7"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "26300232f437f13ce8f7b1217dfdfa0d48216942852dde0958530a491ba107fc42c8b640ddd4ed80ca90d34d8ada87e6db46bd1202ba4bafca8bd692ad518b99"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.springframework.security/spring-security-config@5.7.4?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://spring.io"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/spring-projects/spring-security/issues"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/spring-projects/spring-security"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.springframework.security/spring-security-config@5.7.4?type=jar"
+ },
+ {
+ "publisher" : "Pivotal Software, Inc.",
+ "group" : "org.springframework.security",
+ "name" : "spring-security-core",
+ "version" : "5.7.4",
+ "description" : "Spring Security",
+ "scope" : "required",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "46acfc1cf321c60a0b8f3f8b096ab3f0"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "7e7d4189d115a053976eaebaa6e979ecf43ff2e9"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "2d8a019061742fea80fe9a18223f23d398f8ec46888cbeff5940dbd3a20117db"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "a93ad6dd125ec52c50fc487471b8f8903371c58bb156c90e8c1edbb8634d3692879b0772070b82b97efe2c461f87f75bef5fe8715210e8e574788949e91788bf"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "52308bd81307589bf38dc5b7f6888d2333b1df5c78ebfc11fe0deb4f41df762e3bfb8c76851641b5913c2006dabf589f"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "9613f8ba4c6bc83891f681e957a8c9ac0b83467ff1fb3e4915d8e581f9f4b1c1642ff15a8fb9a081727eaaca305e5f34"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "41486d408879b73cf890308bd024e95b6e60e40831ff969efbb56a227fc83189"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "dd8be6b5a8b97762dca5a5aedf1bf76a18ace1c814e42a8a6e86b318ac12e164cea55ca6e9bdc4987b42d9e3c25d3e0c9d3d897eb1315cae3a326c37621f946d"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.springframework.security/spring-security-core@5.7.4?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://spring.io"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/spring-projects/spring-security/issues"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/spring-projects/spring-security"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.springframework.security/spring-security-core@5.7.4?type=jar"
+ },
+ {
+ "publisher" : "Pivotal Software, Inc.",
+ "group" : "org.springframework.security",
+ "name" : "spring-security-crypto",
+ "version" : "5.7.4",
+ "description" : "Spring Security",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "1df48d9d62ca9ee3801727a2cb14e367"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "f5924f059764a44a20ce284322cbc49276550134"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "aa5f5d9884d4846fcd1b60662fd7bedbff6b1aba8b99653555f8d413d183d1df"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "6bd5a796ccacb5ba97b112664943d11eb6492c5b968b64ba0e920674ab112b4b5acd18aba8182cffb0b22b607ea0c50c386ba1dbba5395d64017ef7d146697cb"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "4fce4346826b7e8b4b3530cd02b5955936f1a2c0ccda2da28af77ad0c0a50401b49d942d9bdfdbdd33b5e83faf8cd0bf"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "a763719f6de27420fd1c8bded928e1564b1328e4928391a955d2084ef49ce503fd2e204f97c39b7a0c70205e01d15c5f"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "24140144991d4954b8d4a4929710d4f43f0f189544cbd1bf6f63bae6046fc674"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "98f55d278269c59bf18618823d08e1e5971f389a64890774810663357577ba685a9fcb6bc36bf425d582e2ffd27cda1db167db8c0180807557fed5505d2b3443"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.springframework.security/spring-security-crypto@5.7.4?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://spring.io"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/spring-projects/spring-security/issues"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/spring-projects/spring-security"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.springframework.security/spring-security-crypto@5.7.4?type=jar"
+ },
+ {
+ "publisher" : "Pivotal Software, Inc.",
+ "group" : "org.springframework.security",
+ "name" : "spring-security-web",
+ "version" : "5.7.4",
+ "description" : "Spring Security",
+ "scope" : "required",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "77532c6633458d09c4137ca098f2d530"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "9e89534c6b9ddbbbda692e83e894c1ca0a8c9266"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "5b06db2a353b47da760612d2f741e6840a0f180ef249cebff18ad8a59310e848"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "ee776b83f9f4194a1bc273eefcbdcbb8b0d07d4f1e724b3f284fae8821af3ff1b27bc3906bb7e5aee49875df479fde23dc5120f58841e7e0c9fc755cf621020c"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "f40fb19def610f7d1b2bf7d5db2447232c04149fdc0a37ae12941bab82ec178f3c572b7c1b1cc97f4401b51b4964895f"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "8724ca28fb70b7de719fd27895913262759f46bf984b02e195e168580f700249da01fe6c96823c117473c483f50db53f"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "6c128a1236923820fe24d9ff4a7a662125c4e7b17b9c6b7e6e04d20f9fc305cb"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "f3785d7cb8b5edfd01b60ee7e129ce318665da43713a41c7d215d6756aafce764589b7a12a2ce4660a2134dca8accce339846fceefeac94b863fdecb8616002b"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.springframework.security/spring-security-web@5.7.4?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://spring.io"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/spring-projects/spring-security/issues"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/spring-projects/spring-security"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.springframework.security/spring-security-web@5.7.4?type=jar"
+ },
+ {
+ "publisher" : "Pivotal Software, Inc.",
+ "group" : "org.springframework.boot",
+ "name" : "spring-boot-starter-logging",
+ "version" : "2.7.5",
+ "description" : "Starter for logging using Logback. Default logging starter",
+ "scope" : "optional",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "0e3224e062dabf3b83a0ae823b76ed2d"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "61f4c53e35baa31a269bbeb7bb9d5e781448feef"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "9f0be185462e7d4a1dedc4d03854ed7477768c86ed7fc3d89dab1baf56527de6"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "264b89ac1adb92ccb4495e71a9da1aa93a04a83ba01a3642c7def601c9a355729c37e98e3254b739dc7eb8d4cc5333164236e6e0c14e30cf764d698587aac755"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "83fc4bc273557c480df15fdf13f22981799692fc92d9ebec0fdf96ecd56a83abc1817937046bd430683d430f8ff14b5d"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "d956d196812966120d5d8ba01a1593082af65927dbf8b5086f67335902ff1507773c89422a457e7a97855b25f3a055df"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "55f0f2a7b4e6841ee666b69af3dc621687b992e093985079d5c9029810d25d06"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "13957d65b84ce8460914c820a8fe3801d537b30245772cec28747ca7f667d033e4bfafa1b689cbd548beb5a6388e6c703ceb3a44ae34014aba73e449ecab9901"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.springframework.boot/spring-boot-starter-logging@2.7.5?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://spring.io"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/spring-projects/spring-boot/issues"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/spring-projects/spring-boot"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.springframework.boot/spring-boot-starter-logging@2.7.5?type=jar"
+ },
+ {
+ "publisher" : "The Apache Software Foundation",
+ "group" : "org.apache.logging.log4j",
+ "name" : "log4j-to-slf4j",
+ "version" : "2.17.2",
+ "description" : "The Apache Log4j binding between Log4j 2 API and SLF4J.",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "14b27a4266c6d71c949cb4591ee463cc"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "17dd0fae2747d9a28c67bc9534108823d2376b46"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "9bcfa5273527b950d79739d11e8f8080cfc881908fa2a946b4e891c0293094de"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "c90bbaacaabeed35f80be4d723b54234fd137413888870d6e1c1b16c067cbede57d637a18f0d25421a9c419fc55a9c388ce235077cfd6497178dfe67c5d398e8"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "c8374c05542d5a04a831a66596fe31cf385a303643e724840a70508aaa98e4870234aa8a26ac1f4fab167fe45bf34e6f"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "25c843c30137e459b94476843d8312a49d75b40d80469b1943b44a6bd2fd51f6b6f71b23d4bc559f91ae0f28763c7b0b"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "d0e8a8996e79cc881a10a55b4887436a9458625007f03b071230d1c4e96b54b6"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "6d0ec7c51ea40dee55c3c9a60ec198fe7461fba1f6b30a88b866608e83f47fb1328754b8fe33f3993f8c1ececc89c9ea83cb8b266f36fd9c1b8095946d330e2f"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.apache.logging.log4j/log4j-to-slf4j@2.17.2?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "build-system",
+ "url" : "https://ci-builds.apache.org/job/Logging/job/log4j/"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://logging.apache.org/log4j/2.x/download.html"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://issues.apache.org/jira/browse/LOG4J2"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "https://lists.apache.org/list.html?log4j-user@logging.apache.org"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://gitbox.apache.org/repos/asf?p=logging-log4j2.git"
+ },
+ {
+ "type" : "website",
+ "url" : "https://www.apache.org/"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.apache.logging.log4j/log4j-to-slf4j@2.17.2?type=jar"
+ },
+ {
+ "publisher" : "The Apache Software Foundation",
+ "group" : "org.apache.logging.log4j",
+ "name" : "log4j-api",
+ "version" : "2.17.2",
+ "description" : "The Apache Log4j API",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "0c39d90e7819c92c111e447bdf786a90"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "f42d6afa111b4dec5d2aea0fe2197240749a4ea6"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "09351b5a03828f369cdcff76f4ed39e6a6fc20f24f046935d0b28ef5152f8ce4"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "8f986171ee6ca94ba8eacfc83b5b45bb87221c176076eb152715fcb4e1f351c4e9f88d56420fc02ee166ebe0b896fb52eda21355dec49302ab3e83a56b245d04"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "e4ba0afbfd91ef295e6c1c1edfa7854e216a29705b5c4b520f803697ae6badf3630c5d55e56394954988fa88e62176b4"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "ef8ecf2f848bcb18790d79b1d4e0fac0582e94f226eb8c7039d7316bd9f4c472556a4052b4a93958eb1248c7a3756433"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "bdcccb79127c28c0f42374eeac65891e7c0d02f18e1469c705e946f74cfc89db"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "14a4d4f38dc5392f378e006994780d686095e1190d476fd18efcd4211bd4dcd64b699d79c5f4351c51f2d26a3ab98b4a49745df6dbd404e3bc981797a5b8c075"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.apache.logging.log4j/log4j-api@2.17.2?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "build-system",
+ "url" : "https://ci-builds.apache.org/job/Logging/job/log4j/"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://logging.apache.org/log4j/2.x/download.html"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://issues.apache.org/jira/browse/LOG4J2"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "https://lists.apache.org/list.html?log4j-user@logging.apache.org"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://gitbox.apache.org/repos/asf?p=logging-log4j2.git"
+ },
+ {
+ "type" : "website",
+ "url" : "https://www.apache.org/"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.apache.logging.log4j/log4j-api@2.17.2?type=jar"
+ },
+ {
+ "publisher" : "QOS.ch",
+ "group" : "org.slf4j",
+ "name" : "jul-to-slf4j",
+ "version" : "1.7.36",
+ "description" : "JUL to SLF4J bridge",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "2a3fe73e6cafe8f102facaf2dd65353f"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "ed46d81cef9c412a88caef405b58f93a678ff2ca"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "9e641fb142c5f0b0623d6222c09ea87523a41bf6bed48ac79940724010b989de"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "0bb1e7343d07d41bcfb0c1ffeb2db28cbb35e7a80a409b80042f463b082a292976f09d719e319471e31c7bab716121728a16509fd385fc6e3b400b1b214cffea"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "50e2f326fc00537a5fb3726c7c55556851b3be8b4346f522f27ddecf2fdb44adabae3197b30ccfd854c37d6734adbd8f"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "4ad0c3870852ac44530a9dcb992d947cd8708ee6f422559da41aaaa8b22d1610fb116b32d2c54df83b110b85487083bf"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "8e3f5aaaa27f618b52e610376d2a16c6f9dc8dce5e6c2bbe42131a590626aae6"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "e3da265406b5e69f02235ed7272a48f71cb8b6f0a696820e28e90fb5eafeeb311abf2a4e779b402f384c6a80470fd41116ee52a526f57040fae3b24cb3b19c01"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "MIT",
+ "url" : "https://opensource.org/licenses/MIT"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.slf4j/jul-to-slf4j@1.7.36?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "http://www.qos.ch"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/qos-ch/slf4j"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.slf4j/jul-to-slf4j@1.7.36?type=jar"
+ },
+ {
+ "publisher" : "Pivotal Software, Inc.",
+ "group" : "org.springframework.boot",
+ "name" : "spring-boot-starter-validation",
+ "version" : "2.7.5",
+ "description" : "Starter for using Java Bean Validation with Hibernate Validator",
+ "scope" : "optional",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "5e73a3a68d2a74da7c9f17f566c6b814"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "11760608ed34382c96c7f623eceaa608041f1ff0"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "93a0d1f8e807b61ccad33cadfc64159337e18bdad72d9ecabcbe06f0265a3ceb"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "7807fdbfe4238517b30849f6421662793936eab63395096996bdcb5a0c7709c332164bb5d6036b214f35c3c9b593e50a7f80f84c319f4473b8035ee49339b13a"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "8730362c7de2cdab92b4e8a8c3c990fdaa0a9dd9cdda9c9323d2b8384d27c88da88bc0dbfed9c16fb54247b6c2039e1f"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "6cc0b58f9fc08b62935bffacbe0a61111f4bb9536cf71889f3b3363620f70ef70aa2e48b0460694f642eb2c39c4fe870"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "e177517e3767f5a29ec6fd694e5ce3224b8a9255c39c5036f271b60d77163948"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "a9a4f85988f3af0ab1e2a4d7c4868ef3c08b15cecd728ba6042446a87ded4d6b1b7608840412f15eeb7c483e2870642eaa367c1c078ff98c52752a8caddbcf3f"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.springframework.boot/spring-boot-starter-validation@2.7.5?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://spring.io"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/spring-projects/spring-boot/issues"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/spring-projects/spring-boot"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.springframework.boot/spring-boot-starter-validation@2.7.5?type=jar"
+ },
+ {
+ "group" : "org.apache.tomcat.embed",
+ "name" : "tomcat-embed-el",
+ "version" : "9.0.68",
+ "description" : "Core Tomcat implementation",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "cc66bae549fa2bb4cb088d0902aa9372"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "296afe7483256960d7ebdd8dcb4b49775d7cb85f"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "05b29a7bc6542daa1584c325f37732d75223951ac8e6941effe1b454b9d2e751"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "96d43bf406d2d60ba703d6757bd6a16abc4e7824d585e7fa9fbe863cb6a8fd0815283f14fb80cb02d009cf295535d8f20d7ab7f402b42c0f81c9112cbeb618d5"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "2bbe3b4981f9494e53c6340056d824951aa3371e2239ebc4edda161564b6c48c168b887519c2c678cafb506030e37bd2"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "7464b5b31f10738a017371d1e2172df3f9d29a7a33d3f5c657913f79dfac855b16b1871e7c051c1537a00eccc470b1bc"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "550a5f3a4bd57f97175bbad3d49eb425f2c75dadafabbb269b7d220c33ee4925"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "71676859c4e56ce8a6d505eff16f0d0b7c73d702373a92367881df601768849bcee2b06202ca18105c72e49d4148197c581d7f20c2bd38d227891d4771f58e8e"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.apache.tomcat.embed/tomcat-embed-el@9.0.68?type=jar",
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.apache.tomcat.embed/tomcat-embed-el@9.0.68?type=jar"
+ },
+ {
+ "group" : "org.hibernate.validator",
+ "name" : "hibernate-validator",
+ "version" : "6.2.5.Final",
+ "description" : "Hibernate's Jakarta Bean Validation reference implementation.",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "9bce6e6e05f6975c0d414a5e935c8107"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "a68959c06e5f8ff45faff469aa16f232c04af620"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "8d6d89c3204b30a01dc248352f43dba196140bf4adc5f437f63e2ad62a3d2144"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "7c29acb57e7ac2c46e47c4f4b716f5518bdfcba81bfad333764894c6b7be679fc8cff1c3598b9210bfd0da1b704e8b11f9f71e0ed7e57bf0eea4fd76b65458f8"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "db1a36d00f1e07ffbdb8bd2a24dfbb07e97703f6054ec86e8a2ba3e5848fa83955fd082c48436c4aab7cb864ec5f12c0"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "46a17e6d4fdda01a91bb5921001506169fd4bcaf8c0aeea5f959480eecad3b2b258b361968f12cf8ffbe454fcf5562fc"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "7523582fe81c98cff0fd8e2229eb1f8a703ef4e099d8af20931b095a21277b8f"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "b1478874a387b448085c6a1e0012ec5cf3aec808285d4ec6386cf15e1309d6d8fb0f21af9c4df8dc0c1bb50887ca4f90f85fa9c55250ea5541a1403f465cd073"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0",
+ "url" : "https://www.apache.org/licenses/LICENSE-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.hibernate.validator/hibernate-validator@6.2.5.Final?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "build-system",
+ "url" : "http://ci.hibernate.org/view/Validator/"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://hibernate.atlassian.net/projects/HV/summary"
+ },
+ {
+ "type" : "vcs",
+ "url" : "http://github.com/hibernate/hibernate-validator"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.hibernate.validator/hibernate-validator@6.2.5.Final?type=jar"
+ },
+ {
+ "publisher" : "Eclipse Foundation",
+ "group" : "jakarta.validation",
+ "name" : "jakarta.validation-api",
+ "version" : "2.0.2",
+ "description" : "Jakarta Bean Validation API",
+ "scope" : "required",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "77501d529c1928c9bac2500cc9f93fb0"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "5eacc6522521f7eacb081f95cee1e231648461e7"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "b42d42428f3d922c892a909fa043287d577c0c5b165ad9b7d568cebf87fc9ea4"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "3ca8556b80ca809b3a43fac31469702bbad62a00e63b11a304dad1e372d9f6c128357463a4c70c423055941c7e2e417f87a9474a204d189c8e4b62f42047c8eb"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "6ae3963fd6a5e83b068a8344b88f6bfbd26d29cee64193025bc5e98195678e49826463da27a7a1c15cd83b2149d57a94"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "55a570386718064b422f9ebc0c0c07f0b37259e44a14c9a16c20e945402339b1d01b7d6969ef40d6b5baf5bce3e1161d"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "1ff48fdabab86a398b25e491e6ba4fd9b62d597314202628a3cfedf723c17f21"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "c23bb0b43fb0c39d4c9d2cce0cd38334fa7c253130f0bda3007d9f7d2dd451c0896ff4265ee2cc35024fad282f9ccaa398c19874775d9cabbb786843fae155d7"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0",
+ "url" : "https://www.apache.org/licenses/LICENSE-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/jakarta.validation/jakarta.validation-api@2.0.2?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "issue-tracker",
+ "url" : "https://hibernate.atlassian.net/projects/BVAL/"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/eclipse-ee4j/beanvalidation-api"
+ },
+ {
+ "type" : "website",
+ "url" : "https://www.eclipse.org"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "https://dev.eclipse.org/mhonarc/lists/jakarta.ee-community/"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/jakarta.validation/jakarta.validation-api@2.0.2?type=jar"
+ },
+ {
+ "publisher" : "Spring IO",
+ "group" : "org.springframework",
+ "name" : "spring-oxm",
+ "version" : "5.3.23",
+ "description" : "Spring Object/XML Marshalling",
+ "scope" : "optional",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "8006267643d921a1c2fac0bc3e0a4719"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "3cc989887a4daacfcbb048a349dd3bf4f32f5e86"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "197a03081c757701a72bf01566e9584b717490076cb22992c1022413a19292fc"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "2481e50daa729dff87634b5cc979ad0bf137a72325cd73d95c73a794d7353b74c2979b6892673e5ce0d2cf91dcd0163885b1c3bfd6bb4f70db7ab6cca89d1609"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "38a615eed82eeb3c16e10b1ed5ab063fa41abca3b20df6a892dbd6d11e580b25ee710c186b1b7c99c7acae02c8c64018"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "2e9f0901ecd389ff67ae6c78b723af83448ba09e5b8602bc181fc7ee9d33fc321024e8a68e108dd272c39d4b29f13dd6"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "d033f16db6e7d8361378d4b038d0d14a66c352d466f90501090d28b7212823e9"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "d1f281cde48c574bdb0d06503cb544c17ee28954093e318a9d48311db4808c31c5be3ad8059fffa146b733db21c4014012de29738b2a7b9ca014099c3d7a5dfe"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.springframework/spring-oxm@5.3.23?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://spring.io/projects/spring-framework"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/spring-projects/spring-framework/issues"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/spring-projects/spring-framework"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.springframework/spring-oxm@5.3.23?type=jar"
+ },
+ {
+ "publisher" : "Spring IO",
+ "group" : "org.springframework",
+ "name" : "spring-beans",
+ "version" : "5.3.23",
+ "description" : "Spring Beans",
+ "scope" : "required",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "54a6169c8887dac4c3a5e2e3975d838c"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "3bdefbf6042ed742cbe16f27d2d14cca9096a606"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "99e2ec12fd419db7facf0424b2c601a4155eba85aac5f75050baa55e18eb6c80"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "b773acdc43771b5fbf912ff1f314bb4521629e4bf40f2932bffa2fbbb472fcdd87a37b96f0fce8f70164efef663c5fc3ca3319562ed20e73682ce56c347109c9"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "dae4f028caf81d6d44bf77b16812091ab19cc59b47e240b3c0b78b0c75613d14bd79d42ef5042c9caafe0bd714df0ef5"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "43f22ac3b86b0b101c31f0f1111a4054832695489a41013f8e4782c44357a08cbc400db599de2deec849eff2c38a7e42"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "67073082394768131bec67a3ae519f3187a0b7bc6d78f7adbe662cccd10cc68d"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "5f6d26e8739aee13f8921574f09c83a2661be9cf3865f77fc8fe0a9f016cbff747ec699fab5b75cb0191753a86720c73b37153baf458be22fb61900eec82896f"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.springframework/spring-beans@5.3.23?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://spring.io/projects/spring-framework"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/spring-projects/spring-framework/issues"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/spring-projects/spring-framework"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.springframework/spring-beans@5.3.23?type=jar"
+ },
+ {
+ "publisher" : "Spring IO",
+ "group" : "org.springframework",
+ "name" : "spring-core",
+ "version" : "5.3.23",
+ "description" : "Spring Core",
+ "scope" : "required",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "7586bf5525218f46206bc6fe07e84736"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "91407dc1106ea423c44150f3da1a0b4f8e25e5ca"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "dba23f6a6e38bf8ce58d29c31eb288da56c4d826507d3a584a27e0daac930a52"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "b9e1b0afdeb82939efa94d17778c85c8c45f991e5472b36cac2f5ea22dc7271cce14a097836077b93c3767ba6866a7fb4e6cb99fe738a6bd40dd53f2bb50d95c"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "f6741c27a09004849fba26172cbec314eef33c8222d15dc30f05b7a1b3f598d76b20e57496a6fe5119873aa52d314946"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "46ff93b433ebff839b4e1e2433cc364b6437acb04a5df4223c0c4cc249d1a1a5d0eedf59af80b26cb2e65063f7b386b9"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "5ae4290463d630ad46b4903a40aa4bf819d336b6045b83a6503198cee86c52fd"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "407d0fce0ab924d1bf99af06da361e830035d63d337b15b079fa85d21dc46bd1b9eadc87c34d72526e4ffeacbc7b400f177e0df22e9b442cbe26405a1e9bff1e"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.springframework/spring-core@5.3.23?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://spring.io/projects/spring-framework"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/spring-projects/spring-framework/issues"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/spring-projects/spring-framework"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.springframework/spring-core@5.3.23?type=jar"
+ },
+ {
+ "publisher" : "Spring IO",
+ "group" : "org.springframework",
+ "name" : "spring-jcl",
+ "version" : "5.3.23",
+ "description" : "Spring Commons Logging Bridge",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "8f3c2461ca9f5acbbc85db52efaf0ae9"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "3c7eb5fcca67b611065f73ff4325e398f8b051a3"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "df478eb13e5eece60695a2a5c50a34b1e89c62974d27c54f5fc005811b6817c1"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "61edabc9ec6241dbf43ca61d071996eb940b210cec1158d5b3b5f242a4cfbe2ae8ee74a83fc003605e8446c0f079b67eb5fd06dd43279df979da304273bfda33"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "72f7894a847e17fc05b6e1bb01b66b0c30d528cb952f0897d75e28551fddeec47c6fa5fcfb67fda141da21c32d6b9b81"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "9e67e917cf991a13870aac4770b0db3bad8ae37ef451570d72298b67a75805667106b6afaf4bfd55b8f616f7b7211fef"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "48d235d833f09debcf7adde9c53b46cc0c076ca3a4ac8e65eff600b38e095b2d"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "2778a840b785be1b6d2c48fd71adb2287f416ea60a0aae3cd250d8ff34f0818aeafe7bb8058eaac4fb4aa51360d8d0c88fa0eed0c7bd043a152d871177fab48c"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.springframework/spring-jcl@5.3.23?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://spring.io/projects/spring-framework"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/spring-projects/spring-framework/issues"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/spring-projects/spring-framework"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.springframework/spring-jcl@5.3.23?type=jar"
+ },
+ {
+ "publisher" : "FasterXML",
+ "group" : "com.fasterxml.jackson.datatype",
+ "name" : "jackson-datatype-jsr310",
+ "version" : "2.13.4",
+ "description" : "Add-on module to support JSR-310 (Java 8 Date & Time API) data types.",
+ "scope" : "optional",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "db49bcba378775ef4a9b134d38befb29"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "0e6d820112871f33cd94a1dcc54eef58874753b5"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "5ad75d210bacc17271925da28e1f393aaf8c83f6c92fbe5b2ed61954b84decf7"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "0507cfa28e5094ed0ece721e0445cab5b1b7b1f940f7fde85400fbbea593a12129aa334c664beb029d43900d641a04f7a6e043c1e40e4f61238a8ae8324bde7d"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "542e1e140da3dec96b8efe129ff0882575e080d2278bc9314da3fff6173d07a67ff248d018ee45307661ff8bb442ff02"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "e4190cf253ab6d935f8c22e5c761c27e3371d3bc5cb732fec389c8c7628d1a2aa575d324e1cdf6d2625da62a1e4f3047"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "6b171b779798da146ad27a33dd2487600e7d9d6091dc3a2ee7a858a48e9d3905"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "a165b2a8ac3f991867fd1a389cda95bbcd2d31e3b7aca35068b7cc81758e7679e6528714c5d14cba47d3e4b489b59dbc7db17791037472dcf8b0d0a43a6cb2e5"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/com.fasterxml.jackson.datatype/jackson-datatype-jsr310@2.13.4?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/FasterXML/jackson-modules-java8/issues"
+ },
+ {
+ "type" : "vcs",
+ "url" : "http://github.com/FasterXML/jackson-modules-java8"
+ },
+ {
+ "type" : "website",
+ "url" : "http://fasterxml.com/"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/com.fasterxml.jackson.datatype/jackson-datatype-jsr310@2.13.4?type=jar"
+ },
+ {
+ "publisher" : "FasterXML",
+ "group" : "com.fasterxml.jackson.core",
+ "name" : "jackson-annotations",
+ "version" : "2.13.4",
+ "description" : "Core annotations used for value types, used by Jackson data binding package.",
+ "scope" : "required",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "7e982dafcf25c24b365b5088eaf8a0a6"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "858c6cc78e1f08a885b1613e1d817c829df70a6e"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "ac5b27a634942391ca113850ee7db01df1499a240174021263501c05fc653b44"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "788a836b1631dabed472a0387de2ccdf86ab9091b04246d58e257780bb382e6ae068b6df862407c1256b0b83d1f9366813e54e98982f881c3d222a9f4a8e9ebb"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "7ae717dc399ccfe7c2a4831fae5c410d896e0a5afdff710003fa306ae2663a3c21ca000edfec9cdba30b0997c4c66757"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "fd2b435781f0870b572ce493a7c2e8cbc0cdfec80a24ae9a3d0874c27f84fb527a80afdc30a4f641a8f5389865603f4c"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "d6a55b712e499803461575b89eb8e2114307c88ba0e7fa56a65eab995b155f3d"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "295881324b5331e3e9530b26f719020f01f2ffd33ed96cdfad7983c3e4578e1eea0cce9d8ed622a1ec6b7b1b1e60af858b6813d08e4f31a38d1422d9c70a6a5f"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.13.4?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "vcs",
+ "url" : "http://github.com/FasterXML/jackson-annotations"
+ },
+ {
+ "type" : "website",
+ "url" : "http://fasterxml.com/"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.13.4?type=jar"
+ },
+ {
+ "publisher" : "FasterXML",
+ "group" : "com.fasterxml.jackson.core",
+ "name" : "jackson-core",
+ "version" : "2.13.4",
+ "description" : "Core Jackson processing abstractions (aka Streaming API), implementation for JSON",
+ "scope" : "required",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "e8f064827ddb8deb06e45d20988bcaa5"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "0cf934c681294b97ef6d80082faeefbe1edadf56"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "4c2e043200edd9ee7ba6fc378bd5c17784a5bf2388e152d208068b51fd0839cf"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "cf54bf5be3a5015a4b2c3ac986bf01f64517df224c8ba67197118d06f7fbe8ad64e39d002df326a72feb5aec8f0bc7f15338e90c4ba0668a167a0f03a81ce47f"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "5fd2723a9f5bae811e71b596180c56355497f87cdd6c9bdc74716224ea1d133b6ed4e5df20b6ec169b3745066019ad94"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "47217ac4e35397ed519916b26ec780ecbff69de0069afcbf9329a84f52b0e8fc4700e0c7b6bce7b9ddf585df7d944f22"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "2be4b3203664ef4249d40af8d3ea9516805a573515a8ece27c5e625c0969ed0f"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "75b4fa4464de9e5efbed460b940ef79b34fc7c477cb61540960f6e56039915a520176d6bf42077453cb049ec184d3b6d88006a4016a02b5de87da907d8c0791a"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/com.fasterxml.jackson.core/jackson-core@2.13.4?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "vcs",
+ "url" : "http://github.com/FasterXML/jackson-core"
+ },
+ {
+ "type" : "website",
+ "url" : "http://fasterxml.com/"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/com.fasterxml.jackson.core/jackson-core@2.13.4?type=jar"
+ },
+ {
+ "publisher" : "FasterXML",
+ "group" : "com.fasterxml.jackson.core",
+ "name" : "jackson-databind",
+ "version" : "2.13.4.2",
+ "description" : "General data-binding functionality for Jackson: works on core streaming API",
+ "scope" : "required",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "f26eab82fa1da09f8e8bc7e52fc82088"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "325c06bdfeb628cfb80ebaaf1a26cc1eb558a585"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "ba1a368137f9b92f48dd07f299ff7a782a69487b853ef5578215426fcde8f08b"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "89b5f58414d541d79f63ddedbcf4d5fafabc68d9bf9cad09f354c151e9685512e1433f2e22f6a7ffc8100c3c5fddbbb99fd64d7c6d4974b2915edb523f99ca16"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "87d3468179690f73868e8e2cad7b5107d4cea86ba7d6481ed288101f9d59b6b9ad27c7cfd1c466bdccc89effeb8291cd"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "16c34d4930500ab5749a3ff95ef5a0672c94b618dea5f88af37e61dbb19e366632f4d06c1a95d5132d451b329a4c32cb"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "222d42b2719c7ae81bc298570d4e37b745909a075e80cdc4beccd72be6a784c6"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "c2024c52d89b423a2049eba07badcb556b12ea953582002d47be7236d23cac7ca3cc4a099fd9f241dfeee8dbb8809a230721a2d7e6a63cdebebaf25f93bcdacd"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.13.4.2?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "vcs",
+ "url" : "http://github.com/FasterXML/jackson-databind"
+ },
+ {
+ "type" : "website",
+ "url" : "http://fasterxml.com/"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.13.4.2?type=jar"
+ },
+ {
+ "publisher" : "Pivotal Software, Inc.",
+ "group" : "org.springframework.boot",
+ "name" : "spring-boot-devtools",
+ "version" : "2.7.5",
+ "description" : "Spring Boot Developer Tools",
+ "scope" : "optional",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "92cb4f8657de6a5aa90387c1014a7a59"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "0e8510bace48b6a516515aa140cdfd758ad5a47c"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "8e99f26e90b28b486b2ee7d590ddbb923d65ae352bf7546dd55fbe2c49bb176b"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "b9a663f7ed817716bb12ec48fda81dacb2aec807af8cfef922d71754ed5b9068006bc9d081fdc92005c5f7c37b335eb515a8d53d2c8e3b894d32d5b90c68023b"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "63ec455e61459d5989906e0294b00bd0a24f61ca26037becc80fa368e0b9f93b687279860818b9813febbb1a7738218c"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "17922faadc8b7423db42aeb5bf5731eb3eb2a30511101b0be2c9b1b71d383a434585554eecac8d6160125392d185bb44"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "9e31d35181db0877440f7f2006859b5712d47d501075df4431dbd2e462acfdf7"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "90a82016e7c075931ef2df8468daff567ce7def9e217db41611fccaf2eac8d2cc878c0f0697f16c4bc61939e3a117956c20f8687e7f12a39bf80c65ff72c5422"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.springframework.boot/spring-boot-devtools@2.7.5?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://spring.io"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/spring-projects/spring-boot/issues"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/spring-projects/spring-boot"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.springframework.boot/spring-boot-devtools@2.7.5?type=jar"
+ },
+ {
+ "publisher" : "Pivotal Software, Inc.",
+ "group" : "org.springframework.boot",
+ "name" : "spring-boot",
+ "version" : "2.7.5",
+ "description" : "Spring Boot",
+ "scope" : "required",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "a7fed1122641f069bc7de65729fa2971"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "fd04e228e6e21b7ad13c10ae29afd31868d842e5"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "a5436b5886571a9ace64f3dca97793ec797be87fba097ff1a2217a47c8b8846a"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "e97751488d788c4913d5c2d54dce2a82d0d303d7f133d525194a83717976a4320c8ddc79579db7b054273c1abac409c514f4e2b73dd8ecf3bdcddb1117feca4a"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "30c1621b51493a080dc27ec01b736a40428a17cab6ad6584501bea8843111b955b470dea70217fb491846e7681407109"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "d7f3e9b5316f1d273a10501b566a0f0e5192487177550c5ff9c5fac362bc0f36fcb45ea6aa4ea658c25b360458a9220c"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "334501598c7fc146d906a608b10c1b9b61945bc3300533dafebc5cd90e31791f"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "0ff9bedcc47cf06df808fece18100b01751b84b40b7e1633344f31603f3e7877d325fc5e63b1b715c87453ff1f62d69a0607873b17cb3b40cb775b88254a9f34"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.springframework.boot/spring-boot@2.7.5?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://spring.io"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/spring-projects/spring-boot/issues"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/spring-projects/spring-boot"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.springframework.boot/spring-boot@2.7.5?type=jar"
+ },
+ {
+ "publisher" : "Pivotal Software, Inc.",
+ "group" : "org.springframework.boot",
+ "name" : "spring-boot-autoconfigure",
+ "version" : "2.7.5",
+ "description" : "Spring Boot AutoConfigure",
+ "scope" : "required",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "13ba5867ff68701c94a1a08e683e4553"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "96646e63a2296d0a3209383e81cdb8c87ab2f913"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "7c68a09bbf6da99e032d40fe812f3998b9ab2ff7f30d5289aa10c11a39a55da9"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "35196a132930558dbe83cb70efbc48e9c26c822820948472869d0207467b84a63487cf445a5cc0a63e50ae11348e363fdf3ef1af80574a47459bff22fcd6ff7e"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "4aeaecc8a16bc6db308561ccb51757a5ba12d4b8f8246e773c693b66ef13d24d28c0bc8ae34ecf7939ce3890efc71dbc"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "715920e1ecc8fd85ea9123401aff315b0b77a6bc52ceec4a7e2bb138b7d104622a85abf88ee1ec1f6cbb0102ba49caec"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "9932db8dff0deab38218c21764b14d957ab32cbc91f774b295e6851ef1ea9cfd"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "7db32d98ce6402422887956412e64b053d42cc39cba89b9ce8a1f8243ebca9c1d5ad8d2786167ed4ab674de78520505e0b989862514e091b65492c81449e4f19"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.springframework.boot/spring-boot-autoconfigure@2.7.5?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://spring.io"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/spring-projects/spring-boot/issues"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/spring-projects/spring-boot"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.springframework.boot/spring-boot-autoconfigure@2.7.5?type=jar"
+ },
+ {
+ "publisher" : "Ping Identity Corporation",
+ "group" : "com.unboundid",
+ "name" : "unboundid-ldapsdk",
+ "version" : "4.0.8",
+ "description" : "The UnboundID LDAP SDK for Java is a fast, comprehensive, and easy-to-use Java API for communicating with LDAP directory servers and performing related tasks like reading and writing LDIF, encoding and decoding data using base64 and ASN.1 BER, and performing secure communication. This package contains the Standard Edition of the LDAP SDK, which is a complete, general-purpose library for communicating with LDAPv3 directory servers.",
+ "scope" : "required",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "f712482a8ce0049d74f5edcd01916eb6"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "bf1a0d3790f8f7bd28f1172323c26fed2e3bbaa5"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "de2e896ab2989dee25f67fe2a3aaf789da0ae29e33aa86c9a359acb5bf9ca1fd"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "e47f737c9582b94506674abce257a61695a0a06f2e677e12c10c9c98686d11d25bf26517b6094c27ed80c919c873d6da2a648f544c3269dfd8def0242b36e527"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "a53ce2487ba7e6cf0c2c92fe18779d47ebcb167fc89fc38e4df53e12743016b1b8a8d5387ff76b89cab1dadcf7a3685d"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "97c494ff1d45100cd6a7878cc390985d6fbb0db15e4b6912522dbb51b7ccd4cfc57adf3e0eae89e472363833473eb582"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "287197b944ceb03e3ed394dc9c93f4fa8ac47c94c0483b5a78ba509ae9950eea"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "d00a64e950d5b5739ee4b6ad41539c4393dafaab45d6091527733553c9701159018f37a7e431108dc913f299c4e3315dc1584ebcd1e1af8d638674a62ffedf3c"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "name" : "GNU General Public License version 2 (GPLv2)",
+ "url" : "http://www.gnu.org/licenses/gpl-2.0.html"
+ }
+ },
+ {
+ "license" : {
+ "name" : "GNU Lesser General Public License version 2.1 (LGPLv2.1)",
+ "url" : "http://www.gnu.org/licenses/lgpl-2.1.html"
+ }
+ },
+ {
+ "license" : {
+ "name" : "UnboundID LDAP SDK Free Use License",
+ "url" : "https://docs.ldap.com/ldap-sdk/docs/LICENSE-UnboundID-LDAPSDK.txt"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/com.unboundid/unboundid-ldapsdk@4.0.8?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://github.com/pingidentity/ldapsdk"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/pingidentity/ldapsdk"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/com.unboundid/unboundid-ldapsdk@4.0.8?type=jar"
+ },
+ {
+ "publisher" : "SNMP4J.org",
+ "group" : "org.snmp4j",
+ "name" : "snmp4j",
+ "version" : "2.5.6",
+ "description" : "SNMP API for Java",
+ "scope" : "required",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "2ee1ee40672d90a5e097f3b9380aae7d"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "fc152ae9f1d9484eab5e9df925346560cb1ef864"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "ee9124afe56a9e398d1299691b637624de957ae95a3fc20f989f90fdfac3bc36"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "7979a81863796cf645d4fba3c7ddb032fb76ab6628996f491d4d87384931a6deb316a7898fe36b7e446566531ea24ade3efa347764d1d8954eafb03f70e882e9"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "1660196cf596b5d979f7d7faa63f0ff80208cddf8684574f9096f935f5f9be7f3c3b732016a0991e475b460e55d50d55"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "259d8f62a9b69f8df3edfe2fd2a3c7c372bdf12b1076848a9701d59fac869eb90963069c7428db91882f61c01ee3ee19"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "8692a1b280a5ca6c320c2e4f0e836263c5c37756d220c0233a94141e1a758948"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "717f4e9ff24425b39a4f837e22a339a9278d650b92db93dd4f2a30a1cd343b65380c7eddebe45629893c0183a081aeeeaf51885543e254d6d54fa9d7bae2f571"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.snmp4j/snmp4j@2.5.6?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "http://www.snmp4j.org"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.snmp4j/snmp4j@2.5.6?type=jar"
+ },
+ {
+ "group" : "org.openmuc",
+ "name" : "openiec61850",
+ "version" : "1.7.0",
+ "description" : "OpenIEC61850 is a library implementing the IEC 61850 MMS communication standard (client and server).",
+ "scope" : "required",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "15d0dd84fc73937f9f780c0ec986e6ae"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "a1802dc0cfa820d8c267836bc35689a44a49e55a"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "3a06bff402b3965d709cb89179107e1db9dbe26e694a2b8d879161c721eb54b1"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "1564b6fdb1d9107a17d657b270235240addafd63775e48902961053a80da6093232e00ef84809192dba9d24a00fca2a7e467faeccc0833c8fb52072fe9f8f733"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "d7fce503b21b69b53bb039535edba7448eb61eb5aa28900728c624142c0a322802706dc79644a2c9dd22c2b155df7018"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "6864eb02c972cfb425a44184baf85d389764739c44d6f3c3b342b86efe8b0967dbab0a127cff99216a94a07e6287826d"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "0beb4d62f94aa9611f37d0fd565614a2bb9e9793fc156351b09216e52afb74b9"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "1acbc6ff8f26c2f464621a216d5aeae2b26344e00848a812d5f79f02a0c0da5d4919d8fabb1c4e5f8d85bce7066bfb531bebffb487248dd45b8be09e135ed649"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.openmuc/openiec61850@1.7.0?type=jar",
+ "externalReferences" : [ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.openmuc/openiec61850@1.7.0?type=jar"
+ },
+ {
+ "publisher" : "QOS.ch",
+ "group" : "org.slf4j",
+ "name" : "slf4j-api",
+ "version" : "1.7.36",
+ "description" : "The slf4j API",
+ "scope" : "required",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "872da51f5de7f3923da4de871d57fd85"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "6c62681a2f655b49963a5983b8b0950a6120ae14"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "d3ef575e3e4979678dc01bf1dcce51021493b4d11fb7f1be8ad982877c16a1c0"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "f9b033fc019a44f98b16048da7e2b59edd4a6a527ba60e358f65ab88e0afae03a9340f1b3e8a543d49fa542290f499c5594259affa1ff3e6e7bf3b428d4c610b"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "2b14ad035877087157e379d3277dcdcd79e58d6bdb147c47d29e377d75ce53ad42cafbf22f5fb7827c7e946ff4876b9a"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "3bc3110dafb8d5be16a39f3b2671a466463cd99eb39610c0e4719a7bf2d928f2ea213c734887c6926a07c4cca7769e4b"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "ba2608179fcf46e2291a90b9cbb4aa30d718e481f59c350cc21c73b88d826881"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "14c4edcd19702ef607d78826839d8a6d3a39157df54b89a801d3d3cbbe1307131a77671b041c761122730fb1387888c5ec2e46bdd80e1cb07f8f144676441824"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "MIT",
+ "url" : "https://opensource.org/licenses/MIT"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.slf4j/slf4j-api@1.7.36?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "http://www.qos.ch"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/qos-ch/slf4j"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.slf4j/slf4j-api@1.7.36?type=jar"
+ },
+ {
+ "group" : "org.openmuc",
+ "name" : "jasn1-iec61850mod",
+ "version" : "1.10.0",
+ "description" : "jASN1 is a library used for encoding and decoding ASN.1 BER messages. This is a special modified version of the original jASN1 that encodes boolean true values as 0x01 instead of 0xff in order to be compatible with certain IEC 61850 devices",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "c4d1a9505d7c2361d4815caa489745d9"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "322990dd2bb1a67323fd15af435548b9b19ba3a9"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "d40bddb0a54907271a87cb9d52b6b7cf4d1830764b9a41c0a41dd4843f2e3b0c"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "4253bc2dec7d3c78c470ded13911032598132a2701c6620439247601cb51702281e0ec25577b3a726a4fcb93ab3d6f93f60393181b6c4cdc0299a95e9a766b15"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "58cb85be02ce144d6a4f7f211c36189386f0205b9fc07b1e31892228629428390f0271129538a2124e60c63248994148"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "583f5fb7af486390284f1cdcece6a42f1a15fa7fd2380e383c533c384ed3e8f18bbe8c929abda982203d5238c1c44d4d"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "b9783796a9457eed9e0c5834b5f92aa942cd15866ddeb1bad92d39bda4807497"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "c559f0de7b2549130294b784e4eb82efa3c3b6b46abddf225e8e831ef250294005953c2ac2d3fdb5514a504a7418fa11cbf18b2ac09d300433ec76299f99dd7b"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "MPL-2.0-no-copyleft-exception",
+ "url" : "https://www.mozilla.org/MPL/2.0/"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.openmuc/jasn1-iec61850mod@1.10.0?type=jar",
+ "externalReferences" : [ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.openmuc/jasn1-iec61850mod@1.10.0?type=jar"
+ },
+ {
+ "group" : "com.toedter",
+ "name" : "jcalendar",
+ "version" : "1.4",
+ "description" : "JCalendar is a Java date chooser bean for graphically picking a date. JCalendar is composed of several other Java beans, a JDayChooser, a JMonthChooser and a JYearChooser. All these beans have a locale property, provide several icons (Color 16x16, Color 32x32, Mono 16x16 and Mono 32x32) and their own locale property editor. So they can easily be used in GUI builders. Also part of the package is a JDateChooser, a bean composed of an IDateEditor (for direct date editing) and a button for opening a JCalendar for selecting the date.",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "0a0863943cf89741c7a0c2721027446d"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "180cf82b37b0c1324e7de33bd0114be7d86678cd"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "284fcfbb7938d5b85bb0f540c712fa042521a4c50f4a5d47da02ba19bff291eb"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "612a8bce9ad14474fdd163ab0f8e95e4b6f5318b405751c650143b4d18613de7e03355d022823a9971188fc90586b6c3a525730d58622816968a8fb97f7a6a26"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "17bb0d73a146352c95daee35656856d663d68bd25874edead4e1ebf3b206b7911501e0016941800d8b6e993cad342961"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "650e79914b21a5c5bbe4da322e7985ffa386da1736fc24f1ff891402389c646790aca2e983811869abd2a35339372444"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "0bb0129e2a8af16e05396a9821b315d3ceb1e056c442c3f17480be84f1d92899"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "27c418c1433b9c668a49214390b957b49839832f118e6633e753b391177f5c2be06b30fd833c22fcf1eb6d3bcb284f7442bb3f3460de0c5cf8bd5c6968f13c4e"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "name" : "GNU LESSER GENERAL PUBLIC LICENSE",
+ "url" : "http://www.gnu.org/licenses/lgpl.txt"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/com.toedter/jcalendar@1.4?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "vcs",
+ "url" : "http://www.toedter.com/en/jcalendar/"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/com.toedter/jcalendar@1.4?type=jar"
+ },
+ {
+ "group" : "io.cloudsoft.windows",
+ "name" : "winrm4j",
+ "version" : "0.12.3",
+ "description" : "A WinRM library for Java",
+ "scope" : "required",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "4949cdb744abfc3838e995bc2a69f4f0"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "a8b26482373f7ee758b89f29e8f48c1f7471dbe4"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "ac6ce779e904ee8bbe8e2bc14eb091b5f7e80295bbbfe6a7a5cff0654a70022e"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "87844303e7157ec566edd25a9ec17a2aa83b5488ddaf76af8a870f3b1e30c80b3f7074dfbe2413527bfcb40f2df9b1dea7d6f5b5fe6580ebb7163b30e7425b5c"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "29535bf0ad7661759bfd0594766ecb08d86197410291bb06d5bb66d36db611148492952608e4ea93dae4da897bc9adfe"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "6ac94f4edd502a12f4061de3c3dee1c10831ee42689e055c019fa78c54855a81425f5130ceb513b483127a8000717ac7"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "71d9ede5a988b729015f7bd279948dd9f47e24c1bf7948654bc1ef4b2541248d"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "26cf90162b63d8ef45ebad69dae26a43178ab2bc5566bb16f2b0701acc78daf02ac3ce541717629bd25b14e32671cb8baa85b4966ec177edd00d81baa5e0535e"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/io.cloudsoft.windows/winrm4j@0.12.3?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "vcs",
+ "url" : "http://github.com/cloudsoft/winrm4j"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/io.cloudsoft.windows/winrm4j@0.12.3?type=jar"
+ },
+ {
+ "group" : "io.cloudsoft.windows",
+ "name" : "winrm4j-client",
+ "version" : "0.12.3",
+ "description" : "A WinRM library for Java",
+ "scope" : "required",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "38fe4783e6100373582d0f08b128d831"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "376f872486db6cd3c9e933efbbe69316906e0fd4"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "7b8040d9f14afd1375ee4d13086ed8c73f1a031c95bf0a8322b2675d3d25fb0e"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "13a20f1a882a1b8c2d574db9a8466c079dcb0e7c64dc38f02153ee4b1a1be271d5193002c4395bb3ee3f6efd6aa13ed22cc8490298efad2ceb57e27d56acfeac"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "6fd5f91317c5c38e105ee9372a74758e6b4ae06cf6f2b95abcc2176a01bebbe29b48befa8a2c7724a9b6dba99432fed7"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "a900e0504f0ad605e93745740ceb47f7958ab71a7d0b1d0d1bbf5ba0accae6b57990823c8ae9738fc049667c3ff3d9c4"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "c7617a340be7c090eead8d841979ca94b928373694045ac4e7dfb74a4e307786"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "34c41a322285255f85d30dcc5d33c41dc07f0d202f349352866f2ad699ea3e54ef45fdaf1237bbb1cb32525269073f0ace4aba2eedda91a9825aa91a62e45d5a"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/io.cloudsoft.windows/winrm4j-client@0.12.3?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "vcs",
+ "url" : "http://github.com/cloudsoft/winrm4j"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/io.cloudsoft.windows/winrm4j-client@0.12.3?type=jar"
+ },
+ {
+ "publisher" : "The Apache Software Foundation",
+ "group" : "org.apache.cxf",
+ "name" : "cxf-rt-transports-http",
+ "version" : "3.3.9",
+ "description" : "Apache CXF Runtime HTTP Transport",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "6642a02ae751bed1554e50b216c14b53"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "ed3cd6f670641d352dea21405649d03f587c9b43"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "01ac41fa9e9db5f26323df9f1fb58eef712355cfab789b27b2017a8713d2f45e"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "aeca9e8fddbc77a25a9dfb684fa25f5cc8549ba5ec8b8c3530058739658b62a8c7d9a698d54eeed90e6129360501ffc0282bf511c16054f6856d35ef49430f6c"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "94ad43cd7f3cb6bbc5667b02f512ef7a2e0f703651e4aca285792348f23e4d6f69ab8486ef24a56aa75d0a111aefa9dc"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "be7122b4feb2db23ef1bf87f669bdf3d3e9ee8b2054f17c9efcab95194b0d8f402097fadb716b16f30b4faf5e0e275bd"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "45cc96119f01dbacfa64b73c8fb3ea18aac8cd9cb91303357190bdecb9f253f8"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "92ff0ad63a44c9f4e37f2baeb31c401293e5b6c7655827a685e6b04cd11f6a7729150849f7b91bbf981451d208a72e0afcb947b5fcf6e1f6a591ac23f091cc68"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.apache.cxf/cxf-rt-transports-http@3.3.9?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://www.apache.org/"
+ },
+ {
+ "type" : "build-system",
+ "url" : "https://builds.apache.org/view/A-D/view/CXF/"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://repository.apache.org/service/local/staging/deploy/maven2"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://issues.apache.org/jira/browse/CXF"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "https://mail-archives.apache.org/mod_mbox/cxf-users"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://gitbox.apache.org/repos/asf?p=cxf.git;a=summary"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.apache.cxf/cxf-rt-transports-http@3.3.9?type=jar"
+ },
+ {
+ "publisher" : "The Apache Software Foundation",
+ "group" : "org.apache.cxf",
+ "name" : "cxf-core",
+ "version" : "3.3.9",
+ "description" : "Apache CXF Core",
+ "scope" : "required",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "841dd1708759bff970318618cd027fc8"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "fef0312fc53fdcc0d90fa5ba454bb254e4e49fd4"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "05e57d0f499cf6b3e5c8ec53276722ee976db49123b86a85a4659f2ba621b9b0"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "7dd3fd770b4d800860108e86d7336113c120d1664b1974bba640c135d164414872d4ce9915163760167060c5d7bf0a156752bff94255482116448c00586d45c9"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "e375af54a6931c63d036648dac6581dc2f45e80150446bf0e5eb78b87e575394ed8f129442ce536b9cd51c304a85c91a"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "5bba3d675604c5432e90eafaa3ab65028ff2abe9206af1dde9a172bbbd417e0a7f64debc16e62e9b870a4dc03db1b3c6"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "4a2c31a93e64c4b2c145e3139db17a62c514811a4fbd962404459a70f6615e12"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "2a2f42144f3e56e0c5dcc93ed351aded21c1478340a295dd4989c1a24632766057663206513785eb8a02253cc53e746b7ded646ec4c925465ce531a912ee082f"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.apache.cxf/cxf-core@3.3.9?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://www.apache.org/"
+ },
+ {
+ "type" : "build-system",
+ "url" : "https://builds.apache.org/view/A-D/view/CXF/"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://repository.apache.org/service/local/staging/deploy/maven2"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://issues.apache.org/jira/browse/CXF"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "https://mail-archives.apache.org/mod_mbox/cxf-users"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://gitbox.apache.org/repos/asf?p=cxf.git;a=summary"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.apache.cxf/cxf-core@3.3.9?type=jar"
+ },
+ {
+ "publisher" : "The Apache Software Foundation",
+ "group" : "org.apache.ws.xmlschema",
+ "name" : "xmlschema-core",
+ "version" : "2.2.5",
+ "description" : "Commons XMLSchema is a light weight schema object model that can be used to manipulate or generate XML schema.",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "8cbc8d8b10fb67051a17eaf94bee5a9d"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "789b4ad32ad7ff021c7731fa43d324c0ce8105f2"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "803194d9877110ea2ca795b0b16b13c89851f631d5c601ab5ef9d8ec7e1b0ea6"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "1eb699b43dc25df52298859fa603445dbd3fb2892694c5c931207cfb5f09a075440912a556eae130f19e1008b0ff53e052a8dcf7df52ad0101b402bbfd0d5b62"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "37d7c8931976082cb256630a8a795042a3b300c996c51aa65eb63fc9173c2c98ff7936249a97590a39234512bbd6e594"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "7ba43a0e53ba5feb95137487647b1ce642cf01a38a785957d82f8be7fcd30b222c8a637fe6fc3762f2d53d98de89115a"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "b9ddf38e1e6c6f14b2db5da0190a955e1a33ee223dcf8ceba1361805faf29161"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "c5adac90dfd591d8fca6b43ca7e20e0acda8c8396e3f162a0ff0c06ccb261d82853b227b03921482da8795d9af971bf9cbb284892bb0a466cff4b57ef8b1af89"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.apache.ws.xmlschema/xmlschema-core@2.2.5?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://www.apache.org/"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://issues.apache.org/jira/browse/XMLSCHEMA"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "https://mail-archives.apache.org/mod_mbox/ws-dev/"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://gitbox.apache.org/repos/asf?p=ws-xmlschema.git;a=summary"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://repository.apache.org/service/local/staging/deploy/maven2"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.apache.ws.xmlschema/xmlschema-core@2.2.5?type=jar"
+ },
+ {
+ "publisher" : "GlassFish Community",
+ "group" : "javax.annotation",
+ "name" : "javax.annotation-api",
+ "version" : "1.3.2",
+ "description" : "Common Annotations for the JavaTM Platform API",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "2ab1973eefffaa2aeec47d50b9e40b9d"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "934c04d3cfef185a8008e7bf34331b79730a9d43"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "e04ba5195bcd555dc95650f7cc614d151e4bcd52d29a10b8aa2197f3ab89ab9b"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "679cf44c3b9d635b43ed122a555d570292c3f0937c33871c40438a1a53e2058c80578694ec9466eac9e280e19bfb7a95b261594cc4c1161c85dc97df6235e553"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "fc0058495e54efb6e05a34e3ff422e7c8347bcc77d6d9b87e9253424968dee6ef6a215c318d7e54f8705276be81f0682"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "ed6464b715de6ced0d9981a3f28140824946a4b7a02ffaff6116c833bb36e8f77a6282ce63c0d82cfe841d4fd6916891"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "ecfc9bef24ae28cf94c6775ecf6e2086d90a25d8d5476a4f6bb24001601b6cd0"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "f2b333527faedf504f60aa70a3d491972fa76f7e61e6351027f74613f41001157656824fe312b6e1df6dc4979704fe2a745b618d5368a97fe0bf8749739de9e2"
+ }
+ ],
+ "licenses" : [ ],
+ "purl" : "pkg:maven/javax.annotation/javax.annotation-api@1.3.2?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://javaee.github.io/glassfish"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/javaee/javax.annotation/issues"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/javaee/javax.annotation"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://maven.java.net/service/local/staging/deploy/maven2/"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/javax.annotation/javax.annotation-api@1.3.2?type=jar"
+ },
+ {
+ "publisher" : "Oracle",
+ "group" : "javax.xml.ws",
+ "name" : "jaxws-api",
+ "version" : "2.3.1",
+ "description" : "JAX-WS (JSR 224) API",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "5a6f94e95cc2054bc840cc2f2fedc5d8"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "15e46dba25b1f767a3f517721badf6cce8dbb13d"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "a447f84f95658ea68b347acffe156f7700c62a37ede15d81e5298fb8e5fe6dcf"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "f6795f2e1e72902c29eb976313dbb423d46d22f665846d20ad2ac8f486d32367566e0d81d2ba4614f65c80298b8bdc3fa37de81d7b6c4341a1e228dc8c2b09a1"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "651a5c020788ddb9aa81683dfad98117b00bf9f46c003f502849ab3a8c99453ae9a1f1f39617a951ea8fc39e5d01aadc"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "ee746963571fafb07c2ecb1752a84a6f749c2257e0ac70402596adf674079b88d7d41e0ebdee9981cfd38dc8cf940474"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "9888bb90770c67ee108a02b3a608b8851a55b83a5ee196b6c16cc4365189ec73"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "3612fb28e8b88a50f7bdcbf5d3bba4702484f2d2446a6699587d91fdfbae7314b5b60d1325fb183739b589092a9772def9b6400e394644782c07d8e89415668f"
+ }
+ ],
+ "licenses" : [ ],
+ "purl" : "pkg:maven/javax.xml.ws/jaxws-api@2.3.1?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "http://www.oracle.com"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/javaee/jax-ws-spec/issues"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "https://javaee.groups.io/g/javaee-spec/topics"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/javaee/jax-ws-spec"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://maven.java.net/service/local/staging/deploy/maven2/"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/javax.xml.ws/jaxws-api@2.3.1?type=jar"
+ },
+ {
+ "publisher" : "Oracle",
+ "group" : "javax.xml.soap",
+ "name" : "javax.xml.soap-api",
+ "version" : "1.4.0",
+ "description" : "SAAJ API",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "fb8bbe2cdda8ff7bd945fcb9f0f6b61c"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "667ef2eee594ca7e05a1cbe0b37a428f7b57778f"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "141374e33be99768611a2d42b9d33571a0c5b9763beca9c2dc90900d8cc8f767"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "359293d81529080015f79663ed8adb4a0245de99aa8ab427f57cceaa222622ada80763728fd9473eacd0e70bd24d1a5e8737ded0ade7c510b73ecd30da284109"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "46ffb2747c3c2c7b0209d049dec81534b82c44399a133b1dcae2859a5fe1e3189691e216ab0820101f177eb49140e095"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "6c2523c8e31520b443c72227666556300cdd17b76b618995d317a422de65cf8583fb96c382d06cfa1754016135e0a158"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "b2f0df2273c7bdec54edb2033e8d5e424013ace46ccfff5e63314365d8ce873e"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "3f86e51df021964f66c3b4c5a6f73c2b4e799f341b292feaa9c77f3c34ae5599466af31945aa4f537c072a214a8bcc2a14e8693f8fce94ad44391bcb97c746a7"
+ }
+ ],
+ "licenses" : [ ],
+ "purl" : "pkg:maven/javax.xml.soap/javax.xml.soap-api@1.4.0?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "http://www.oracle.com"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/javaee/javax.xml.soap/issues"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "https://javaee.groups.io/g/javaee-spec/topics"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/javaee/javax.xml.soap"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://maven.java.net/service/local/staging/deploy/maven2/"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/javax.xml.soap/javax.xml.soap-api@1.4.0?type=jar"
+ },
+ {
+ "publisher" : "Oracle",
+ "group" : "com.sun.activation",
+ "name" : "javax.activation",
+ "version" : "1.2.0",
+ "description" : "${project.name}",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "be7c430df50b330cffc4848a3abedbfb"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "bf744c1e2776ed1de3c55c8dac1057ec331ef744"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "993302b16cd7056f21e779cc577d175a810bb4900ef73cd8fbf2b50f928ba9ce"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "b4cbdd8fd1703e4b2e1e691db78fbcf2232d836f740d1821c4c191a14f9472508e27a40d06e4b6b153964af68032959c22945ba169a0ca4018b7748162f420a6"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "7e64f03db2d4f9bacde713ca8aadfcf55e327d92b3cfa54b8cb2f2ffa0cc478d3c7e16f23230ae8266f0dace035142d4"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "b41aa6abfccc16e1f21760b4b3dbec7422f917fcd0c072d109c3024b1c40793820820940dfe07bfa50e00b47c3a0d504"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "ab6207acdd72036b3a5c6e647776b7466e089212602962d87eeb2ac1845508a1"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "e9fea84495f286e0f0ec1de6d002cae9e4676b0d2a9ac4706d155ac6d5ed515a76f3fcf0b8c22161f3cb456e048cce9171e3e42edc83888776173c8e2004a035"
+ }
+ ],
+ "licenses" : [ ],
+ "purl" : "pkg:maven/com.sun.activation/javax.activation@1.2.0?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "http://www.oracle.com"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/javaee/activation/issues"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/javaee/activation"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://maven.java.net/service/local/staging/deploy/maven2/"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/com.sun.activation/javax.activation@1.2.0?type=jar"
+ },
+ {
+ "publisher" : "The Apache Software Foundation",
+ "group" : "org.apache.geronimo.specs",
+ "name" : "geronimo-ws-metadata_2.0_spec",
+ "version" : "1.1.3",
+ "description" : "Web Services Metadata 2.0 API",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "7b87d27ff907a4ed84fe8a0a209b7257"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "5b6aa041a37145d6deedd92c66b3a266d4a601a1"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "905806340528726b2d1a53a82024442ab31b95a6f730750f0720ded806f888a5"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "047790eb209aacb4ba1f1976eea0176050d74befe30c34fd174a4a9ac9e0604a500bf5af26b25f4ecc11d644e64eed4134a5ae2c1969852522cc674920bd7a41"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "1c6e9e8189c4fb00bce6992c483b57196f6cea27f3a3a2c79fb5c867a39ef23659f6ea998fe50355a7e3d886582f3a52"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "a1c4fba0538447d9461f57844ac2afbf97c75539526d37ea3beb840fe2ce2a47731e610116cdf3484a595ad906a57176"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "4a849268bcd9845ce1fe60c795c65d50633f5047569e4c4a53bd60b783ca62a4"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "d8cdadaf35428b85020f03c01a5e102801615f3a1f4d6b968951565dbafd720e7f05b7089a79d7a293c8c5d000a9d03251a0d50dc2ca51349df5713147c3aa41"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.apache.geronimo.specs/geronimo-ws-metadata_2.0_spec@1.1.3?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "vcs",
+ "url" : "http://svn.apache.org/viewcvs.cgi/geronimo/specs/tags/geronimo-ws-metadata_2.0_spec-1.1.3"
+ },
+ {
+ "type" : "website",
+ "url" : "http://www.apache.org"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://issues.apache.org/jira/browse/GERONIMO"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "http://mail-archives.apache.org/mod_mbox/geronimo-user"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://repository.apache.org/service/local/staging/deploy/maven2"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.apache.geronimo.specs/geronimo-ws-metadata_2.0_spec@1.1.3?type=jar"
+ },
+ {
+ "publisher" : "Oracle Corporation",
+ "group" : "com.sun.xml.messaging.saaj",
+ "name" : "saaj-impl",
+ "version" : "1.5.3",
+ "description" : "Implementation of Jakarta SOAP with Attachments Specification",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "9c3bd20b7350f99f18f8c38fbed90199"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "1cd4aa51ea7a8987fe930083e3cd05e2ac72505b"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "21d451aa7dbe1254388ecc4e5ea71aabbc519c7d7344c9d93e9f79954f38b32b"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "de46ee6d6e294954df3cac45dd7738490592478a240ce335e4f12a28fbac97c3728cf9b06bd87a1c295fe44a03fecce0ec50fb1a438a1180f285c10e80726fd2"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "3efe236526171d9797f447525f7e814c08870eaf80df9434e58b6058c8b3b3eec654a165270e282e83364d280865f9bf"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "af04a963878dc17c290f126cfc11bc177dd2814df41790acb22cad81ca7c31f1a894862883127989a94922c7fecc3b7d"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "d1cac8bb371bd03a8980c79a3103fe569e51661ed97c4963381cb8dd0615f42c"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "d746b9d7e892a2a49624c066610096858e0e8d93bc6613f470a2c77ccf2ffd4bd4fa131c33cc5ab7e765940e66a2dd201379f2199352a10381b129e585dde3e9"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "BSD-3-Clause"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/com.sun.xml.messaging.saaj/saaj-impl@1.5.3?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "http://www.oracle.com/"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/eclipse-ee4j/metro-saaj/issues"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "https://www.eclipse.org/lists/metro-dev"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/eclipse-ee4j/metro-saaj"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/com.sun.xml.messaging.saaj/saaj-impl@1.5.3?type=jar"
+ },
+ {
+ "publisher" : "Eclipse Foundation",
+ "group" : "jakarta.xml.soap",
+ "name" : "jakarta.xml.soap-api",
+ "version" : "1.4.2",
+ "description" : "Provides the API for creating and building SOAP messages.",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "d19eb8a4a5401296985db733868425e0"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "4f71fa8ca30be4d04ba658339df3c927fa21209a"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "0b2e9db574869c09b18e7fe87482be2e4e14b3f3cc8207646595806eede77706"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "640b1ad955bf9283d5c557de7a566bc4d100c8f6580e97ed4bcf24abe104225db6246fff18fa13932b3c45c877c6d560f7778eb115e6bd339768766f089901ce"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "568580a4936eca8c4afa1e823c72579b010f77d7d7af613b92483dbb00f0d380f508057281e3020c68455f82d5c8997e"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "6c26b47985d5e8623c0b9cd38bbd1828c84004fe82237528e779069ecddb2fed23a8b93a009c641f6fb640e1d45a1b51"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "81ca7380850de707ccc791655de78e46b73fac45c6277fc283925c99f894de57"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "08e78282a1aa093c3673d3417d593b6fd962db3ea10457ee4f19d2f242ea5876b68dbe30b471d4b2e20f3d90c77ef71430975e52ae879f1f91040aa87b5478c4"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "BSD-3-Clause"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/jakarta.xml.soap/jakarta.xml.soap-api@1.4.2?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/eclipse-ee4j/saaj-api/issues"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "https://dev.eclipse.org/mhonarc/lists/jaxws-dev"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/eclipse-ee4j/saaj-api"
+ },
+ {
+ "type" : "website",
+ "url" : "https://www.eclipse.org"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/jakarta.xml.soap/jakarta.xml.soap-api@1.4.2?type=jar"
+ },
+ {
+ "publisher" : "Eclipse Foundation",
+ "group" : "org.jvnet.staxex",
+ "name" : "stax-ex",
+ "version" : "1.8.3",
+ "description" : "Extensions to JSR-173 StAX API.",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "f6d943e74064cc1e7986236699d6cd04"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "4d69b68ee007aa15238cd4477392068b32747df3"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "bee08da10bbc481418a1af70b9e9a80321b745bfb4dbdebbe98c1aa17c45caf8"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "fb78de98748cfc5bb8326f324c7ac408552a19cec55278fef7900f31595215b85cb3ca31910714bd33eab695557ea550e154acf5919c0d56c7ea91755ae2c3b0"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "a3b732402d31cc5b742491cb86ae551b237ef82e58ff287b34885578a969466bc0b36618325814d54a9669e2e0467cbc"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "ef34e014b2db5eb7948d175eedb1092f31099fcd0202cd332aef3591850d212d393c61ebeba0f29726ce20522ab167cb"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "e6c04ea88f87f34f9acf3c204f355f83ad754f5aa06a8f86a502b44f29549166"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "bb1330140ff310519c2a7e37ebaca8a3c29ebeb8de3e6b29edb591f4d8dc8177d350fccde6bc3d5dea5793de1aac6054ca6b132f4d4bac745e17176debc2ea35"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "BSD-3-Clause"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.jvnet.staxex/stax-ex@1.8.3?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/eclipse-ee4j/jaxb-stax-ex/issues"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "https://dev.eclipse.org/mhonarc/lists/jaxb-impl-dev"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/eclipse-ee4j/jaxb-stax-ex"
+ },
+ {
+ "type" : "website",
+ "url" : "https://www.eclipse.org"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.jvnet.staxex/stax-ex@1.8.3?type=jar"
+ },
+ {
+ "publisher" : "JacORB",
+ "group" : "org.jacorb",
+ "name" : "jacorb-omgapi",
+ "version" : "3.9",
+ "description" : "JacORB OMG API Stubs",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "6dc650cf37bcf15dcc6a2f6e745aa9bf"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "0ff5bf7ba180c5534191ac9a02e7d6937748bf36"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "247f565dfd4b0c1ee54b1e0a6288be84fc66ae961c34715171ca2867c6857447"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "a8b17c3b3f7150b760f8375ba54ef2c826fa0e5cf96a7f84d7f409496df31628f27cbb6449a8114b9b5485bb950319c64d6bcb52f7db8862bb101890a55c0328"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "86a076941587a2a23d49fb4af639380132895160c58e9d48a6deacea9b761d13f4130ce65ffd6a4df91a75f046013f8a"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "6a0739165a89f887fc1d9436816cc72bc27fb6491525497235fc649e45853d5f8aa63d2bef1be8f14b06d48a1b736915"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "a416b222bdd96907bea007389d9bac7ac29497b375ab96bfbd27bc48319cb5a2"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "dcd9a56dfb4cd9d062253a41dcef80f59e037afee155d75bae2ffb29a4037dd70df00f75bfb0af182823e517316015f4354a2a875bf10a5ff11ac7c36905c63e"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "name" : "GNU Lesser General Public License",
+ "url" : "https://www.gnu.org/licenses/old-licenses/lgpl-2.1.html"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.jacorb/jacorb-omgapi@3.9?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "http://www.jacorb.org"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "http://www.jacorb.org/cgi-bin/bugzilla/index.cgi"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/JacORB/JacORB"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.jacorb/jacorb-omgapi@3.9?type=jar"
+ },
+ {
+ "publisher" : "Apache Software Foundation",
+ "group" : "org.apache.geronimo.specs",
+ "name" : "geronimo-jta_1.1_spec",
+ "version" : "1.1.1",
+ "description" : "Provides open-source implementations of Sun specifications.",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "4aa8d50456bcec0bf6f032ceb182ad64"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "aabab3165b8ea936b9360abbf448459c0d04a5a4"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "3a0c3c1bbc2efe8383969574922791959670ef547d6c897496915617025c3023"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "ee10f942eda7199a522aa0838ad69c9b58117580bd60185b4c01bfc43913fd485154b1b3d437b0a361d1bed8a18974c84f5bdf1cb27ed9bc18fe33fba4d8f1f8"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "56f9ad1bcf3f0c3d9ed9c6c372274a47e046ad88335c842f2959c95646eebc14d0ca68562d86a53b8ed6fd56613297bc"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "64b62186232c70ed56c386cfe2eefb45345c8a39f60ccae6b41c0b1664731b77a047a02b7c888ec1ff68cb2a2c2b8a90"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "a8093bd9834f683448f2f01ea33383ad27572ff09f9c29bcef1ecf43d1d33c7c"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "aeb00105ed515e0127fc391fa86b3e805819047b6aa42963c0b6d1bbf23216c26efd7152655d18d428b3965a2bdd6695aaca8d261030841b661df539f96f9d7c"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.apache.geronimo.specs/geronimo-jta_1.1_spec@1.1.1?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "http://www.apache.org"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "http://issues.apache.org/jira/browse/GERONIMO"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "http://mail-archives.apache.org/mod_mbox/geronimo-user"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.apache.geronimo.specs/geronimo-jta_1.1_spec@1.1.1?type=jar"
+ },
+ {
+ "publisher" : "JBoss by Red Hat",
+ "group" : "org.jboss.spec.javax.rmi",
+ "name" : "jboss-rmi-api_1.0_spec",
+ "version" : "1.0.6.Final",
+ "description" : "The javax.rmi and javax.rmi.CORBA classes",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "c7ae7add11a83cbfee9950ab41d1b06b"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "91c0dd9795b90a040bbd3eb591ce4f80bf084caf"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "07615653320a010a648d164e77751daddcfea5602148aa4da2f052bc6af0689e"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "7c4d42e4667ac945cb4a12465cf33b4a546e901ed9dc887113521226de3cdcece383539efb36b2a354911e558a998ef3c615af23e07db809e3b9a601f07f9160"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "1db721c31ee3823afa8cba00836fe90fd101bf4eb59aefc62168de914494b077b337d4b77ddc73bba5e77d7411e8083f"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "b7225ba4cc04a86fa6a8cb69a354334087c281849ed911d9d2cd47b6f9a2f6a0be9ac2a1658caf79e0d9c5bd434e48bc"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "c882e0e97fbd3cbe6a51442f01475d1bcb05abdbb144f26e7d119daa0c586400"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "c6faa07271a730b8b93480c389202c9e25c58ba9eb0c3da85bb26ca724d7ecd8feccdce5f91f20fba535034bf5a6caf1559cfa3b4858b3af4ecbd1425e0f9579"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "name" : "lgpl",
+ "url" : "http://repository.jboss.org/licenses/lgpl-2.1.txt"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.jboss.spec.javax.rmi/jboss-rmi-api_1.0_spec@1.0.6.Final?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/jboss/jboss-rmi-api_spec"
+ },
+ {
+ "type" : "website",
+ "url" : "http://www.jboss.org"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://issues.jboss.org/"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "http://lists.jboss.org/pipermail/jboss-user/"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.jboss.spec.javax.rmi/jboss-rmi-api_1.0_spec@1.0.6.Final?type=jar"
+ },
+ {
+ "publisher" : "The Apache Software Foundation",
+ "group" : "org.apache.cxf",
+ "name" : "cxf-rt-transports-http-hc",
+ "version" : "3.3.9",
+ "description" : "Apache CXF Runtime HTTP Async Transport",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "6d2645198151fd3fd9e1a3ac2c60303b"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "bf4f81e88bd861a334563fc634af71a340226da4"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "3ec3267d52174c44e37d35fb70730a7ab81d5e087c9736be0ab782ce2b39e3ce"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "e1e08d0c1330c205726515442e635fab3a67c0326e82842687769ce417bf4a483d635a60a569bcad4b5152a72023e79f5d8fce8563ea89709b6b90c8dbf532f0"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "0f7ebf48ff937ca089fa570b9d92885810f6d81e08a596758c4ee576b551a221f4542adae51782f215d853504bcf1674"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "4c205d52ce81ca8d68b1245dc901a12d53abef87aaeb8357d629bce2e8b6c6c4f36efa3efecc7d94142c12e68a309dd4"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "047037786a3ff9ffe32041ec7bbb800537a25a11d53a72c4e010cfc214c6d6c5"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "b43dec026bc5770931d13142051068ed554286dcbb09e40f7cf31f95177eeb34d8987aeaa13ddd626a7f3959e7f8e421955d3629b4a12dff4e1932fa6e5279dd"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.apache.cxf/cxf-rt-transports-http-hc@3.3.9?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://www.apache.org/"
+ },
+ {
+ "type" : "build-system",
+ "url" : "https://builds.apache.org/view/A-D/view/CXF/"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://repository.apache.org/service/local/staging/deploy/maven2"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://issues.apache.org/jira/browse/CXF"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "https://mail-archives.apache.org/mod_mbox/cxf-users"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://gitbox.apache.org/repos/asf?p=cxf.git;a=summary"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.apache.cxf/cxf-rt-transports-http-hc@3.3.9?type=jar"
+ },
+ {
+ "publisher" : "QOS.ch",
+ "group" : "org.slf4j",
+ "name" : "jcl-over-slf4j",
+ "version" : "1.7.36",
+ "description" : "JCL 1.2 implemented over SLF4J",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "8065610cde33ed9fd5d34367912c1938"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "d877e195a05aca4a2f1ad2ff14bfec1393af4b5e"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "ab57ca8fd223772c17365d121f59e94ecbf0ae59d08c03a3cb5b81071c019195"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "ac231ab44521bb5478742af13624db5c14aea809c3a2c13b989fba30186ba6db840f2d1b4aea54f9c1f779547b975fd042dd353f54025592774d40192bd71148"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "618704032ab3f8f87091ac797e2c9319a4b7f36a53e060695d56173b67ce9bc9e16c74cba228e758ac90e279df75428a"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "95a189173932d8080d91de8b71b9d1bca49a330db7cad9c41d51fe9514a9f6299b24e31441f06681b3dcc188807dcf40"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "7aef3380fdeae9b7a4adfa6ad69c2c92f246fcdbd4fcd3d1056ee846d8ef92fb"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "da7d1b8e5a150300e1051dda5755df64275e5822256ef624fd8a37c582cc2774aadce97f8732de52e54b1c74e28ba601d3bfc3482abb4a24f7e9f779e7e8dd64"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.slf4j/jcl-over-slf4j@1.7.36?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "http://www.qos.ch"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/qos-ch/slf4j"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.slf4j/jcl-over-slf4j@1.7.36?type=jar"
+ },
+ {
+ "publisher" : "The Apache Software Foundation",
+ "group" : "org.apache.cxf",
+ "name" : "cxf-rt-frontend-jaxws",
+ "version" : "3.3.9",
+ "description" : "Apache CXF Runtime JAX-WS Frontend",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "7a8dd340c7784d40bec22a5556c8af1c"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "f742a8e6d946f6821c5f63cc917634fd54a96ceb"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "fb019ddd46b3a9189a52800bd7ae14bed25d1033888fc67b5065353820f44c44"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "59c5adfef7cb1ee7bc2e6124f5d85dbac4732d4f2473fd16df78bd5080041648283e001792c1269f833986740e85800b770700db1726ece71283a3b44fd76722"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "00a72d00724205ce8abf5c3708ca32a1c4b5270c524be95b044b182dd9d738de7fded095d0aabb2b8f03f3d725884c10"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "d1739943210c78f2d093965a9104a9a4e2eba86e5c75d79d6a22dee5611a0ba96eeb3ae8caab1aa1ce734f42fe8e8505"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "be4c116f6a2c5866d667b7a981d4a3e2c861867cebe575101e22ca88a1a5de89"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "dc4d5660c14aa22148667ed31ce5adfc93a5584b3fbac4841909ac792cad0b3641a04ca67cb459e84fa377ecd88b12832b3e9482f8fe383089eb13c9d6fa72f4"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.apache.cxf/cxf-rt-frontend-jaxws@3.3.9?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://www.apache.org/"
+ },
+ {
+ "type" : "build-system",
+ "url" : "https://builds.apache.org/view/A-D/view/CXF/"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://repository.apache.org/service/local/staging/deploy/maven2"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://issues.apache.org/jira/browse/CXF"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "https://mail-archives.apache.org/mod_mbox/cxf-users"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://gitbox.apache.org/repos/asf?p=cxf.git;a=summary"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.apache.cxf/cxf-rt-frontend-jaxws@3.3.9?type=jar"
+ },
+ {
+ "publisher" : "Apache Software Foundation",
+ "group" : "xml-resolver",
+ "name" : "xml-resolver",
+ "version" : "1.2",
+ "description" : "xml-commons provides an Apache-hosted set of DOM, SAX, and JAXP interfaces for use in other xml-based projects. Our hope is that we can standardize on both a common version and packaging scheme for these critical XML standards interfaces to make the lives of both our developers and users easier.",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "706c533146c1f4ee46b66659ea14583a"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "3d0f97750b3a03e0971831566067754ba4bfd68c"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "47dcde8986019314ef78ae7280a94973a21d2ed95075a40a000b42da956429e1"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "eca19b8a6b04c279b7982b16f1763ca1d49b0081a8d4ca2b7419f057d22a0ec60795eb4d901c5eb25dd4a733248876aa2f522c17a6144a26c8ede9fb2f84531a"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "3eceda91a1ce0a35c490eb4c0bd94b552f96b8e5064b257435d89d65fcc2b04c706d996415efe3cf8a7413db479c3710"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "717fa1ea46c7a6265351dd212a106870c427e71de0bde251a409ee6e7dfe02c61966ef306d20cea5d8712cf7bf58d07a"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "bb83f90bc8b898878455441b3712a2bf489b6584e6685e5cb82d78cab596ae46"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "762f05d93e4f9cc95a969f8fecad13f97064897c83f4e057e84fe054601275912b68be76bb50da7e8d90b30846712b77341eb26a6405c59c07b06e223e9b027c"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/xml-resolver/xml-resolver@1.2?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "issue-tracker",
+ "url" : "http://issues.apache.org/bugzilla/"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "http://mail-archives.apache.org/mod_mbox/xml-commons-dev/"
+ },
+ {
+ "type" : "vcs",
+ "url" : "http://svn.apache.org/viewvc/xml/commons/tags/xml-commons-resolver-1_2/"
+ },
+ {
+ "type" : "website",
+ "url" : "http://www.apache.org/"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/xml-resolver/xml-resolver@1.2?type=jar"
+ },
+ {
+ "publisher" : "OW2",
+ "group" : "org.ow2.asm",
+ "name" : "asm",
+ "version" : "9.0",
+ "description" : "ASM, a very small and fast Java bytecode manipulation framework",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "e87284e4421437854ba938179cf803e7"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "af582ff60bc567c42d931500c3fdc20e0141ddf9"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "0df97574914aee92fd349d0cb4e00f3345d45b2c239e0bb50f0a90ead47888e0"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "135f0be16323936ef10a291df4e5d13ab8e488f41cc2835e9ccdddb3f6b65e948ef3b79eb12636c97815380455a32ece7fa9dd094f04b192a3e8752bbcb83463"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "d6da11983245a34ad4fc6bd25c894b8d125e8ae98b62d7130cafe483acc27d3d59598b2e4cc05930c1fed84ff819ada5"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "423ca9cf704ea268b33297e79bda67bb4b14eb27eff1910d99886846ef8f5a8dee49862e42cd95ab1fb6c52b0631222a"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "1beb0e93ad7e629c54d900dea3ebb394fb62301152e7aa39ede520f9c348bba2"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "8beb13f69f431fb921bf00d6ebd84b22cd6092aab97808aed464caad1e6863958cb32ec199f542d60d630a798ce42d0fe237cb74e97c33157fb6cefed1721173"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "BSD-3-Clause",
+ "url" : "https://opensource.org/licenses/BSD-3-Clause"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.ow2.asm/asm@9.0?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "http://www.ow2.org/"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://gitlab.ow2.org/asm/asm/issues"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "https://mail.ow2.org/wws/arc/asm/"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://gitlab.ow2.org/asm/asm/"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.ow2.asm/asm@9.0?type=jar"
+ },
+ {
+ "publisher" : "The Apache Software Foundation",
+ "group" : "org.apache.cxf",
+ "name" : "cxf-rt-bindings-soap",
+ "version" : "3.3.9",
+ "description" : "Apache CXF Runtime SOAP Binding",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "428c6bc68fa4bacf720d29dea8a96539"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "341e866d92c42461c4e7e4b8e2ccce6e869bb81b"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "556c39559cbe88bca5ad7802db070bb345f896a1f12e615e79d69d23a8854122"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "1d3b447b9c67282fb507a84f4b2ac6f795743a5105f4ed47a902fe9f930c56f30551d4c4c730ac5f75592e182ca4694b36e513cc633810158d6eb53dbcf9566d"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "4467b796d481f44d416eb5d7b8613b03477ea639284aff186eb0189b7064b7d245cb6afb01ed5ebb125ecb801f88e87c"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "a877a70fefab371d0e7fb240e89d561bf2bda0ed037ed9b7e62b625d5f683e1ac18c8ba0bf8c5a7aafd2279bc32849d8"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "d79a8fb1a57bfa5012cde36553e05e41f680b7850e61d875399e3da28af80146"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "25ba5612fc6f2cdc66cfc2ed728e3b9bf90e8de226a3cad240c59536db53d6f5d4878d4ce6ec0f68f5cb59d91fe05ed51379d0f7bca3793c0ed98f2bd2c09eea"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.apache.cxf/cxf-rt-bindings-soap@3.3.9?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://www.apache.org/"
+ },
+ {
+ "type" : "build-system",
+ "url" : "https://builds.apache.org/view/A-D/view/CXF/"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://repository.apache.org/service/local/staging/deploy/maven2"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://issues.apache.org/jira/browse/CXF"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "https://mail-archives.apache.org/mod_mbox/cxf-users"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://gitbox.apache.org/repos/asf?p=cxf.git;a=summary"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.apache.cxf/cxf-rt-bindings-soap@3.3.9?type=jar"
+ },
+ {
+ "publisher" : "The Apache Software Foundation",
+ "group" : "org.apache.cxf",
+ "name" : "cxf-rt-wsdl",
+ "version" : "3.3.9",
+ "description" : "Apache CXF Runtime Core for WSDL Based Technologies",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "dead56aa41a18ba4b39677ed4c773ca3"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "dd73db4e30d8e555adfd59f8807202a99d0d7eec"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "9843e82a91c778a2953c028dc29fdec32dc420d3de68b7bfdc7630b3ae081149"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "3c067ca731241d835500930de36cdb780201fa6f723dc3335416acc544fc630fdbefa06a5a830df65bbf7cf003b30438029fcf7c306223a18585abcab83a32aa"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "2a7260f56817dc8b2bd8ef305d0ca73de6a9f53bcd98905427cb206d5e65d4f4d6650ccf52b86dd33e60f06c44cd9052"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "910dbd712d8aab8cb39d76c0973d0d06d25c557a97669a6adf8577b24dbd5383c2d108a4c54ae6616212a79f42d42742"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "d24a6804be82a6f901e2b6c4e549b12555c602d2fc9e70a1413970b2606b9d6c"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "47635913467352d0ac723894e6711c6fef6461d6e3037aeabbe0e9f77e507c47f725e13e62f87d2664ad2c1bf67ad7289e936dbaeaeb1950bdd9b09b4f8f148a"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.apache.cxf/cxf-rt-wsdl@3.3.9?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://www.apache.org/"
+ },
+ {
+ "type" : "build-system",
+ "url" : "https://builds.apache.org/view/A-D/view/CXF/"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://repository.apache.org/service/local/staging/deploy/maven2"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://issues.apache.org/jira/browse/CXF"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "https://mail-archives.apache.org/mod_mbox/cxf-users"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://gitbox.apache.org/repos/asf?p=cxf.git;a=summary"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.apache.cxf/cxf-rt-wsdl@3.3.9?type=jar"
+ },
+ {
+ "group" : "wsdl4j",
+ "name" : "wsdl4j",
+ "version" : "1.6.3",
+ "description" : "Java stub generator for WSDL",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "cfc28d89625c5e88589aec7a9aee0208"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "6d106a6845a3d3477a1560008479312888e94f2f"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "740f448e6b3bc110e02f4a1e56fb57672e732d2ecaf29ae15835051ae8af4725"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "3779363efe4b7cf23bfc68388f3c6b5105dedb9192080f144534fcacc8a77014f9f3eb3ae1927344a267364c24deedebf25e306f80dfc293851973685cc58c52"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "19b91e5508f5e33b8d7c4ad41d3d679d34c0f7b43651f19c7962f534322e6cb768595430a115df82eaf66905a4a71996"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "ca2e435e6d94fea0b1d025f16b7b540aeb84bb5ef286139fa42c04443d5ec87b5663863a761f125dc4a8114148c89ff4"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "8429876fe0bd0d4bf98130c31856f6accccd2af5986b459689f7b5b49f4bdeff"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "915711a72ea5b1773e3336afcaed273d65283e5e93ddf35a12b8473951cfd3e1454bf782945c7da5399922dda46277054185b182136f2dbc356d43adb8afec8c"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "name" : "CPL",
+ "url" : "http://www.opensource.org/licenses/cpl1.0.txt"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/wsdl4j/wsdl4j@1.6.3?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "vcs",
+ "url" : "http://wsdl4j.cvs.sourceforge.net/wsdl4j"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/wsdl4j/wsdl4j@1.6.3?type=jar"
+ },
+ {
+ "publisher" : "The Apache Software Foundation",
+ "group" : "org.apache.cxf",
+ "name" : "cxf-rt-databinding-jaxb",
+ "version" : "3.3.9",
+ "description" : "Apache CXF Runtime JAXB DataBinding",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "bb7775b395ad93879dc3041a215fd3f9"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "f75b3c0a7a444129ce96e2c624b6f4d3204ed8ba"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "70bd9b316bb83105f1cfa6629e14bb32e0e17ffb904cca9df75eeed0750db60e"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "aa0ec4d06ef5ea95e5f1057f0485515170217ca24867e19f34a1da40a4f25f07977becea120ddbd4b45f21af37c98b8512c5e52d562cdbc677eefbba8a155af1"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "a94b444cb10f30040746e3fab33394416183650b3aaff1f5c3707ee9a7dbb4c0ca535893c9a6d90ce5ea3eb4c4db5913"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "d9f3b4422a68762cdf1666970202a9f6e047a619708afe9ac1cc591695a54e79de7d9a3427bf57d36a105674c00bdd66"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "4c387a43d3aad8b1195a02b028fa9780cf12d03bb752343cfadc6b1bc00bb333"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "46e8d014550adfa855a4df81c72e899c5d0e1dcbb78a4f8ad8db1c6ebbe166e967a00f0c7eb735f7808d7308a36b5b85742930e3b454ff5c801732a197129980"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.apache.cxf/cxf-rt-databinding-jaxb@3.3.9?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://www.apache.org/"
+ },
+ {
+ "type" : "build-system",
+ "url" : "https://builds.apache.org/view/A-D/view/CXF/"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://repository.apache.org/service/local/staging/deploy/maven2"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://issues.apache.org/jira/browse/CXF"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "https://mail-archives.apache.org/mod_mbox/cxf-users"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://gitbox.apache.org/repos/asf?p=cxf.git;a=summary"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.apache.cxf/cxf-rt-databinding-jaxb@3.3.9?type=jar"
+ },
+ {
+ "publisher" : "The Apache Software Foundation",
+ "group" : "org.apache.cxf",
+ "name" : "cxf-rt-bindings-xml",
+ "version" : "3.3.9",
+ "description" : "Apache CXF Runtime XML Binding",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "ba5bb4c79e5c41292756f24664c3b894"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "9c2c871ded810e3328e0d129fd62517b69ee9aef"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "6e56a7e9de5ed546ed6b011188dcfe5c877cf6c164862f5ad39feebea4c1b51f"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "1753f2faf4f46f33230926fbf7eb8c0fb397cd35d5c437811b273d4593d4724bb71f247355b46b5a3e72badc808dfcf4e8e5f6ebab272c1839dc0172eaae4fa4"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "4621d0574d067a3dcacfaf9df218738d47225e89c5ff84e0fa65957db9161f1ea96920df6209bd145215ef486e28b2a1"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "66235e5a1db113772651744a2edc56a34c30001f2c7791fa9004401f5fb886852e41c6633038af2fcd22c7b5ac8cbee7"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "9369eeb76c9844aab5ffef0f1b26dc615cb7ab3db7a169d9fd7dbe03a03391cb"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "4f027c10fa47051a45cb16ffff5b5e06feb4bc55cb8520dd28e5dfc317382b7adac332494f18f56d037f79b8db3ee85b7f3be70ee029b09b461c9940acd2ab84"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.apache.cxf/cxf-rt-bindings-xml@3.3.9?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://www.apache.org/"
+ },
+ {
+ "type" : "build-system",
+ "url" : "https://builds.apache.org/view/A-D/view/CXF/"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://repository.apache.org/service/local/staging/deploy/maven2"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://issues.apache.org/jira/browse/CXF"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "https://mail-archives.apache.org/mod_mbox/cxf-users"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://gitbox.apache.org/repos/asf?p=cxf.git;a=summary"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.apache.cxf/cxf-rt-bindings-xml@3.3.9?type=jar"
+ },
+ {
+ "publisher" : "The Apache Software Foundation",
+ "group" : "org.apache.cxf",
+ "name" : "cxf-rt-frontend-simple",
+ "version" : "3.3.9",
+ "description" : "Apache CXF Runtime Simple Frontend",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "49fa0ef82d16cf19245567b5d230b57d"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "15c4846255d7e778cd2d5c7c599aca87b0e2fb39"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "6f796b206b1e6f15353b441cbb43e0c8289602b79f562b434c86010559c2470a"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "959d38997f5c18ba7eb2ffd64e524399736b2878b783bd54848286497388d49872b9bc80016da955dece4128a2dfd4c929cd68307d5b33c3fcbfc4e8ab9b4c37"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "475cf6e996ecb8dccc2597d5bd0e2c9d1b70b93291d2d52c12941b8133d71314e2eb89d1b971299542969d54c3e9f5ed"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "82b1faa98855efccee9ce4a313d2d3ec70340cb31ac1a5a0c9afcbd971c48d2f589ba255ec1e473a1cd9298a5def4927"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "a2b0356c69e88e37137f9aed4bab4e8623563402b075bd466396a62e5c1903d5"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "32a0ea340039fb0fb1447659606dfd452acc5fbb823849b259dbae4435e215ef452952a01e4b3b7b5cb907af05c45027927fc8309620ff15249d96571306ebec"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.apache.cxf/cxf-rt-frontend-simple@3.3.9?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://www.apache.org/"
+ },
+ {
+ "type" : "build-system",
+ "url" : "https://builds.apache.org/view/A-D/view/CXF/"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://repository.apache.org/service/local/staging/deploy/maven2"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://issues.apache.org/jira/browse/CXF"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "https://mail-archives.apache.org/mod_mbox/cxf-users"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://gitbox.apache.org/repos/asf?p=cxf.git;a=summary"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.apache.cxf/cxf-rt-frontend-simple@3.3.9?type=jar"
+ },
+ {
+ "publisher" : "The Apache Software Foundation",
+ "group" : "org.apache.cxf",
+ "name" : "cxf-rt-ws-addr",
+ "version" : "3.3.9",
+ "description" : "Apache CXF Runtime WS Addressing",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "afd7aa09a030f7334a83402fe21e7945"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "92bf88ff28fc6683084f4c7dd7c088040d98d263"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "69fc0a25ae3f4a0bb6ec223bb71e25765393563952364e3d936444dccecdaba0"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "3c5a7788baadfd9070abeead76c80be33db37e7e5782898325595ee0f8d0d0d192116f555cc38654f84c382523b651f19ea6613e9b34dbbf7594cfce023617d8"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "5543c7d19c9c4f48e24eea1a017e6253a8ff75dbbeb509bbde917cbda3aab3d81fcfa3666061db0ea6f9be903d9b5da9"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "f4c8ef1e45618b9598867dfc85820a799548fb1a801175639dc401479a23aa3ee7aae7ff282ac8d396f2c8f133524657"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "d32a0380bf2727e6244f4312b35a3fc2cfddf3ab2064f259cfdeaa3cfa882330"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "84b096f86dc610e5a4f95bda5a62be0ef28f40ee7d10f37c143f1124a2bf97990f7e94fa400f0a4dc648a3a9da34c14a36c4cceaa985d8e3a25af607acbd1a9c"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.apache.cxf/cxf-rt-ws-addr@3.3.9?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://www.apache.org/"
+ },
+ {
+ "type" : "build-system",
+ "url" : "https://builds.apache.org/view/A-D/view/CXF/"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://repository.apache.org/service/local/staging/deploy/maven2"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://issues.apache.org/jira/browse/CXF"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "https://mail-archives.apache.org/mod_mbox/cxf-users"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://gitbox.apache.org/repos/asf?p=cxf.git;a=summary"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.apache.cxf/cxf-rt-ws-addr@3.3.9?type=jar"
+ },
+ {
+ "publisher" : "The Apache Software Foundation",
+ "group" : "org.apache.cxf",
+ "name" : "cxf-rt-ws-policy",
+ "version" : "3.3.9",
+ "description" : "Apache CXF Runtime WS Policy",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "767bd675d5c28a28713d597bcf702754"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "3cb28305723046ac8a206b03b72ec1ea06023f12"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "9522468e26b951f97ef32b86cbfc0441129841e64d99764edce7bf53fb56231a"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "dbd6f62ac8c9996d8ac29e42c7a6d1365b9d19568a3b0c138aebebb1881452b2bcad3c2a29afe69abf7aa828db782d6d5e1aa398f034c478a60f932166eb2875"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "a8cea2b861db066e78fd03eeaa6e323643e88f11bf9b5049d88eb350928e8cb30f6299c8d830ed1a4a7411994e78de07"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "4cf92c8d32c8439b31e357f1d42c87d295065b6b4868d2b389f428a1628311c198281f34e5ef2b49b8da1af9179bf629"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "a43cef4c63b1a0ee56cc73ca2d182e98e4a8068124531de0dbb3353554468cc2"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "5bd709461236c2d55b25e744c9e9bb2c416b6282130210466232be342996c24647fe118c2673ecbe9644585e6b9111d8d7f33634c7155ea0d04410ace3a15ea6"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.apache.cxf/cxf-rt-ws-policy@3.3.9?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://www.apache.org/"
+ },
+ {
+ "type" : "build-system",
+ "url" : "https://builds.apache.org/view/A-D/view/CXF/"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://repository.apache.org/service/local/staging/deploy/maven2"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://issues.apache.org/jira/browse/CXF"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "https://mail-archives.apache.org/mod_mbox/cxf-users"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://gitbox.apache.org/repos/asf?p=cxf.git;a=summary"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.apache.cxf/cxf-rt-ws-policy@3.3.9?type=jar"
+ },
+ {
+ "publisher" : "The Apache Software Foundation",
+ "group" : "org.apache.neethi",
+ "name" : "neethi",
+ "version" : "3.1.1",
+ "description" : "Apache Neethi provides general framework for the programmers to use WS Policy. It is compliant with latest WS Policy specification which was published in March 2006. This framework is specifically written to enable the Apache Web services stack to use WS Policy as a way of expressing it's requirements and capabilities.",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "13dd27a2bd870dfb01d67a086a8c1948"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "3a942a7921e66bb0081b16cf8f8a68e456b91de1"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "7f8c00d9bbfbaa97a97a461cdeadb20054b956acb7536782703ca5a9a330ff22"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "34c8a859e41df1a737ae0e4e2979f03d09528595cf56a940f171157f13d2994fffbf11945052643c5e56e30016340fc65111c2d813b1967f94b44823bb4318ea"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "f9d7bc7dfe75763b67801b640ae1aad488127af8dc2c0ba6dba1bee6927da059c03951f057591f046d5f3c8071ec0f8d"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "1d6fa259ad241d19e73cbdd2b8f1ec23fd146b777d2462fadefa082e37aa7da5e5f9fa863b3c225527e16c32565ddb09"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "01e1a9ba813d10536054a85fcefdacf29b46471d14504ee80210dc3d6a35c0f5"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "4cb4d1c1e03196586fc95ac9cabb1f47742bc67dd6a23232335f496fd587ca556e6ee11d099647f60cdcad30e6b6fb0b14b85f1a7a4250a507cca0a33bb366ca"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.apache.neethi/neethi@3.1.1?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "http://www.apache.org/"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "http://issues.apache.org/jira/browse/NEETHI"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "http://mail-archives.apache.org/mod_mbox/ws-dev/"
+ },
+ {
+ "type" : "vcs",
+ "url" : "http://svn.apache.org/viewcvs.cgi/webservices/neethi/tags/neethi-3.1.1"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://repository.apache.org/service/local/staging/deploy/maven2"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.apache.neethi/neethi@3.1.1?type=jar"
+ },
+ {
+ "publisher" : "The Apache Software Foundation",
+ "group" : "org.apache.httpcomponents",
+ "name" : "httpcore-nio",
+ "version" : "4.4.15",
+ "description" : "Apache HttpComponents Core (non-blocking I/O)",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "295da715492b1f7d4e38711f820e42a0"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "85d2b6825d42db909a1474f0ffbd6328429b7a32"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "44ee3edb7d5e96d3e6d00263c838af23dd2ce67554129714ea30ae447ba95b92"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "58730c69cd14d5ef1fcf39150186dd33077c08051c87c150d39561cce7f5e82dcb2ceceeb64a268b0cbafdbc605b11e1eaddf9e45574d9f010dbebbc6fbf460c"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "035c93a9323efa78196aef2c54e7b541ce63752874bf2f4d54db027fdae0f0e50b2e39eece5f1822241503555c87822a"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "a913ca42651272aad24860e5815080068eb05a7bec5bc391ca8e2a480d043ceff4d0cb78032c9197be5d849f5b5aabbb"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "10a5e095773305796825d5fb86e1252bcb5e1b52ea10478c0567ed7ee242bba2"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "561f18b2b03cdfb0e593213c91e43d896e4172a65069ffd8cca80836588e13a2c3d778d1304e6c05309a2bde4446001605d59b8d5fbb4f131f974bf4c9178384"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.apache.httpcomponents/httpcore-nio@4.4.15?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "http://www.apache.org/"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "http://issues.apache.org/jira/browse/HTTPCORE"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "http://mail-archives.apache.org/mod_mbox/hc-httpclient-users/"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://repository.apache.org/service/local/staging/deploy/maven2"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.apache.httpcomponents/httpcore-nio@4.4.15?type=jar"
+ },
+ {
+ "publisher" : "The Apache Software Foundation",
+ "group" : "org.apache.httpcomponents",
+ "name" : "httpclient",
+ "version" : "4.5.13",
+ "description" : "Apache HttpComponents Client",
+ "scope" : "required",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "40d6b9075fbd28fa10292a45a0db9457"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "e5f6cae5ca7ecaac1ec2827a9e2d65ae2869cada"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "6fe9026a566c6a5001608cf3fc32196641f6c1e5e1986d1037ccdbd5f31ef743"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "3567739186e551f84cad3e4b6b270c5b8b19aba297675a96bcdff3663ff7d20d188611d21f675fe5ff1bfd7d8ca31362070910d7b92ab1b699872a120aa6f089"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "093ac3e2dde58e34aa70309c7305eb3c9b5be2509a9293f1672494da55479a86bd112e83326746dc7a32855472952b99"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "cd6882e7868624164e460f2f3ea01466f863c0dcb902b031c656b57356f563be83b29530df41d88d634ed3d01fc9964d"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "710b1d8d7dae0b8e4270756694ca9c83d64965f42d3b4170c609b14d47c2762c"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "276fa6a6599dc89382d658115695cf4da6b0d39b34e9c349c17a5dbd64122eaee553bb9ed75c0378ec4a83be157c8aa39370662de3c9b8fd55ebc1dd608383e6"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.apache.httpcomponents/httpclient@4.5.13?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "http://www.apache.org/"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "http://issues.apache.org/jira/browse/HTTPCLIENT"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "http://mail-archives.apache.org/mod_mbox/hc-httpclient-users/"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://repository.apache.org/service/local/staging/deploy/maven2"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.apache.httpcomponents/httpclient@4.5.13?type=jar"
+ },
+ {
+ "publisher" : "The Apache Software Foundation",
+ "group" : "org.apache.httpcomponents",
+ "name" : "httpcore",
+ "version" : "4.4.15",
+ "description" : "Apache HttpComponents Core (blocking I/O)",
+ "scope" : "required",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "be7c67929df007fcac6c8eff5322d3a0"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "7f2e0c573eaa7a74bac2e89b359e1f73d92a0a1d"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "3cbaed088c499a10f96dde58f39dc0e7985171abd88138ca1655a872011bb142"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "f0605e4d521c6e9c7e645905687c519239fa9e2128403a515e6118b0406b503b0865a8ead197f8532186b0c9aaa4189ff5bb301d5b0cf84bd54fa2258d17551d"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "fffa9cd7434271990e20230ef9c3754f4b198958437573cdec2d4e7063147a765cb0cdf0b79a9688e81ff85dc704c25b"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "0b72d65d0c3a7d74d1baf1a2fc4e9510e64bd34f7b23f52d436621d2043d81b5395c9b05803e7471537964ac42e2fe94"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "3290e3547fd3ea688f30ba6a554c779c784bb209642ec4d48b284ca8374191b3"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "230b7196270183aaaf5e89e8d7598a3c65ac6bbede816e222e6d457fe5fca50fbe8ca2cb30ecf161bf4ddf34a08ee3a95d2f559e0aa513e9e730eeb5624b296b"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.apache.httpcomponents/httpcore@4.4.15?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "http://www.apache.org/"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "http://issues.apache.org/jira/browse/HTTPCORE"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "http://mail-archives.apache.org/mod_mbox/hc-httpclient-users/"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://repository.apache.org/service/local/staging/deploy/maven2"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.apache.httpcomponents/httpcore@4.4.15?type=jar"
+ },
+ {
+ "publisher" : "The Apache Software Foundation",
+ "group" : "org.apache.httpcomponents",
+ "name" : "httpasyncclient",
+ "version" : "4.1.5",
+ "description" : "Apache HttpComponents AsyncClient",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "5346c547bfd0da64eb3dc54be9380d65"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "cd18227f1eb8e9a263286c1d7362ceb24f6f9b32"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "0c1877489a9d1ba4fa50f6cfcab11d1123618858cb31d56afaab5afdd5064d99"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "1e33c7fdfa63f377ec4844b7744d2f8ec30dc7867136905ff5a5a6e5f94efa5b8159ba20e81f0048f48430cf63ada7411a3974a418aefa497d2b4fab3501f5ba"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "9c4cf09ffeb61bccc3b67375f401c8a96c46bdee7c77f84e3227271a635e109a550526185407869e93ede8f081786977"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "25bcc09200af70f5624baf5ddb95ac6bf46daaffb938d141f72f63ef76df8b740ba3b50104da997cfe67c34bd520fa5e"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "ddb21eeb3e1c3f00ebcf397b58d8d972cc7ab7b140e8939654bf24b8b89382a7"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "f753a8b9607f42417912c3bddeda3f189ab9f469416dafdbcd29b1df7a358aa57deba8a79a5663fdd1a4acbe35b39a48fd24f889a50e05a4726132db85699ebd"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.apache.httpcomponents/httpasyncclient@4.1.5?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "http://www.apache.org/"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "http://issues.apache.org/jira/browse/HTTPASYNC"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://svn.apache.org/repos/asf/httpcomponents/httpasyncclient/branches/4.1.x"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "http://mail-archives.apache.org/mod_mbox/hc-httpclient-users/"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://repository.apache.org/service/local/staging/deploy/maven2"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.apache.httpcomponents/httpasyncclient@4.1.5?type=jar"
+ },
+ {
+ "publisher" : "The Apache Software Foundation",
+ "group" : "commons-io",
+ "name" : "commons-io",
+ "version" : "2.4",
+ "description" : "The Commons IO library contains utility classes, stream implementations, file filters, file comparators, endian transformation classes, and much more.",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "7f97854dc04c119d461fed14f5d8bb96"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "b1b6ea3b7e4aa4f492509a4952029cd8e48019ad"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "cc6a41dc3eaacc9e440a6bd0d2890b20d36b4ee408fe2d67122f328bb6e01581"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "957a438894a196e534af9ae1e61fb21e16f273952b55a81abb8faf0b139fc031ea940cf477f81704db417d1ce6ff2d9ddd4a2cbf316903b0e2dc1aeaef24f292"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "af8a3e210cb1dd5475d497249acf1a86266077f5c7df0ded76d92467ab7f69e445f79dcfacfd7375085ad24f49625955"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "96ad8ffd01492835e0f0d0d19b0414950f487603caa7bbbed28bd3dc41721077c871eb534399aa178ed97aa01d743983"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "78a19109fbcc47fcdd9486c1906e244d1cfad3172d7497d4f0009cdf100ff97b"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "171ce4f320389faf73f95242098be01116709a9eaa88e770ef4aa63e249076dc9133f4c228809bd6989d657dabd6100d34a61232232adf19bbeea82482f46b29"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/commons-io/commons-io@2.4?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "issue-tracker",
+ "url" : "http://issues.apache.org/jira/browse/IO"
+ },
+ {
+ "type" : "vcs",
+ "url" : "http://svn.apache.org/viewvc/commons/proper/io/trunk"
+ },
+ {
+ "type" : "build-system",
+ "url" : "http://vmbuild.apache.org/continuum/"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "http://mail-archives.apache.org/mod_mbox/commons-user/"
+ },
+ {
+ "type" : "website",
+ "url" : "http://www.apache.org/"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://repository.apache.org/service/local/staging/deploy/maven2"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/commons-io/commons-io@2.4?type=jar"
+ },
+ {
+ "publisher" : "FasterXML",
+ "group" : "com.fasterxml.woodstox",
+ "name" : "woodstox-core",
+ "version" : "5.3.0",
+ "description" : "Woodstox is a high-performance XML processor that implements Stax (JSR-173), SAX2 and Stax2 APIs",
+ "scope" : "optional",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "89fb07387e448325eacc9c642e3d69af"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "59a3a7fb46a364ee383ea7e8c67c152a224b3d99"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "b2bd29c31fda49a9b28a22b9e5c2b26443bcfa99c1a28eab70ab9c7d349b5002"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "a9e981b270cef762d2077522f158287141cc47a3d2705f7d03349390bfc12e2dc33641cab6278678e7225087d8e5a9a891f396e958ea1527628d7e8edf833ae2"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "e653d5f0a2802aeb1e98e19d453850567c77fb31a3dfff41af953d2cd198d1a3fc374fb1c82f63a92bb5dd120b9f576a"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "e4608171de5487c5e33d11b46f72450f6773f650c89bead729ec0c87e34de27367b3fb739f0b8b6e476c2bfeed2bb2b9"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "5c95c04690fa6ea1614a08003e25a67cb184d4c983497ca9cd3171807e011515"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "1769c8c0efcdf1d893ba717e448b697d0c64ad1474997184f55cd65ca613b255288345dbc3e9a6dc569f07556209d6afdc2689b76d9b1b584a2d3b489767cbff"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/com.fasterxml.woodstox/woodstox-core@5.3.0?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "http://fasterxml.com"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/FasterXML/woodstox/issues"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/FasterXML/woodstox"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/com.fasterxml.woodstox/woodstox-core@5.3.0?type=jar"
+ },
+ {
+ "publisher" : "fasterxml.com",
+ "group" : "org.codehaus.woodstox",
+ "name" : "stax2-api",
+ "version" : "4.2",
+ "description" : "tax2 API is an extension to basic Stax 1.0 API that adds significant new functionality, such as full-featured bi-direction validation interface and high-performance Typed Access API.",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "5d22fe6dbb276d1fd6dab40c386a4f0a"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "13c2b30926bca0429c704c4b4ca0b5d0432b69cd"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "badf6081a0bb526fd2c01951dfefad91b6846b6dd0eb0048587e30d1dd334e68"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "4c7642993e96b6941cf80feb8ae7a285a0c6c8102d629cd265ec493bd05a6f2bab5b37979749430e0aa0625c269088692c36ed063b52e3b95e346f54e5dfa358"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "5d747ee5480365a3175d2b16cdc5763fcc476ed414134421c0dc59bcf9a63c321efd0b036ae6a6cf146e80977b326859"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "67cac327dba0b16611fd58cac746ae38ac12b19e276108f01bba7e0a1cef7a0a5b96ef1b2f3d949e10e86f0a54853d78"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "93083ae19e85f9dff5c66a08fdfb973f2cdd2d8d1f25519ff6bef94ebb1d7f22"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "f5a03f0a85b6532e386079104340101bd3baa767bfd433359bde62dd98063ba6045a594453973cec5ac4a3cf4827222cf114bcba2515cd2054602f9876874aa9"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "BSD-4-Clause"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.codehaus.woodstox/stax2-api@4.2?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "http://fasterxml.com"
+ },
+ {
+ "type" : "vcs",
+ "url" : "http://github.com/FasterXML/stax2-api"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.codehaus.woodstox/stax2-api@4.2?type=jar"
+ },
+ {
+ "publisher" : "The Apache Software Foundation",
+ "group" : "commons-net",
+ "name" : "commons-net",
+ "version" : "3.6",
+ "description" : "Apache Commons Net library contains a collection of network utilities and protocol implementations. Supported protocols include: Echo, Finger, FTP, NNTP, NTP, POP3(S), SMTP(S), Telnet, Whois",
+ "scope" : "required",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "b46661b01cc7aeec501f1cd3775509f1"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "b71de00508dcb078d2b24b5fa7e538636de9b3da"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "d3b3866c61a47ba3bf040ab98e60c3010d027da0e7a99e1755e407dd47bc2702"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "dba414cea9fb4b47dfe6d20c347bd91052185dd958996bfdd1e709f66b5fa7812ebb0dad80c47e72bcc0075b3b5526c705216efe771cac1cc53b2f7923124faf"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "da4e47cc5b90fdb04f76ec59d9e1c17dcb6c85507fa0867dbfea02ec8b7788fb9c7a8cfa13064675004805ec476f4802"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "8afdb2f0b22a357bd7bd554a8583eaf4c2ec385288abe06cf4da66d3d4af3e66bee242104a4e0252e3af7964a9c4d426"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "a031d0a8e3deff004c46b903e8a12995f80f1e161893f596bde45d5a2b06c870"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "5e55185f5cebb4763a44cb6672c181e0cf804ae3bfd90db8ba86207502ddd7bd99c6c60aabb0d1dcce8b77f9961ccf02db1f6414eeb23bbe62f5ad29a0f84c7d"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/commons-net/commons-net@3.6?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "issue-tracker",
+ "url" : "http://issues.apache.org/jira/browse/NET"
+ },
+ {
+ "type" : "vcs",
+ "url" : "http://svn.apache.org/viewvc/commons/proper/net/tags/NET_3_6"
+ },
+ {
+ "type" : "build-system",
+ "url" : "https://builds.apache.org/"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "http://mail-archives.apache.org/mod_mbox/commons-user/"
+ },
+ {
+ "type" : "website",
+ "url" : "https://www.apache.org/"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://repository.apache.org/service/local/staging/deploy/maven2"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/commons-net/commons-net@3.6?type=jar"
+ },
+ {
+ "group" : "com.h2database",
+ "name" : "h2",
+ "version" : "1.4.199",
+ "description" : "H2 Database Engine",
+ "scope" : "optional",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "f805f57d838de4b42ce01c7f85e46e1c"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "7bf08152984ed8859740ae3f97fae6c72771ae45"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "3125a16743bc6b4cfbb61abba783203f1fb68230aa0fdc97898f796f99a5d42e"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "79a256b47ddb1ec3370606a9c08022b2199715ecbbef5cb6c91e6cebfc7837aa745eb35d90be5d2991d10b006c7e475f915595ecd652c9553f39c1bafe2f1477"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "e319a2b469a656e3a31f22cda95082f1b0e725f51a926d180a668a3b5cd5766528797866b95b3b7794a8087a495e30ba"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "086d14e2970737b9f6804dcfa62d88a4e152753f265b5fbc5fa2a9cd05978e52aa1a2136681abb799fc7ba3c108d9cd5"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "4e31995d488db01cd5434f6d5e1abc57c5cf1a294f657ff8c7b67119e49a7673"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "8450836e04fed4ed6f527840a089dcd50b30d1ee1e7604b231d1aca73dfc97518d6ae7d1573945954c5af0f171cebaa40b4ee1a97426a1e6c3a5ee2d9e15440a"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "name" : "MPL 2.0 or EPL 1.0",
+ "url" : "http://h2database.com/html/license.html"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/com.h2database/h2@1.4.199?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/h2database/h2database"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/com.h2database/h2@1.4.199?type=jar"
+ },
+ {
+ "publisher" : "QOS.ch",
+ "group" : "ch.qos.logback",
+ "name" : "logback-classic",
+ "version" : "1.2.11",
+ "description" : "logback-classic module",
+ "scope" : "required",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "e13679004cc76ad5792f275f04884fab"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "4741689214e9d1e8408b206506cbe76d1c6a7d60"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "4d8e899621a3006c2f66e19feab002b11e6cfc5cb1854fc41f01532c00deb2aa"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "6df8b42396c5d3257f11fb19c280533aa28d66e647115816d4ebfd6a58c9b5adf0e098504772261b29435df75b86cb2b9a47f846ed45d770179c9d10f39941de"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "d480881d1a0d58c94aba0b719d56cd492147bc6481b67370dc7426ea7a81326af5b19f32d6a95fee714f37b90a5eed76"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "070647c93da744f04cc13ab3f1958c61a8b1e219fe221ed0bf251e4cc97563c64be323bfb3a9e2fd4839e33ded424b21"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "60c1dbe51066ffb3885673255a279e8894c89fe26f079180fa992478c1d9b03e"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "ce16fae69767bca975bec0d7dd0ceeb40c15cf034a4a949721c828a0f2c25cb9d619c4db3f986f6d9805d5b76d27b8926c55be5579522cd5ab3fa5e69bb68aeb"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "EPL-1.0"
+ }
+ },
+ {
+ "license" : {
+ "name" : "GNU Lesser General Public License",
+ "url" : "http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/ch.qos.logback/logback-classic@1.2.11?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "http://www.qos.ch"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/ceki/logback"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/ch.qos.logback/logback-classic@1.2.11?type=jar"
+ },
+ {
+ "publisher" : "QOS.ch",
+ "group" : "ch.qos.logback",
+ "name" : "logback-core",
+ "version" : "1.2.11",
+ "description" : "logback-core module",
+ "scope" : "required",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "115da115b5e66ef64e774ec35af1fb1a"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "a01230df5ca5c34540cdaa3ad5efb012f1f1f792"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "6ce1e9397be8298a2e99029f55f955c6fa3cef255171c554d0b9c201cffd0159"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "86b12a74c2a822a12ba2e9a7b0db5013803f18784a3cb1201c95d5f7872a6aa8cf06d5861a5c35777a7decc7ea26df7b4388fab3b3b71aab7274527d9b339318"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "2afd896ebe6333d99e5baa553d80b7851d8ff51c06c725267e061df81bc9a878b74a65394699ae853f9738a08963aa0a"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "43d39acc5608b60d671c000bf6114f4623d3057399142abca01b0fc2381f2191479a2f0dd74f812223b66f57fa48fd9c"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "c23af1733b972e958369a2e14372fd2b306d4f552d7ae5ff6b9dfad3c14611c6"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "c7f6357d32a3b9fd82dfbd162c3a6cbe4b4909ef530e956bcd18649b2d3624eb51c5a71fee54533a9786e87cf1ccdc693f563ef6e3c6fbff7beedbd1d670f9bb"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "EPL-1.0"
+ }
+ },
+ {
+ "license" : {
+ "name" : "GNU Lesser General Public License",
+ "url" : "http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/ch.qos.logback/logback-core@1.2.11?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "http://www.qos.ch"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/ceki/logback"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/ch.qos.logback/logback-core@1.2.11?type=jar"
+ },
+ {
+ "group" : "io.jsonwebtoken",
+ "name" : "jjwt-api",
+ "version" : "0.10.5",
+ "description" : "JSON Web Token support for the JVM and Android",
+ "scope" : "required",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "ea57d941aab0b215eda1e5b27adf802d"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "4bcf9036f62a404d6abecfffb37eae9033248933"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "dc15294d0bee3f5d9c8ee8381dcdf37457f9c33604484b1d3a438478a05a05c5"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "3fda7eff90654af3c79e05ef09d4228cb2534f3df9da3a9f1143111d1c620e3eafbda4b421c62c38219261ceee7ae99c578c7e02f0d4ada2be982542bdba563d"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "fdfdb502b2377ad22664fabce09e51caea3db58a7d66e2bea1ad3623f97ef0861dbd93a53286a4e552689ce9a9c6b4b4"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "4239ed1d9983ad903df11da847a352899a5e7ffcb9bc1080c9e7a4d0d1c28079655edea51d0834ba69d30d9244699a1e"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "d7b37180bc0cbdfb2ba6cf00858fa150bf91847d20df5d89e1e7847c16dc8401"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "3e7d7576ea9226fa6487b02d82aee06bc260945223eb18b6309230a37dce590cd10fe6d29231fa7ac42da97763a329fe587ec357dce9558a9b7f2238e0350a0d"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/io.jsonwebtoken/jjwt-api@0.10.5?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "build-system",
+ "url" : "https://travis-ci.org/jwtk/jjwt"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/jwtk/jjwt/issues"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
+ },
+ {
+ "type" : "vcs",
+ "url" : "http://svn.sonatype.org/spice/tags/oss-parent-7"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/io.jsonwebtoken/jjwt-api@0.10.5?type=jar"
+ },
+ {
+ "group" : "io.jsonwebtoken",
+ "name" : "jjwt-impl",
+ "version" : "0.10.5",
+ "description" : "JSON Web Token support for the JVM and Android",
+ "scope" : "optional",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "96b799c260221c1714d04a6cb58a460d"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "f6d6dc168128f40652ca973b212f483f0e0765e3"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "78bc9d0033a16c1a46511dcf5a75f884ffe301bed89fe7124b478080e5d97c0a"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "44a8d5d0ab1e4593199fda20f3f148f87701157bbccd1d6f8bdb4bc008a17a89d0883cd939b9d4e7e56521e8b4a8ac4aa5930ac40acdf939d4b420180a040341"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "ca93f8888ecd418ebc1c0ef7531954f12a5a9ff8e8a74720fb57a5268101c172979095bf08c6eaeb4ddb4ddea223cea2"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "b7871eae8d2ce187dea8b251a598b3c41c5037aa573846e88acf588baf66db967692887b9ec37c403ab8888fa20a16de"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "b9cc889df115af1178c02df933b130251bfaa2c8dba208b34cd30114e85ad029"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "b49a67e142c5c6decf39133b4c203814f1a0b800e7a216ab7fd13238990cdd5120171558679ae5b8dd1b401248aafb4736f9eeb39f37bda97cb81ddb97ea2fa7"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/io.jsonwebtoken/jjwt-impl@0.10.5?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "build-system",
+ "url" : "https://travis-ci.org/jwtk/jjwt"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/jwtk/jjwt/issues"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
+ },
+ {
+ "type" : "vcs",
+ "url" : "http://svn.sonatype.org/spice/tags/oss-parent-7"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/io.jsonwebtoken/jjwt-impl@0.10.5?type=jar"
+ },
+ {
+ "group" : "io.jsonwebtoken",
+ "name" : "jjwt-jackson",
+ "version" : "0.10.5",
+ "description" : "JSON Web Token support for the JVM and Android",
+ "scope" : "optional",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "d27f25d0835b54044889aa0c61c9b53a"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "eb99c1575f73a56b7adaa478b5ad140c7b105fa4"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "d2c03db8830c20384c6830b41d7547681bb65a5dcd23906d805bdd4f340edcde"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "422bf0fb33ff65aa2270df1bee08ade7ab4e9979150c6f9468aca46c315847524e3c6a6be25926ca6ac68ef6c9635a9bbd18938e28bcb7e90432675e532ca00d"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "8245e9afbbf520f6105844a33b884994128eb961ff377693d779b475a9e83254fc3229998f42c2922d6e419e0bbd08f5"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "496b35fd4d7fbae228f8be7b19b3f845b42cd74df3819ac294f314fdbb50a647f5327026c78203019c6b43fc0860e903"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "8479e3bc368ccf60cb55174802daccffee0926a0357637629c9ebff973ba1f26"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "e48caea2a593fe06ad97819bb347aa7472fc1dc3fc86298f93179b8ede03b8249e527fa15ffcaf40f9c9ee175ab59d7ef3f81253c31c84e02512219f03b68249"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/io.jsonwebtoken/jjwt-jackson@0.10.5?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "build-system",
+ "url" : "https://travis-ci.org/jwtk/jjwt"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/jwtk/jjwt/issues"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
+ },
+ {
+ "type" : "vcs",
+ "url" : "http://svn.sonatype.org/spice/tags/oss-parent-7"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/io.jsonwebtoken/jjwt-jackson@0.10.5?type=jar"
+ },
+ {
+ "publisher" : "ANTLR",
+ "group" : "org.antlr",
+ "name" : "antlr-complete",
+ "version" : "3.5.3",
+ "description" : "Complete distribution for ANTLR 3",
+ "scope" : "optional",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "88707e14f43ae2bc2f9528bc218faad9"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "5225357e50cc4597aee756de5eb4d58ffdca3e69"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "e781de9b3e2cc1297dfdaf656da946a1fd22f449bd9e0ce1e12d488976887f83"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "fb5c045bda1e4810086cd3015dd6390ddefde73cdddde7b7e615775f22b5bc76c494d7d89de0abf7355fa3ab29d3caa769ffb2d6fba81ce9662e87f671f7bb12"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "d6a1ca62975fb10b5d505ef9da4fabf7777d029e0eda3517613c80128e7848f0f4ae3a37df7ede747421eba08b50493e"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "a153d9bb3df8108ff1b1bb4375ef65a3f8d97f5171afdcfb27f3bfa10b775246b6b5eba884bdaa11d87e6baf43846e61"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "4a07ad25bba671a32a7706065e907dba2d709f5c64bcad899296193f853f9ec4"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "6918472868716156942682bc7339ef8a20acae4c4bc8d101c6135ab96d81efb955ca512f0932a0bf4af086406ac5384dd4b2bc28f8d1515ad29644cfbea4f035"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "name" : "BSD licence",
+ "url" : "http://antlr.org/license.html"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.antlr/antlr-complete@3.5.3?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "http://www.antlr.org"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/antlr/antlr3/issues"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "https://groups.google.com/forum/?fromgroups#!forum/antlr-discussion"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/antlr/antlr3/tree/master"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.antlr/antlr-complete@3.5.3?type=jar"
+ },
+ {
+ "publisher" : "ANTLR",
+ "group" : "org.antlr",
+ "name" : "antlr",
+ "version" : "3.5.3",
+ "description" : "The ANTLR 3 tool.",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "3d5331f09afc4e58f019114e29518b0b"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "254a043f13d3204f503bb6939553ede3b36759e1"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "d0a819afddbd837b278649eb7ff17b15259d5acc49c58af614f03468a291bd7c"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "3f52f4a7ec3b1037ea0acff410322aa9764757f75612da9b611a53d0e58f9987eb1666438689dce6f406b3b0b9b34d27ba590cba35529fc81e1e6d3714e7d5e4"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "269f8aa68ff58846623afbb71bb826726dd3f88405764c797258466c0a1aa870dfcbaa322cf6751323721d3771ffed61"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "5b68cde3bb70bcf52f7d5757e55379fa955d411ee9f1190afe08c520948881ad8aa754e7062d7f34811884422cda9613"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "56a0a3c79aa1785386be517a5a80a07513ee2f8ca26e725945d942f87e1c77fc"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "47acfd0ccca4614c9d6acb53e6a61ee7eaef415980a42faf5739a8a4a5f2bd95349ea0ad876aa40779d142221822c88d3526e26535abfd9cbbdcdee764aebc3c"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "name" : "BSD licence",
+ "url" : "http://antlr.org/license.html"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.antlr/antlr@3.5.3?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "http://www.antlr.org"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/antlr/antlr3/issues"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "https://groups.google.com/forum/?fromgroups#!forum/antlr-discussion"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/antlr/antlr3/tree/master"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.antlr/antlr@3.5.3?type=jar"
+ },
+ {
+ "publisher" : "ANTLR",
+ "group" : "org.antlr",
+ "name" : "antlr-runtime",
+ "version" : "3.5.3",
+ "description" : "A framework for constructing recognizers, compilers, and translators from grammatical descriptions containing Java, C#, C++, or Python actions.",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "0b5c0ce1bb9c8190e2e60401fc439daa"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "9011fb189c5ed6d99e5f3322514848d1ec1e1416"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "68bf9f5a33dfcb34033495c587e6236bef4e37aa6612919f5b1e843b90669fb9"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "7714970915d7187d7abb32610b3764305e67798d8289f8a59461ebb3bf7f26a09b933279de1cf95c14bbb60f213bf3f1af6aa8f20e75b26768223883a6883aaa"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "e2c7c6211b673413739f34a28420af990809a4ed3ef4832d12ce3910c409be42adfbf0a90b949b17f88aaf8980dd124e"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "08924b6c5772c6d588b4bf3a026c79d4cd69b19f460758e94169a72a210efe9da2d8684ea0c029008d028a8a5414cc9f"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "86a8aa88ee5c27c2f90600c9cbedece6a3ac6b8e7762543299e6af7f64729121"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "ef4d5408027ccf3db7ac34065d610d978b59ef759964301103c720a7d6d97d832aa46554ef4e8e70b469d132e870627bd050e7bd165b2385ddc98bd621b3059c"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "name" : "BSD licence",
+ "url" : "http://antlr.org/license.html"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.antlr/antlr-runtime@3.5.3?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "http://www.antlr.org"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/antlr/antlr3/issues"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "https://groups.google.com/forum/?fromgroups#!forum/antlr-discussion"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/antlr/antlr3/tree/master"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.antlr/antlr-runtime@3.5.3?type=jar"
+ },
+ {
+ "group" : "com.hynnet",
+ "name" : "tinyradius",
+ "version" : "1.0",
+ "description" : "TinyRadius Java Radius Library",
+ "scope" : "required",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "a6319c1b8960a0c341a8e2a7891a3977"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "4864cd1ef8f04336f0aaf74d6b73b2d3c72ff122"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "117fa96eb024a4b6a6d90599aba370aa99d6e99979ebc2459ebd8d4f5eacf55e"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "758ff13ff8336cfe66b2353b37c8407d08d592c08d97bb7bc5c961579001eda986d159bcb9e9bb9d420e3f7b4ccbf81cb84967800d5790f71d6089ff41b36afb"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "fd09fc87c6cce74f41ed239c3219aba69761000ac427085ec573da0e29ae49b9c150b736cc0d93c2390caca5445aae3c"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "9b84e98346d46a86900a2c80e52d1029a18773416fd619c9e56f2c5d12fc09275c023453af59484732233eea93667b39"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "f0ce6dc4ea23c35f7a0443c7103e919b1443da542aef65f579e80663e744a895"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "6fd91a1b6c3962e36bea3c3635e41ce78937ae5ce42346a52269c681ee03125aceac31cc5e39220945429ecaab5842d56582872a879296a1b07ac72830abd69e"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/com.hynnet/tinyradius@1.0?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "vcs",
+ "url" : "http://tinyradius.sourceforge.net/"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/com.hynnet/tinyradius@1.0?type=jar"
+ },
+ {
+ "group" : "org.mockito",
+ "name" : "mockito-core",
+ "version" : "2.8.47",
+ "description" : "Mockito mock objects library core API and implementation",
+ "description" : "Mockito mock objects library core API and implementation",
+ "scope" : "optional",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "d4273cebc14cf668f29df545c594510a"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "48840cfced22ec0c07203a0201c5ae7bc12557b5"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "c496fe3790c55c07697cf37f5062f8758591ab035900bc108ce185b48df563a0"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "5df2ec1691d4b83ad9502a51b4ac32c6ba3f3c6fc39706a855ad29ab332e3d79c646538c9e24f72b8b290be7b6be28cca0361326deed26c5eaf72b247e6ef55b"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "6ef72258db2e51120d29a267808f7e470d10fae8ac9658e59aeb49b77824f06ad8af080b95852a92b8689251328f94da"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "74e519fe2a16b11cf9b48c39a19725f22f04779621d6b049091c275c13ea3aa378d2564bf1b58954c1538a8281017080"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "31646509e78b67500e4c858f0e11607ad7dea037807a1e2c70963de5cefb3b7d"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "df0107a9aac504032ddb2252cb9aec780e1d0fcfd83742f3b87cc3e3d5126d57f85a91f86401d31a1b92bbc41da949b8d3e353fb0d49939f9f43675379564b37"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "MIT"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.mockito/mockito-core@2.8.47?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "build-system",
+ "url" : "https://travis-ci.org/mockito/mockito"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/mockito/mockito/issues"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/mockito/mockito.git"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.mockito/mockito-core@2.8.47?type=jar"
+ },
+ {
+ "group" : "net.bytebuddy",
+ "name" : "byte-buddy",
+ "version" : "1.12.18",
+ "description" : "Byte Buddy is a Java library for creating Java classes at run time. This artifact is a build of Byte Buddy with all ASM dependencies repackaged into its own name space.",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "aa9260b3a85969a1a37c192c63d07df3"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "875a9c3f29d2f6f499dfd60d76e97a343f9b1233"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "39200c13a72b6a3f4ec43c7b6d2fb78ecbeb25c29e986f4efa572636b39d750e"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "55c475f428083d656dd9ed5a0872bbf34da3ef03e567dc5dffa900a83530d163c2e059cd630408c73f74077020e7dfe62d578a0f58263eeef01c9c307e044309"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "83e4c6e1698f6b9a9c2b57c34da982aa3fecf4800445ef992421760fc31b355c9353062b43b137cd913076d5e31eff2e"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "b5b690877c9892e1f7964b32e8cb3fe6db536fd441f1a0508f24fc5991b8169495143cb4e503003e7db85862f920c640"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "e719e8af7a78247495a4bc5ae0e2d1392a1d135310701840672821162643533f"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "b7045faf9d3467fd9e5a865e981957fe8668d7a5d131907b108d7c5eb74247a089b4a164206a169d137b79a745a519921bdaabdcff43922191c6de60529059d5"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/net.bytebuddy/byte-buddy@1.12.18?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/raphw/byte-buddy/issues"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/net.bytebuddy/byte-buddy@1.12.18?type=jar"
+ },
+ {
+ "group" : "net.bytebuddy",
+ "name" : "byte-buddy-agent",
+ "version" : "1.12.18",
+ "description" : "The Byte Buddy agent offers convenience for attaching an agent to the local or a remote VM.",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "38a1d106e769da25e8315dd3ca11000c"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "417a7310a7bf1c1aae5ca502d26515f9c2f94396"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "c31a3256b2df60a5d227971798f73b5aa268a0cb854ecec39ffa6e372eecde21"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "faf880c57037c8df97d44fa6166a368e768e7f5afcb85781147facef990030eae4bbc898c144f047f808bc467d445860ffe283c9e88e63015887ad56c6883b3f"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "677d2f81f9b86076c934743f281bbf18d694c930e2987949d44cd4fbbc9c7096e0d3b3529a93d8d96ba9ce6eac71759f"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "abbf496c37092667edd63fdea483c4ffc3cfbae67cc67f760f9979776a1a56107141cd3fd0ca0d5dd0151f105aedd030"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "fc0514bc3eade8e85652f356b09074836f9d78e2ff561bd7a5737cbffa22cc1e"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "082e948ae5bdf84762da04c42dba0e76bdd2aa3ec93edd4365b09a449976b1c786f23b20ea3345d41f915243c841c4e87a99c359846217a7491910d40af68664"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/net.bytebuddy/byte-buddy-agent@1.12.18?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/raphw/byte-buddy/issues"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/net.bytebuddy/byte-buddy-agent@1.12.18?type=jar"
+ },
+ {
+ "publisher" : "Joe Walnes, Henri Tremblay, Leonardo Mesquita",
+ "group" : "org.objenesis",
+ "name" : "objenesis",
+ "version" : "2.5",
+ "description" : "A library for instantiating Java objects",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "65daddc231144b94cd66e7962e04e391"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "612ecb799912ccf77cba9b3ed8c813da086076e9"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "293328e1b0d31ed30bb89fca542b6c52fac00989bb0e62eb9d98d630c4dd6b7c"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "0526aba0bca6c7586ccf50f0d776270e717d7d6ebb3d49a19c83ea0ea1c9e5087eee169a0e032d74f2185737d9fa6967451b93cf6c9079970a41c54533450356"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "461ac330f677e6788c6bcde06daf3ded615081b61e35564e098a25200b93b54901e86727289ab6198df13149028a49b2"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "153af2047476b343d481ce1ed21eb6c3573cb8d681c980112286be66bcc8bc75d88ffe540c54f5a7922800975f881496"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "67ef6c2b5bda50bd668ae0c942d12a463cfb854f7d7ada4591c4f800a30653b3"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "8f13bd5c7d53d3715f9d977b0c91b0e587444d4c30976741f056207e15e23be89315a64bfe3a8c8e3562d64657f57cb3b81e1051361181e0b33a93c2cf6a62de"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.objenesis/objenesis@2.5?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "distribution",
+ "url" : "https://api.bintray.com/maven/easymock/maven/objenesis"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/easymock/objenesis"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.objenesis/objenesis@2.5?type=jar"
+ },
+ {
+ "publisher" : "JUnit",
+ "group" : "junit",
+ "name" : "junit",
+ "version" : "4.12",
+ "description" : "JUnit is a unit testing framework for Java, created by Erich Gamma and Kent Beck.",
+ "scope" : "required",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "5b38c40c97fbd0adee29f91e60405584"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "2973d150c0dc1fefe998f834810d68f278ea58ec"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "59721f0805e223d84b90677887d9ff567dc534d7c502ca903c0c2b17f05c116a"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "5974670c3d178a12da5929ba5dd9b4f5ff461bdc1b92618c2c36d53e88650df7adbf3c1684017bb082b477cb8f40f15dcf7526f06f06183f93118ba9ebeaccce"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "e2f0c2db405e282d0f84a1766b9e8d9736d4377e292a5ef8457aec10384f9077005865167025b2779634d75bcb4d62cd"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "a24a1d6d5ffe2f9fc3a90a442c3d1d5a12ae7bda3c68996c3b50f00186a2f961808c5ef504a771e9d6ab95ee38a383f0"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "02b1f076652120813646a0cb34350f0c73a3299b221567e089f6aaadf8ab444a"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "9e8f7057647c11564178e4569cf4f5682d3688b49d81acc60fd301f61053932ee9ac109c19cb639f7710d23afc76cb106ebde0f8143e2fe5fa08605201720a8b"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "EPL-1.0",
+ "url" : "http://www.eclipse.org/legal/epl-v10.html"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/junit/junit@4.12?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "http://www.junit.org"
+ },
+ {
+ "type" : "build-system",
+ "url" : "https://junit.ci.cloudbees.com/"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://github.com/junit-team/junit/wiki/Download-and-Install"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/junit-team/junit/issues"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "https://groups.yahoo.com/neo/groups/junit/info"
+ },
+ {
+ "type" : "vcs",
+ "url" : "http://github.com/junit-team/junit/tree/master"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/junit/junit@4.12?type=jar"
+ },
+ {
+ "group" : "org.hamcrest",
+ "name" : "hamcrest-core",
+ "version" : "2.2",
+ "description" : "Core Hamcrest API - deprecated, please use \"hamcrest\" instead",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "be43e37f4c7b4f6fadba382933006b15"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "3f2bd07716a31c395e2837254f37f21f0f0ab24b"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "094f5d92b4b7d9c8a2bf53cc69d356243ae89c3499457bcb4b92f7ed3bf95879"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "e6c3f02e25070177f8101f9ca265046f8c9569f82560051dbfb1e6a28c9937b1a7453f68e9a37bfce0eb69bacf45a743d16e78add931e98195d260b8a516557e"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "3d31875d5f5c398db6e29ea4e57ad18c9afb00b0926db20429435e74c1733f0e87189621c1f5edbf443b10bdcf7696c1"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "435d92c73b0a1d7ec1d1218953e2c382057658aae9bcd71359d2daeee48407ac4c4c539b4fe321e97147f3f568f0a40b"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "c34903e0e52796dce65958939fd536f475c7cc3733c31ec0e731ea4586daceaa"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "ce294d68caa56282e800a7d237a008a715c80f4f6f50240e7cba88154c429d30647150e4c53042569e791ddd24634ad7fe8711c0bc0d84c14663a1e5c1fab932"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "BSD-3-Clause",
+ "url" : "https://opensource.org/licenses/BSD-3-Clause"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.hamcrest/hamcrest-core@2.2?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/hamcrest/JavaHamcrest"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.hamcrest/hamcrest-core@2.2?type=jar"
+ },
+ {
+ "group" : "org.hamcrest",
+ "name" : "hamcrest",
+ "version" : "2.2",
+ "description" : "Core API and libraries of hamcrest matcher framework.",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "10b47e837f271d0662f28780e60388e8"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "1820c0968dba3a11a1b30669bb1f01978a91dedc"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "5e62846a89f05cd78cd9c1a553f340d002458380c320455dd1f8fc5497a8a1c1"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "6b1141329b83224f69f074cb913dbff6921d6b8693ede8d2599acb626481255dae63de42eb123cbd5f59a261ac32faae012be64e8e90406ae9215543fbca5546"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "89bdcfdb28da13eaa09a40f5e3fd5667c3cf789cf43e237b8581d1cd814fee392ada66a79cbe77295950e996f485f887"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "0d011b75ed22fe456ff683b420875636c4c05b3b837d8819f3f38fd33ec52b3ce2f854acfb7bebffc6659046af8fa204"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "92d05019d2aec2c45f0464df5bf29a2e41c1af1ee3de05ec9d8ca82e0ee4f0b0"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "4c5cbbe0dcaa9878e1dc6d3caa523c795a96280cb53843577164e5af458572cde0e82310cf5b52c1ea370c434d5631f02e06980d63126843d9b16e357a5f7483"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "BSD-3-Clause",
+ "url" : "https://opensource.org/licenses/BSD-3-Clause"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.hamcrest/hamcrest@2.2?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/hamcrest/JavaHamcrest"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.hamcrest/hamcrest@2.2?type=jar"
+ }
+ ],
+ "dependencies" : [
+ {
+ "ref" : "pkg:maven/br.com.test/test-backend@01.23.00?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.springframework.boot/spring-boot-starter-web@2.7.5?type=jar",
+ "pkg:maven/org.springframework.boot/spring-boot-starter-websocket@2.7.5?type=jar",
+ "pkg:maven/org.springframework.boot/spring-boot-starter-data-jpa@2.7.5?type=jar",
+ "pkg:maven/org.springframework.boot/spring-boot-starter-security@2.7.5?type=jar",
+ "pkg:maven/org.springframework.boot/spring-boot-starter-logging@2.7.5?type=jar",
+ "pkg:maven/org.springframework.boot/spring-boot-starter-validation@2.7.5?type=jar",
+ "pkg:maven/org.springframework/spring-oxm@5.3.23?type=jar",
+ "pkg:maven/com.fasterxml.jackson.datatype/jackson-datatype-jsr310@2.13.4?type=jar",
+ "pkg:maven/org.springframework.boot/spring-boot-devtools@2.7.5?type=jar",
+ "pkg:maven/org.projectlombok/lombok@1.18.24?type=jar",
+ "pkg:maven/com.unboundid/unboundid-ldapsdk@4.0.8?type=jar",
+ "pkg:maven/org.snmp4j/snmp4j@2.5.6?type=jar",
+ "pkg:maven/org.openmuc/openiec61850@1.7.0?type=jar",
+ "pkg:maven/io.cloudsoft.windows/winrm4j@0.12.3?type=jar",
+ "pkg:maven/com.fasterxml.woodstox/woodstox-core@5.3.0?type=jar",
+ "pkg:maven/org.apache.commons/commons-lang3@3.6?type=jar",
+ "pkg:maven/commons-net/commons-net@3.6?type=jar",
+ "pkg:maven/com.h2database/h2@1.4.199?type=jar",
+ "pkg:maven/ch.qos.logback/logback-classic@1.2.11?type=jar",
+ "pkg:maven/io.jsonwebtoken/jjwt-api@0.10.5?type=jar",
+ "pkg:maven/io.jsonwebtoken/jjwt-impl@0.10.5?type=jar",
+ "pkg:maven/io.jsonwebtoken/jjwt-jackson@0.10.5?type=jar",
+ "pkg:maven/org.antlr/antlr-complete@3.5.3?type=jar",
+ "pkg:maven/com.hynnet/tinyradius@1.0?type=jar",
+ "pkg:maven/org.mockito/mockito-core@2.8.47?type=jar",
+ "pkg:maven/junit/junit@4.12?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.springframework.boot/spring-boot-starter-web@2.7.5?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.springframework.boot/spring-boot-starter@2.7.5?type=jar",
+ "pkg:maven/org.springframework.boot/spring-boot-starter-json@2.7.5?type=jar",
+ "pkg:maven/org.springframework.boot/spring-boot-starter-tomcat@2.7.5?type=jar",
+ "pkg:maven/org.springframework/spring-web@5.3.23?type=jar",
+ "pkg:maven/org.springframework/spring-webmvc@5.3.23?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.springframework.boot/spring-boot-starter@2.7.5?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.springframework.boot/spring-boot@2.7.5?type=jar",
+ "pkg:maven/org.springframework.boot/spring-boot-autoconfigure@2.7.5?type=jar",
+ "pkg:maven/org.springframework.boot/spring-boot-starter-logging@2.7.5?type=jar",
+ "pkg:maven/jakarta.annotation/jakarta.annotation-api@1.3.5?type=jar",
+ "pkg:maven/org.springframework/spring-core@5.3.23?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.springframework.boot/spring-boot@2.7.5?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.springframework/spring-core@5.3.23?type=jar",
+ "pkg:maven/org.springframework/spring-context@5.3.23?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.springframework.boot/spring-boot-autoconfigure@2.7.5?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.springframework.boot/spring-boot@2.7.5?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.springframework.boot/spring-boot-starter-logging@2.7.5?type=jar",
+ "dependsOn" : [
+ "pkg:maven/ch.qos.logback/logback-classic@1.2.11?type=jar",
+ "pkg:maven/org.apache.logging.log4j/log4j-to-slf4j@2.17.2?type=jar",
+ "pkg:maven/org.slf4j/jul-to-slf4j@1.7.36?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/jakarta.annotation/jakarta.annotation-api@1.3.5?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/org.springframework/spring-core@5.3.23?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.springframework/spring-jcl@5.3.23?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.springframework.boot/spring-boot-starter-json@2.7.5?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.springframework.boot/spring-boot-starter@2.7.5?type=jar",
+ "pkg:maven/org.springframework/spring-web@5.3.23?type=jar",
+ "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.13.4.2?type=jar",
+ "pkg:maven/com.fasterxml.jackson.datatype/jackson-datatype-jdk8@2.13.4?type=jar",
+ "pkg:maven/com.fasterxml.jackson.datatype/jackson-datatype-jsr310@2.13.4?type=jar",
+ "pkg:maven/com.fasterxml.jackson.module/jackson-module-parameter-names@2.13.4?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.springframework/spring-web@5.3.23?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.springframework/spring-beans@5.3.23?type=jar",
+ "pkg:maven/org.springframework/spring-core@5.3.23?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.13.4.2?type=jar",
+ "dependsOn" : [
+ "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.13.4?type=jar",
+ "pkg:maven/com.fasterxml.jackson.core/jackson-core@2.13.4?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/com.fasterxml.jackson.datatype/jackson-datatype-jdk8@2.13.4?type=jar",
+ "dependsOn" : [
+ "pkg:maven/com.fasterxml.jackson.core/jackson-core@2.13.4?type=jar",
+ "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.13.4.2?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/com.fasterxml.jackson.core/jackson-core@2.13.4?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/com.fasterxml.jackson.datatype/jackson-datatype-jsr310@2.13.4?type=jar",
+ "dependsOn" : [
+ "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.13.4?type=jar",
+ "pkg:maven/com.fasterxml.jackson.core/jackson-core@2.13.4?type=jar",
+ "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.13.4.2?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/com.fasterxml.jackson.module/jackson-module-parameter-names@2.13.4?type=jar",
+ "dependsOn" : [
+ "pkg:maven/com.fasterxml.jackson.core/jackson-core@2.13.4?type=jar",
+ "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.13.4.2?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.springframework.boot/spring-boot-starter-tomcat@2.7.5?type=jar",
+ "dependsOn" : [
+ "pkg:maven/jakarta.annotation/jakarta.annotation-api@1.3.5?type=jar",
+ "pkg:maven/org.apache.tomcat.embed/tomcat-embed-core@9.0.68?type=jar",
+ "pkg:maven/org.apache.tomcat.embed/tomcat-embed-el@9.0.68?type=jar",
+ "pkg:maven/org.apache.tomcat.embed/tomcat-embed-websocket@9.0.68?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.apache.tomcat.embed/tomcat-embed-core@9.0.68?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/org.apache.tomcat.embed/tomcat-embed-el@9.0.68?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/org.apache.tomcat.embed/tomcat-embed-websocket@9.0.68?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.apache.tomcat.embed/tomcat-embed-core@9.0.68?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.springframework/spring-beans@5.3.23?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.springframework/spring-core@5.3.23?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.springframework/spring-webmvc@5.3.23?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.springframework/spring-aop@5.3.23?type=jar",
+ "pkg:maven/org.springframework/spring-beans@5.3.23?type=jar",
+ "pkg:maven/org.springframework/spring-context@5.3.23?type=jar",
+ "pkg:maven/org.springframework/spring-core@5.3.23?type=jar",
+ "pkg:maven/org.springframework/spring-expression@5.3.23?type=jar",
+ "pkg:maven/org.springframework/spring-web@5.3.23?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.springframework/spring-aop@5.3.23?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.springframework/spring-beans@5.3.23?type=jar",
+ "pkg:maven/org.springframework/spring-core@5.3.23?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.springframework/spring-context@5.3.23?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.springframework/spring-aop@5.3.23?type=jar",
+ "pkg:maven/org.springframework/spring-beans@5.3.23?type=jar",
+ "pkg:maven/org.springframework/spring-core@5.3.23?type=jar",
+ "pkg:maven/org.springframework/spring-expression@5.3.23?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.springframework/spring-expression@5.3.23?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.springframework/spring-core@5.3.23?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.springframework.boot/spring-boot-starter-websocket@2.7.5?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.springframework.boot/spring-boot-starter-web@2.7.5?type=jar",
+ "pkg:maven/org.springframework/spring-messaging@5.3.23?type=jar",
+ "pkg:maven/org.springframework/spring-websocket@5.3.23?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.springframework/spring-messaging@5.3.23?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.springframework/spring-beans@5.3.23?type=jar",
+ "pkg:maven/org.springframework/spring-core@5.3.23?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.springframework/spring-websocket@5.3.23?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.springframework/spring-context@5.3.23?type=jar",
+ "pkg:maven/org.springframework/spring-core@5.3.23?type=jar",
+ "pkg:maven/org.springframework/spring-web@5.3.23?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.springframework.boot/spring-boot-starter-data-jpa@2.7.5?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.springframework.boot/spring-boot-starter-aop@2.7.5?type=jar",
+ "pkg:maven/org.springframework.boot/spring-boot-starter-jdbc@2.7.5?type=jar",
+ "pkg:maven/jakarta.transaction/jakarta.transaction-api@1.3.3?type=jar",
+ "pkg:maven/jakarta.persistence/jakarta.persistence-api@2.2.3?type=jar",
+ "pkg:maven/org.hibernate/hibernate-core@5.6.12.Final?type=jar",
+ "pkg:maven/org.springframework.data/spring-data-jpa@2.7.5?type=jar",
+ "pkg:maven/org.springframework/spring-aspects@5.3.23?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.springframework.boot/spring-boot-starter-aop@2.7.5?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.springframework.boot/spring-boot-starter@2.7.5?type=jar",
+ "pkg:maven/org.springframework/spring-aop@5.3.23?type=jar",
+ "pkg:maven/org.aspectj/aspectjweaver@1.9.7?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.aspectj/aspectjweaver@1.9.7?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/org.springframework.boot/spring-boot-starter-jdbc@2.7.5?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.springframework.boot/spring-boot-starter@2.7.5?type=jar",
+ "pkg:maven/com.zaxxer/HikariCP@4.0.3?type=jar",
+ "pkg:maven/org.springframework/spring-jdbc@5.3.23?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/com.zaxxer/HikariCP@4.0.3?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.slf4j/slf4j-api@1.7.36?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.slf4j/slf4j-api@1.7.36?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/org.springframework/spring-jdbc@5.3.23?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.springframework/spring-beans@5.3.23?type=jar",
+ "pkg:maven/org.springframework/spring-core@5.3.23?type=jar",
+ "pkg:maven/org.springframework/spring-tx@5.3.23?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.springframework/spring-tx@5.3.23?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.springframework/spring-beans@5.3.23?type=jar",
+ "pkg:maven/org.springframework/spring-core@5.3.23?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/jakarta.transaction/jakarta.transaction-api@1.3.3?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/jakarta.persistence/jakarta.persistence-api@2.2.3?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/org.hibernate/hibernate-core@5.6.12.Final?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.jboss.logging/jboss-logging@3.4.3.Final?type=jar",
+ "pkg:maven/net.bytebuddy/byte-buddy@1.12.18?type=jar",
+ "pkg:maven/org.jboss/jandex@2.4.2.Final?type=jar",
+ "pkg:maven/com.fasterxml/classmate@1.5.1?type=jar",
+ "pkg:maven/org.hibernate.common/hibernate-commons-annotations@5.1.2.Final?type=jar",
+ "pkg:maven/org.glassfish.jaxb/jaxb-runtime@2.3.7?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.jboss.logging/jboss-logging@3.4.3.Final?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/javax.annotation/javax.annotation-api@1.3.2?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/net.bytebuddy/byte-buddy@1.12.18?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/org.jboss/jandex@2.4.2.Final?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/com.fasterxml/classmate@1.5.1?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/org.hibernate.common/hibernate-commons-annotations@5.1.2.Final?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.jboss.logging/jboss-logging@3.4.3.Final?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.glassfish.jaxb/jaxb-runtime@2.3.7?type=jar",
+ "dependsOn" : [
+ "pkg:maven/jakarta.xml.bind/jakarta.xml.bind-api@2.3.3?type=jar",
+ "pkg:maven/org.glassfish.jaxb/txw2@2.3.7?type=jar",
+ "pkg:maven/com.sun.istack/istack-commons-runtime@3.0.12?type=jar",
+ "pkg:maven/com.sun.activation/jakarta.activation@1.2.2?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/jakarta.xml.bind/jakarta.xml.bind-api@2.3.3?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/org.glassfish.jaxb/txw2@2.3.7?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/com.sun.istack/istack-commons-runtime@3.0.12?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/com.sun.activation/jakarta.activation@1.2.2?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/org.springframework.data/spring-data-jpa@2.7.5?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.springframework.data/spring-data-commons@2.7.5?type=jar",
+ "pkg:maven/org.springframework/spring-orm@5.3.23?type=jar",
+ "pkg:maven/org.springframework/spring-context@5.3.23?type=jar",
+ "pkg:maven/org.springframework/spring-aop@5.3.23?type=jar",
+ "pkg:maven/org.springframework/spring-tx@5.3.23?type=jar",
+ "pkg:maven/org.springframework/spring-beans@5.3.23?type=jar",
+ "pkg:maven/org.springframework/spring-core@5.3.23?type=jar",
+ "pkg:maven/org.slf4j/slf4j-api@1.7.36?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.springframework.data/spring-data-commons@2.7.5?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.springframework/spring-core@5.3.23?type=jar",
+ "pkg:maven/org.springframework/spring-beans@5.3.23?type=jar",
+ "pkg:maven/org.slf4j/slf4j-api@1.7.36?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.springframework/spring-orm@5.3.23?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.springframework/spring-beans@5.3.23?type=jar",
+ "pkg:maven/org.springframework/spring-core@5.3.23?type=jar",
+ "pkg:maven/org.springframework/spring-jdbc@5.3.23?type=jar",
+ "pkg:maven/org.springframework/spring-tx@5.3.23?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.springframework/spring-aspects@5.3.23?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.aspectj/aspectjweaver@1.9.7?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.springframework.boot/spring-boot-starter-security@2.7.5?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.springframework.boot/spring-boot-starter@2.7.5?type=jar",
+ "pkg:maven/org.springframework/spring-aop@5.3.23?type=jar",
+ "pkg:maven/org.springframework.security/spring-security-config@5.7.4?type=jar",
+ "pkg:maven/org.springframework.security/spring-security-web@5.7.4?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.springframework.security/spring-security-config@5.7.4?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.springframework.security/spring-security-core@5.7.4?type=jar",
+ "pkg:maven/org.springframework/spring-aop@5.3.23?type=jar",
+ "pkg:maven/org.springframework/spring-beans@5.3.23?type=jar",
+ "pkg:maven/org.springframework/spring-context@5.3.23?type=jar",
+ "pkg:maven/org.springframework/spring-core@5.3.23?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.springframework.security/spring-security-core@5.7.4?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.springframework.security/spring-security-crypto@5.7.4?type=jar",
+ "pkg:maven/org.springframework/spring-aop@5.3.23?type=jar",
+ "pkg:maven/org.springframework/spring-beans@5.3.23?type=jar",
+ "pkg:maven/org.springframework/spring-context@5.3.23?type=jar",
+ "pkg:maven/org.springframework/spring-core@5.3.23?type=jar",
+ "pkg:maven/org.springframework/spring-expression@5.3.23?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.springframework.security/spring-security-crypto@5.7.4?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/org.springframework.security/spring-security-web@5.7.4?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.springframework.security/spring-security-core@5.7.4?type=jar",
+ "pkg:maven/org.springframework/spring-core@5.3.23?type=jar",
+ "pkg:maven/org.springframework/spring-aop@5.3.23?type=jar",
+ "pkg:maven/org.springframework/spring-beans@5.3.23?type=jar",
+ "pkg:maven/org.springframework/spring-context@5.3.23?type=jar",
+ "pkg:maven/org.springframework/spring-expression@5.3.23?type=jar",
+ "pkg:maven/org.springframework/spring-web@5.3.23?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/ch.qos.logback/logback-classic@1.2.11?type=jar",
+ "dependsOn" : [
+ "pkg:maven/ch.qos.logback/logback-core@1.2.11?type=jar",
+ "pkg:maven/org.slf4j/slf4j-api@1.7.36?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.apache.logging.log4j/log4j-to-slf4j@2.17.2?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.slf4j/slf4j-api@1.7.36?type=jar",
+ "pkg:maven/org.apache.logging.log4j/log4j-api@2.17.2?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.apache.logging.log4j/log4j-api@2.17.2?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/org.slf4j/jul-to-slf4j@1.7.36?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.slf4j/slf4j-api@1.7.36?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.springframework.boot/spring-boot-starter-validation@2.7.5?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.springframework.boot/spring-boot-starter@2.7.5?type=jar",
+ "pkg:maven/org.apache.tomcat.embed/tomcat-embed-el@9.0.68?type=jar",
+ "pkg:maven/org.hibernate.validator/hibernate-validator@6.2.5.Final?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.hibernate.validator/hibernate-validator@6.2.5.Final?type=jar",
+ "dependsOn" : [
+ "pkg:maven/jakarta.validation/jakarta.validation-api@2.0.2?type=jar",
+ "pkg:maven/org.jboss.logging/jboss-logging@3.4.3.Final?type=jar",
+ "pkg:maven/com.fasterxml/classmate@1.5.1?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/jakarta.validation/jakarta.validation-api@2.0.2?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/org.springframework/spring-oxm@5.3.23?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.springframework/spring-beans@5.3.23?type=jar",
+ "pkg:maven/org.springframework/spring-core@5.3.23?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.springframework/spring-jcl@5.3.23?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.13.4?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/org.springframework.boot/spring-boot-devtools@2.7.5?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.springframework.boot/spring-boot@2.7.5?type=jar",
+ "pkg:maven/org.springframework.boot/spring-boot-autoconfigure@2.7.5?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.projectlombok/lombok@1.18.24?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/com.unboundid/unboundid-ldapsdk@4.0.8?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/org.snmp4j/snmp4j@2.5.6?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/org.openmuc/openiec61850@1.7.0?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.slf4j/slf4j-api@1.7.36?type=jar",
+ "pkg:maven/org.openmuc/jasn1-iec61850mod@1.10.0?type=jar",
+ "pkg:maven/ch.qos.logback/logback-classic@1.2.11?type=jar",
+ "pkg:maven/com.toedter/jcalendar@1.4?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.openmuc/jasn1-iec61850mod@1.10.0?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/com.toedter/jcalendar@1.4?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/io.cloudsoft.windows/winrm4j@0.12.3?type=jar",
+ "dependsOn" : [
+ "pkg:maven/io.cloudsoft.windows/winrm4j-client@0.12.3?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/io.cloudsoft.windows/winrm4j-client@0.12.3?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.apache.cxf/cxf-rt-transports-http@3.3.9?type=jar",
+ "pkg:maven/org.apache.cxf/cxf-rt-transports-http-hc@3.3.9?type=jar",
+ "pkg:maven/org.apache.cxf/cxf-rt-frontend-jaxws@3.3.9?type=jar",
+ "pkg:maven/org.apache.httpcomponents/httpcore-nio@4.4.15?type=jar",
+ "pkg:maven/org.apache.httpcomponents/httpclient@4.5.13?type=jar",
+ "pkg:maven/org.apache.httpcomponents/httpasyncclient@4.1.5?type=jar",
+ "pkg:maven/commons-io/commons-io@2.4?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.apache.cxf/cxf-rt-transports-http@3.3.9?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.apache.cxf/cxf-core@3.3.9?type=jar",
+ "pkg:maven/javax.annotation/javax.annotation-api@1.3.2?type=jar",
+ "pkg:maven/javax.xml.ws/jaxws-api@2.3.1?type=jar",
+ "pkg:maven/com.sun.activation/javax.activation@1.2.0?type=jar",
+ "pkg:maven/org.apache.geronimo.specs/geronimo-ws-metadata_2.0_spec@1.1.3?type=jar",
+ "pkg:maven/com.sun.xml.messaging.saaj/saaj-impl@1.5.3?type=jar",
+ "pkg:maven/org.jacorb/jacorb-omgapi@3.9?type=jar",
+ "pkg:maven/org.apache.geronimo.specs/geronimo-jta_1.1_spec@1.1.1?type=jar",
+ "pkg:maven/org.jboss.spec.javax.rmi/jboss-rmi-api_1.0_spec@1.0.6.Final?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.apache.cxf/cxf-core@3.3.9?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.glassfish.jaxb/jaxb-runtime@2.3.7?type=jar",
+ "pkg:maven/org.apache.ws.xmlschema/xmlschema-core@2.2.5?type=jar",
+ "pkg:maven/jakarta.xml.bind/jakarta.xml.bind-api@2.3.3?type=jar",
+ "pkg:maven/javax.annotation/javax.annotation-api@1.3.2?type=jar",
+ "pkg:maven/javax.xml.ws/jaxws-api@2.3.1?type=jar",
+ "pkg:maven/com.sun.activation/javax.activation@1.2.0?type=jar",
+ "pkg:maven/org.apache.geronimo.specs/geronimo-ws-metadata_2.0_spec@1.1.3?type=jar",
+ "pkg:maven/com.sun.xml.messaging.saaj/saaj-impl@1.5.3?type=jar",
+ "pkg:maven/org.jacorb/jacorb-omgapi@3.9?type=jar",
+ "pkg:maven/org.apache.geronimo.specs/geronimo-jta_1.1_spec@1.1.1?type=jar",
+ "pkg:maven/org.jboss.spec.javax.rmi/jboss-rmi-api_1.0_spec@1.0.6.Final?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.apache.ws.xmlschema/xmlschema-core@2.2.5?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/javax.xml.ws/jaxws-api@2.3.1?type=jar",
+ "dependsOn" : [
+ "pkg:maven/javax.xml.soap/javax.xml.soap-api@1.4.0?type=jar",
+ "pkg:maven/javax.annotation/javax.annotation-api@1.3.2?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/com.sun.activation/javax.activation@1.2.0?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/org.apache.geronimo.specs/geronimo-ws-metadata_2.0_spec@1.1.3?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/com.sun.xml.messaging.saaj/saaj-impl@1.5.3?type=jar",
+ "dependsOn" : [
+ "pkg:maven/jakarta.xml.soap/jakarta.xml.soap-api@1.4.2?type=jar",
+ "pkg:maven/org.jvnet.staxex/stax-ex@1.8.3?type=jar",
+ "pkg:maven/com.sun.activation/jakarta.activation@1.2.2?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.jacorb/jacorb-omgapi@3.9?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/org.apache.geronimo.specs/geronimo-jta_1.1_spec@1.1.1?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/org.jboss.spec.javax.rmi/jboss-rmi-api_1.0_spec@1.0.6.Final?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/javax.xml.soap/javax.xml.soap-api@1.4.0?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/jakarta.xml.soap/jakarta.xml.soap-api@1.4.2?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/org.jvnet.staxex/stax-ex@1.8.3?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/org.apache.cxf/cxf-rt-transports-http-hc@3.3.9?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.apache.cxf/cxf-core@3.3.9?type=jar",
+ "pkg:maven/org.apache.cxf/cxf-rt-transports-http@3.3.9?type=jar",
+ "pkg:maven/org.slf4j/slf4j-api@1.7.36?type=jar",
+ "pkg:maven/org.slf4j/jcl-over-slf4j@1.7.36?type=jar",
+ "pkg:maven/javax.annotation/javax.annotation-api@1.3.2?type=jar",
+ "pkg:maven/javax.xml.ws/jaxws-api@2.3.1?type=jar",
+ "pkg:maven/com.sun.activation/javax.activation@1.2.0?type=jar",
+ "pkg:maven/org.apache.geronimo.specs/geronimo-ws-metadata_2.0_spec@1.1.3?type=jar",
+ "pkg:maven/com.sun.xml.messaging.saaj/saaj-impl@1.5.3?type=jar",
+ "pkg:maven/org.jacorb/jacorb-omgapi@3.9?type=jar",
+ "pkg:maven/org.apache.geronimo.specs/geronimo-jta_1.1_spec@1.1.1?type=jar",
+ "pkg:maven/org.jboss.spec.javax.rmi/jboss-rmi-api_1.0_spec@1.0.6.Final?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.slf4j/jcl-over-slf4j@1.7.36?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.slf4j/slf4j-api@1.7.36?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.apache.cxf/cxf-rt-frontend-jaxws@3.3.9?type=jar",
+ "dependsOn" : [
+ "pkg:maven/xml-resolver/xml-resolver@1.2?type=jar",
+ "pkg:maven/org.ow2.asm/asm@9.0?type=jar",
+ "pkg:maven/org.apache.cxf/cxf-core@3.3.9?type=jar",
+ "pkg:maven/org.apache.cxf/cxf-rt-bindings-soap@3.3.9?type=jar",
+ "pkg:maven/org.apache.cxf/cxf-rt-bindings-xml@3.3.9?type=jar",
+ "pkg:maven/org.apache.cxf/cxf-rt-frontend-simple@3.3.9?type=jar",
+ "pkg:maven/org.apache.cxf/cxf-rt-transports-http@3.3.9?type=jar",
+ "pkg:maven/org.apache.cxf/cxf-rt-ws-addr@3.3.9?type=jar",
+ "pkg:maven/javax.annotation/javax.annotation-api@1.3.2?type=jar",
+ "pkg:maven/javax.xml.ws/jaxws-api@2.3.1?type=jar",
+ "pkg:maven/com.sun.activation/javax.activation@1.2.0?type=jar",
+ "pkg:maven/org.apache.geronimo.specs/geronimo-ws-metadata_2.0_spec@1.1.3?type=jar",
+ "pkg:maven/com.sun.xml.messaging.saaj/saaj-impl@1.5.3?type=jar",
+ "pkg:maven/org.jacorb/jacorb-omgapi@3.9?type=jar",
+ "pkg:maven/org.apache.geronimo.specs/geronimo-jta_1.1_spec@1.1.1?type=jar",
+ "pkg:maven/org.jboss.spec.javax.rmi/jboss-rmi-api_1.0_spec@1.0.6.Final?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/xml-resolver/xml-resolver@1.2?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/org.ow2.asm/asm@9.0?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/org.apache.cxf/cxf-rt-bindings-soap@3.3.9?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.apache.cxf/cxf-core@3.3.9?type=jar",
+ "pkg:maven/org.apache.cxf/cxf-rt-wsdl@3.3.9?type=jar",
+ "pkg:maven/org.apache.cxf/cxf-rt-databinding-jaxb@3.3.9?type=jar",
+ "pkg:maven/javax.annotation/javax.annotation-api@1.3.2?type=jar",
+ "pkg:maven/javax.xml.ws/jaxws-api@2.3.1?type=jar",
+ "pkg:maven/com.sun.activation/javax.activation@1.2.0?type=jar",
+ "pkg:maven/org.apache.geronimo.specs/geronimo-ws-metadata_2.0_spec@1.1.3?type=jar",
+ "pkg:maven/com.sun.xml.messaging.saaj/saaj-impl@1.5.3?type=jar",
+ "pkg:maven/org.jacorb/jacorb-omgapi@3.9?type=jar",
+ "pkg:maven/org.apache.geronimo.specs/geronimo-jta_1.1_spec@1.1.1?type=jar",
+ "pkg:maven/org.jboss.spec.javax.rmi/jboss-rmi-api_1.0_spec@1.0.6.Final?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.apache.cxf/cxf-rt-wsdl@3.3.9?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.apache.cxf/cxf-core@3.3.9?type=jar",
+ "pkg:maven/wsdl4j/wsdl4j@1.6.3?type=jar",
+ "pkg:maven/org.ow2.asm/asm@9.0?type=jar",
+ "pkg:maven/org.springframework/spring-core@5.3.23?type=jar",
+ "pkg:maven/org.springframework/spring-beans@5.3.23?type=jar",
+ "pkg:maven/org.springframework/spring-context@5.3.23?type=jar",
+ "pkg:maven/javax.annotation/javax.annotation-api@1.3.2?type=jar",
+ "pkg:maven/javax.xml.ws/jaxws-api@2.3.1?type=jar",
+ "pkg:maven/com.sun.activation/javax.activation@1.2.0?type=jar",
+ "pkg:maven/org.apache.geronimo.specs/geronimo-ws-metadata_2.0_spec@1.1.3?type=jar",
+ "pkg:maven/com.sun.xml.messaging.saaj/saaj-impl@1.5.3?type=jar",
+ "pkg:maven/org.jacorb/jacorb-omgapi@3.9?type=jar",
+ "pkg:maven/org.apache.geronimo.specs/geronimo-jta_1.1_spec@1.1.1?type=jar",
+ "pkg:maven/org.jboss.spec.javax.rmi/jboss-rmi-api_1.0_spec@1.0.6.Final?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/wsdl4j/wsdl4j@1.6.3?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/org.apache.cxf/cxf-rt-databinding-jaxb@3.3.9?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.apache.cxf/cxf-core@3.3.9?type=jar",
+ "pkg:maven/org.apache.cxf/cxf-rt-wsdl@3.3.9?type=jar",
+ "pkg:maven/javax.annotation/javax.annotation-api@1.3.2?type=jar",
+ "pkg:maven/javax.xml.ws/jaxws-api@2.3.1?type=jar",
+ "pkg:maven/com.sun.activation/javax.activation@1.2.0?type=jar",
+ "pkg:maven/org.apache.geronimo.specs/geronimo-ws-metadata_2.0_spec@1.1.3?type=jar",
+ "pkg:maven/com.sun.xml.messaging.saaj/saaj-impl@1.5.3?type=jar",
+ "pkg:maven/org.jacorb/jacorb-omgapi@3.9?type=jar",
+ "pkg:maven/org.apache.geronimo.specs/geronimo-jta_1.1_spec@1.1.1?type=jar",
+ "pkg:maven/org.jboss.spec.javax.rmi/jboss-rmi-api_1.0_spec@1.0.6.Final?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.apache.cxf/cxf-rt-bindings-xml@3.3.9?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.apache.cxf/cxf-core@3.3.9?type=jar",
+ "pkg:maven/javax.annotation/javax.annotation-api@1.3.2?type=jar",
+ "pkg:maven/javax.xml.ws/jaxws-api@2.3.1?type=jar",
+ "pkg:maven/com.sun.activation/javax.activation@1.2.0?type=jar",
+ "pkg:maven/org.apache.geronimo.specs/geronimo-ws-metadata_2.0_spec@1.1.3?type=jar",
+ "pkg:maven/com.sun.xml.messaging.saaj/saaj-impl@1.5.3?type=jar",
+ "pkg:maven/org.jacorb/jacorb-omgapi@3.9?type=jar",
+ "pkg:maven/org.apache.geronimo.specs/geronimo-jta_1.1_spec@1.1.1?type=jar",
+ "pkg:maven/org.jboss.spec.javax.rmi/jboss-rmi-api_1.0_spec@1.0.6.Final?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.apache.cxf/cxf-rt-frontend-simple@3.3.9?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.apache.cxf/cxf-core@3.3.9?type=jar",
+ "pkg:maven/org.apache.cxf/cxf-rt-bindings-soap@3.3.9?type=jar",
+ "pkg:maven/org.apache.cxf/cxf-rt-wsdl@3.3.9?type=jar",
+ "pkg:maven/javax.annotation/javax.annotation-api@1.3.2?type=jar",
+ "pkg:maven/javax.xml.ws/jaxws-api@2.3.1?type=jar",
+ "pkg:maven/com.sun.activation/javax.activation@1.2.0?type=jar",
+ "pkg:maven/org.apache.geronimo.specs/geronimo-ws-metadata_2.0_spec@1.1.3?type=jar",
+ "pkg:maven/com.sun.xml.messaging.saaj/saaj-impl@1.5.3?type=jar",
+ "pkg:maven/org.jacorb/jacorb-omgapi@3.9?type=jar",
+ "pkg:maven/org.apache.geronimo.specs/geronimo-jta_1.1_spec@1.1.1?type=jar",
+ "pkg:maven/org.jboss.spec.javax.rmi/jboss-rmi-api_1.0_spec@1.0.6.Final?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.apache.cxf/cxf-rt-ws-addr@3.3.9?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.apache.cxf/cxf-core@3.3.9?type=jar",
+ "pkg:maven/org.apache.cxf/cxf-rt-bindings-soap@3.3.9?type=jar",
+ "pkg:maven/org.apache.cxf/cxf-rt-ws-policy@3.3.9?type=jar",
+ "pkg:maven/javax.annotation/javax.annotation-api@1.3.2?type=jar",
+ "pkg:maven/javax.xml.ws/jaxws-api@2.3.1?type=jar",
+ "pkg:maven/com.sun.activation/javax.activation@1.2.0?type=jar",
+ "pkg:maven/org.apache.geronimo.specs/geronimo-ws-metadata_2.0_spec@1.1.3?type=jar",
+ "pkg:maven/com.sun.xml.messaging.saaj/saaj-impl@1.5.3?type=jar",
+ "pkg:maven/org.jacorb/jacorb-omgapi@3.9?type=jar",
+ "pkg:maven/org.apache.geronimo.specs/geronimo-jta_1.1_spec@1.1.1?type=jar",
+ "pkg:maven/org.jboss.spec.javax.rmi/jboss-rmi-api_1.0_spec@1.0.6.Final?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.apache.cxf/cxf-rt-ws-policy@3.3.9?type=jar",
+ "dependsOn" : [
+ "pkg:maven/wsdl4j/wsdl4j@1.6.3?type=jar",
+ "pkg:maven/org.apache.cxf/cxf-core@3.3.9?type=jar",
+ "pkg:maven/org.apache.neethi/neethi@3.1.1?type=jar",
+ "pkg:maven/javax.annotation/javax.annotation-api@1.3.2?type=jar",
+ "pkg:maven/javax.xml.ws/jaxws-api@2.3.1?type=jar",
+ "pkg:maven/com.sun.activation/javax.activation@1.2.0?type=jar",
+ "pkg:maven/org.apache.geronimo.specs/geronimo-ws-metadata_2.0_spec@1.1.3?type=jar",
+ "pkg:maven/com.sun.xml.messaging.saaj/saaj-impl@1.5.3?type=jar",
+ "pkg:maven/org.jacorb/jacorb-omgapi@3.9?type=jar",
+ "pkg:maven/org.apache.geronimo.specs/geronimo-jta_1.1_spec@1.1.1?type=jar",
+ "pkg:maven/org.jboss.spec.javax.rmi/jboss-rmi-api_1.0_spec@1.0.6.Final?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.apache.neethi/neethi@3.1.1?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/org.apache.httpcomponents/httpcore-nio@4.4.15?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/org.apache.httpcomponents/httpclient@4.5.13?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.apache.httpcomponents/httpcore@4.4.15?type=jar",
+ "pkg:maven/commons-codec/commons-codec@1.15?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.apache.httpcomponents/httpcore@4.4.15?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/commons-codec/commons-codec@1.15?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/org.apache.httpcomponents/httpasyncclient@4.1.5?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/commons-io/commons-io@2.4?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/com.fasterxml.woodstox/woodstox-core@5.3.0?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.codehaus.woodstox/stax2-api@4.2?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.codehaus.woodstox/stax2-api@4.2?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/org.apache.commons/commons-lang3@3.6?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/commons-net/commons-net@3.6?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/com.h2database/h2@1.4.199?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/ch.qos.logback/logback-core@1.2.11?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/io.jsonwebtoken/jjwt-api@0.10.5?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/io.jsonwebtoken/jjwt-impl@0.10.5?type=jar",
+ "dependsOn" : [
+ "pkg:maven/io.jsonwebtoken/jjwt-api@0.10.5?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/io.jsonwebtoken/jjwt-jackson@0.10.5?type=jar",
+ "dependsOn" : [
+ "pkg:maven/io.jsonwebtoken/jjwt-api@0.10.5?type=jar",
+ "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.13.4.2?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.antlr/antlr-complete@3.5.3?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.antlr/antlr@3.5.3?type=jar",
+ "pkg:maven/org.antlr/antlr-runtime@3.5.3?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.antlr/antlr@3.5.3?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.antlr/antlr-runtime@3.5.3?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.antlr/antlr-runtime@3.5.3?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/com.hynnet/tinyradius@1.0?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/org.mockito/mockito-core@2.8.47?type=jar",
+ "dependsOn" : [
+ "pkg:maven/net.bytebuddy/byte-buddy@1.12.18?type=jar",
+ "pkg:maven/net.bytebuddy/byte-buddy-agent@1.12.18?type=jar",
+ "pkg:maven/org.objenesis/objenesis@2.5?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/net.bytebuddy/byte-buddy-agent@1.12.18?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/org.objenesis/objenesis@2.5?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/junit/junit@4.12?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.hamcrest/hamcrest-core@2.2?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.hamcrest/hamcrest-core@2.2?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.hamcrest/hamcrest@2.2?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.hamcrest/hamcrest@2.2?type=jar",
+ "dependsOn" : [ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/src/LCT.PackageIdentifier.UTest/PackageIdentifierUTTestFiles/MavenDevDependency/WithOneInputFile/bom-without.cdx.json b/src/LCT.PackageIdentifier.UTest/PackageIdentifierUTTestFiles/MavenDevDependency/WithOneInputFile/bom-without.cdx.json
new file mode 100644
index 00000000..fb6309ad
--- /dev/null
+++ b/src/LCT.PackageIdentifier.UTest/PackageIdentifierUTTestFiles/MavenDevDependency/WithOneInputFile/bom-without.cdx.json
@@ -0,0 +1,8997 @@
+{
+ "bomFormat" : "CycloneDX",
+ "specVersion" : "1.4",
+ "serialNumber" : "urn:uuid:94f66f37-ddd8-47ab-832f-570df5a2ad63",
+ "version" : 1,
+ "metadata" : {
+ "timestamp" : "2023-06-22T08:53:47Z",
+ "tools" : [
+ {
+ "vendor" : "OWASP Foundation",
+ "name" : "CycloneDX Maven plugin",
+ "version" : "2.7.1",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "538c878ebf89b372876e247d056a3fc5"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "4561e50edb47e12a03712b1afce9b20cba32fd28"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "f0ea7b3bcf5c7ba649b8d9807e805385330501881677d47333aebce8305ef4d4"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "a35400ca6411692ae8964fe7030eaba2a83a2fa50e2883def3054191283c3b48e2dcdd68bf80f5a0ede3898cc6b7cb7b998aacd2c1e969320053c43b6ab8d873"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "75c0c03a03c69e82ad1f7b942d6d733da8261c4058174355d6b24ebd88cee34180f2e8484d2b0fedaf459078bdf6e927"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "98cd312d4dfc104a0a66d65023d0aade423f08951f2a9e0215e703f0c81c4f274d8e11a2db1abc30a558b820d65860c4"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "0c5fd65013128de457b049a824c4ad11212d668b503613ce19a54d545e5cf82d"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "72ea0ed8faa3cc4493db96d0223094842e7153890b091ff364040ad3ad89363157fc9d1bd852262124aec83134f0c19aa4fd0fa482031d38a76d74dfd36b7964"
+ }
+ ]
+ }
+ ],
+ "component" : {
+ "publisher" : "test",
+ "group" : "br.com.test",
+ "name" : "test-backend",
+ "version" : "01.23.00",
+ "description" : "Substation Device Monitoring - Backend",
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/br.com.test/test-backend@01.23.00?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "http://www.test.com/"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/spring-projects/spring-boot/test/test-backend"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/br.com.test/test-backend@01.23.00?type=jar"
+ }
+ },
+ "components" : [
+ {
+ "publisher" : "Pivotal Software, Inc.",
+ "group" : "org.springframework.boot",
+ "name" : "spring-boot-starter-web",
+ "version" : "2.7.5",
+ "description" : "Starter for building web, including RESTful, applications using Spring MVC. Uses Tomcat as the default embedded container",
+ "scope" : "optional",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "5cf782727add6bfc7c778162222133e5"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "bb4099d0466a62c3b11ab9323babca13bb430a2e"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "75bcf5c2e5103dd5fa16c82bb3387d0ae3cfb82e91a378bab4c644dd0538552f"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "884020f2121346480bb5928ffa7a9cadaa5cc17aad396c800c68a84c1c4dfb18a5a4540c293eade0af003490c2a750061316cc7d42b6fe40fe81723057fdac9f"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "d201f146382307e41d6777ced391942e295c76c4452d6fef5cfa18e1cce8e2b121bfda04c6f5df9a725a6bafd974dc3f"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "9b8721ce15307aeaf7d99a5ae3b4e947cb69fbf96cf7358c54790a04b3990e2cfcbacee04e2f505ca0c49c0831641e9b"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "62d41a23ae42115bd881cce16b5dcc9de814a4ef08b7515f7d2a93ddf5a67fc5"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "1bad0469d0042a4e4fa0d1d1ef2dea965011fe887945e896d1e6ad8e5b9f5c18e67d748c790135ac478124c021da32324dba92cd60670bc46228a28c170698cc"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.springframework.boot/spring-boot-starter-web@2.7.5?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://spring.io"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/spring-projects/spring-boot/issues"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/spring-projects/spring-boot"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.springframework.boot/spring-boot-starter-web@2.7.5?type=jar"
+ },
+ {
+ "publisher" : "Pivotal Software, Inc.",
+ "group" : "org.springframework.boot",
+ "name" : "spring-boot-starter",
+ "version" : "2.7.5",
+ "description" : "Core starter, including auto-configuration support, logging and YAML",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "97c7fe599ea0a94e13f938e41ae583e8"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "c28e1546461803490588085345ba5d2897d232bc"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "142e8a6de770ad2ff5d788edc1ee9efe44fbfc24569e5d9b914013026bc33dc4"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "131e4ed9aa01c66516815ab86cf2afca382054604c953dd4dea418c269d4ba215483780bff21e63d55b1239f046780676d6683c0a8487420fb04f1fdacea7806"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "8de4a7df93c12f08cffa1d4af9662cd12b4cd7c6f35b49979e99b389d16f71e31a8e36d17ff389b9ae966efa942cbc4e"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "4efa105dc7708fae97edb5d10fce1dfc5ece0e25593c365ddd82451fbfd908206ed4c5257f3e77b1575d1b1563e26008"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "a942615da0d8f800497defd2983ec7efa9c4d11f6f5ff5a411084c53c0dcc0a9"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "54ff50fd33e31db983fca7e5be224864c7b6063f9ce270d28e2ad12886c988eaa2315fcd50f14b5eb5b68ef3da6ce463e16c17c7d6d97ebf9ad08b7663cadd6b"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.springframework.boot/spring-boot-starter@2.7.5?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://spring.io"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/spring-projects/spring-boot/issues"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/spring-projects/spring-boot"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.springframework.boot/spring-boot-starter@2.7.5?type=jar"
+ },
+ {
+ "publisher" : "Eclipse Foundation",
+ "group" : "jakarta.annotation",
+ "name" : "jakarta.annotation-api",
+ "version" : "1.3.5",
+ "description" : "Jakarta Annotations API",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "8b165cf58df5f8c2a222f637c0a07c97"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "59eb84ee0d616332ff44aba065f3888cf002cd2d"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "85fb03fc054cdf4efca8efd9b6712bbb418e1ab98241c4539c8585bbc23e1b8a"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "d1acff146c0f9ea923a9325ad4c22ba2052ec474341ab8392abab7e8abd3ca010db2400ff9b5849fc4f1fa5c0a18830eb104da07a13bd26b4f0a43d167935878"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "004a4bde333c0575f72df1cb9cf95ee0c6c7f738a6f0f723a5ec545aaa1664abeb82f01627708a1377e3136754fb7859"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "abcc5b1fbad59b3e9b6d2d6195ec11d6254f689116c534a964724b61f815cca60ba3a2c1489933403f3f78dc54fd20a6"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "3d3ef16365e7a0357d82f874fa26b2b0a146cf7bf98a351c65ef1586444fa009"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "88625a8811be514851209291344df32478b527bc7838ddee58752269bf2457ae8f4e6b6a0d0b5c18522e287ba6df1def0cb19dee2b85e01ee21f0b48ac2630d3"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "EPL-2.0"
+ }
+ },
+ {
+ "license" : {
+ "id" : "GPL-2.0-with-classpath-exception"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/jakarta.annotation/jakarta.annotation-api@1.3.5?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/eclipse-ee4j/common-annotations-api/issues"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "https://dev.eclipse.org/mhonarc/lists/ca-dev"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/eclipse-ee4j/common-annotations-api"
+ },
+ {
+ "type" : "website",
+ "url" : "https://www.eclipse.org"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/jakarta.annotation/jakarta.annotation-api@1.3.5?type=jar"
+ },
+ {
+ "publisher" : "Pivotal Software, Inc.",
+ "group" : "org.springframework.boot",
+ "name" : "spring-boot-starter-json",
+ "version" : "2.7.5",
+ "description" : "Starter for reading and writing json",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "78f7430ef43f9a18e56de79a8f40ee71"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "9c7df04ff37b2e7471632ddeb4a296c5fb6bddee"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "b8b941e9d26bb7b28713251b53711786872e2cd4b06d7c231b26eeef3c44e305"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "4df8ace3465051c91f3ca7931972a707f4ce89db685e74140ac7cb7ec5d4c513a937c4e148ccb9b4f5d923cb5c284a18d7ce71aae55c9ec98c2db5b046c76e80"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "a7dbe57fd28c741fd40b58c49ccca9dee5b4f6b1a84dc3c077fecaca5dd1902ca19cd80f66604a77dbcb5a1fbf1a26c6"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "217d3c0a6ae9383c56ef5179cac0c81944af65dd95a1061902f15a6b508a62ab0180103891fa1acc496157f7b184e1fd"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "da8163019d72e3556356b055a72fa2e1266a243bce3cb5bf2087f2ca066082e5"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "59b39563ccbb91059f1f62c64857ba27c983f2bbce69a3811f0c4b6e334b5657a6a697fa158375473d96320181bc02e52910a1d3a31bbbc29b3293e46a53929a"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.springframework.boot/spring-boot-starter-json@2.7.5?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://spring.io"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/spring-projects/spring-boot/issues"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/spring-projects/spring-boot"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.springframework.boot/spring-boot-starter-json@2.7.5?type=jar"
+ },
+ {
+ "publisher" : "FasterXML",
+ "group" : "com.fasterxml.jackson.datatype",
+ "name" : "jackson-datatype-jdk8",
+ "version" : "2.13.4",
+ "description" : "Add-on module for Jackson (http://jackson.codehaus.org) to support JDK 8 data types.",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "c5c20325ffc71b3cce65f4fc388d01b9"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "557dbba5d8dfc7b7f944c58fe084109afcb5670b"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "fc568852020844d753d12d93c5ac25ef545792ac4926b3075e81c42ac32e606e"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "061f5d68bf1f25b924673ee966273e48d02d72080ee84bd148a7a4a746aa4995eba46f6770f95b5e19dd701bdbd09d3806c255d1edbb9662e16c79be58b7dd2e"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "a59fd8dbe08205457307fe117bc630230fdfc55333099e59ec2120fc998ecf98b037e5cb7ec44b5a4907fd7908b8fbb6"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "3a1bd603d690773c9a37b59863798b9634a098bcc9b5ac17655485066d89faa755a4f31f741adf9828811a2a0087c0e7"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "2cd081c83e00041faa4aefea2537aecee82429f7088969b25d7d75e9b415aade"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "3b334c458965ac32a8bac956a146d8950bad76fb0a56ed508d03bf6ac84c5edadd7634f40ea3145c02cb87c7c7c1382f2403f1bd667a9b546fbd40be3ba507b3"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/com.fasterxml.jackson.datatype/jackson-datatype-jdk8@2.13.4?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/FasterXML/jackson-modules-java8/issues"
+ },
+ {
+ "type" : "vcs",
+ "url" : "http://github.com/FasterXML/jackson-modules-java8"
+ },
+ {
+ "type" : "website",
+ "url" : "http://fasterxml.com/"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/com.fasterxml.jackson.datatype/jackson-datatype-jdk8@2.13.4?type=jar"
+ },
+ {
+ "publisher" : "FasterXML",
+ "group" : "com.fasterxml.jackson.module",
+ "name" : "jackson-module-parameter-names",
+ "version" : "2.13.4",
+ "description" : "Add-on module for Jackson (http://jackson.codehaus.org) to support introspection of method/constructor parameter names, without having to add explicit property name annotation.",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "46c63416748a27d334e891e64a1867c3"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "858ccf6624b5fac6044813e845063edb6a62cf37"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "e67856b02a988768784c5a675c0ad5c17e330cd78375ef39e740cbf04879d363"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "0d925ac80fa2feb7b805bb4473046a33e2a0f5902262611d17e3934f6b4d714ed5e312010a572eb9409fbe44d6d7c22bf44eba9115b82c51f9dcceb2ac8c0051"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "c725e0896bb8e1e2857aeb8f363fa48aca5bc7213197667ec39f693c95efadb5e02977ca0ed0fe6056edd06db9a73bf5"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "4120dec8df4dc9c1187d0c79bdc6fbd3404c14f79bfafbd2cad43c8d1a62483e5526d103767c9bba9e7cfae08b50125e"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "5f855f462cec866aec690ae32eb4199e1897540cf4e5900f8dd3566d48a7027f"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "34f5bf770950caf2b2065dffe643613c4789e12920bcb9e6761fb7e38e73d3d0057a58d43219ea1870f271ff7c137fa4b4e090197d20c592d6f2f8cd611ba100"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/com.fasterxml.jackson.module/jackson-module-parameter-names@2.13.4?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/FasterXML/jackson-modules-java8/issues"
+ },
+ {
+ "type" : "vcs",
+ "url" : "http://github.com/FasterXML/jackson-modules-java8"
+ },
+ {
+ "type" : "website",
+ "url" : "http://fasterxml.com/"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/com.fasterxml.jackson.module/jackson-module-parameter-names@2.13.4?type=jar"
+ },
+ {
+ "publisher" : "Pivotal Software, Inc.",
+ "group" : "org.springframework.boot",
+ "name" : "spring-boot-starter-tomcat",
+ "version" : "2.7.5",
+ "description" : "Starter for using Tomcat as the embedded servlet container. Default servlet container starter used by spring-boot-starter-web",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "4f11edfc254bdd5c45bd40f430e1179a"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "eb7849c52953de44d9712adf45398ccb1a7d4295"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "b2c454279799a43ac0e2c9b65fceff6d279a38e82d96f4ca9e4898f1162811f2"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "d2cec869939e241e12155f194ebc0d505a7ecc47f6db8f270389543d0f05e37306619cfecdb93438f9291b04ec8cadbdd2915f25b51e481926d8080c9f5d32fd"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "4405c5f7a110c5e76567c920c4139bfec49cd46a8785b9a851a83724901c29645498e7c0c654e93c4569c3aafc7b76db"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "9b6a726e0d39ad452f644ff186087a5ea48d41902d5a470028fd9c4d0700a7ae9e9fa0b29370a6c1825c43b305c2dfcf"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "da649a29ee5ada69a2aa02d50d20ceddf33860f06a2d7f4e09e40555be98542e"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "d420990c6da1696b54213eba86ae9514bab72bdda64b6c8758c1a42f5ccc128a118b4575144908ea5f5e85c38d72777cbf7b7c7c45928b18a70ff265e4446e39"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.springframework.boot/spring-boot-starter-tomcat@2.7.5?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://spring.io"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/spring-projects/spring-boot/issues"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/spring-projects/spring-boot"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.springframework.boot/spring-boot-starter-tomcat@2.7.5?type=jar"
+ },
+ {
+ "group" : "org.apache.tomcat.embed",
+ "name" : "tomcat-embed-core",
+ "version" : "9.0.68",
+ "description" : "Core Tomcat implementation",
+ "scope" : "required",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "e623e590ec70239dd4379c7729823034"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "caafeb87d6ff30adda888049c9b81591c7cc20d1"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "b6b86db980382a452a3fd88c694957891c5de9b08569e688968de96ad61b0af2"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "353072e38e590ed18558df1de544672f4f68210e11088299ad34ebbea4a6858a726f911d03fb8b4844e305bfa89293439efd6186bd96405fbfa523a0862de773"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "a9c274d5881afdb03cc8151ac3f4d55e5101da0fc369b80d417c8d6374ef891324ae1799487ab27820cd3d98e4e3ec87"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "e2a6d3625785d3542473d14769b25f30f9f0c96931ec3e61dd7040a291eedcd4ef42d522221da855f4fa45ee80de6d04"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "26514bae3b20883b5aa6816a0640da10b561fdc33fb283a5d3aed9b0b790e040"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "130352063f8c0ac67e19f1f71668f787f7d6dedfd35a6a88127b7d546f09c05ef3fe026dbb5f4771405023f84b635190260b189ebde9539057c5d50ab082161e"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.apache.tomcat.embed/tomcat-embed-core@9.0.68?type=jar",
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.apache.tomcat.embed/tomcat-embed-core@9.0.68?type=jar"
+ },
+ {
+ "group" : "org.apache.tomcat.embed",
+ "name" : "tomcat-embed-websocket",
+ "version" : "9.0.68",
+ "description" : "Core Tomcat implementation",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "c3d042c2cf0c0fdbbff506012ffc133b"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "15fc94001bb916a808631422a6488a678496ef94"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "7e6244ba5d189713125d83682125e6aff0c10aaf97ab1c45a46bf3dfdd59661c"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "e850b7acadf64222733ca5b33d4fed0524103f35a15e65bc49fae1869293be1e2a92de7998471393793cefffb555e26f26b608bebc25d7fb413f96c6d5ec539d"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "e46dc68d9886772c8518df7d8aab0ea5cf5134352b606cb969bd2c0fc289a6ad83450c519fda98c61674d6307b29e9bb"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "a987e920e2b997d052a3c996a342d858c4870122ba574695acc2204c779c368452fa52065fcd41fdd58c7203757eb4c6"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "dc77e0dd1f6af3673bcef52b3cac25c7b682db4738c7099b41c4488318052101"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "824b3aa5f94d9dc190e5ac48d3b2b25b1a10c7579115af40c53d0abeb4d420c4e4ccb014b4d9229dc1c1df3cf177991900591722ecd009beac2b62312378f23c"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.apache.tomcat.embed/tomcat-embed-websocket@9.0.68?type=jar",
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.apache.tomcat.embed/tomcat-embed-websocket@9.0.68?type=jar"
+ },
+ {
+ "publisher" : "Spring IO",
+ "group" : "org.springframework",
+ "name" : "spring-web",
+ "version" : "5.3.23",
+ "description" : "Spring Web",
+ "scope" : "required",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "19c1f44c123f1bed8e36816f64c873ae"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "0193f5276092d9cbe3222c63885b47ca7b2cce97"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "e1c834322e379f0d650abf348d4da060ca7cc700fc4f548392852f7987114569"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "7245e8c2ed0fc96b50bf9a33f2b5085d9d1c47c84c6d54592c61933ecd9c549db8774158a580611c26e5e4edc9f9f80c67f743d8962ce325f6074b501556f698"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "54edac1cc42952bb1a5dfa218ac8fa8408b1901dd7bd35a4b59f28e18a973f2e757c3ae8432aa24c941b6c455213e5ea"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "c2451ec2e379c576fc8fc840ce7bf6dab7f4d96bba1a0042e8857d90363b9126a30e416836f4f5e3573e9c14717975db"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "fba0dd45a2f66fa7e70fa8b3cd1a99164a1dd48fb519b7b7f8620074f8b329ff"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "b4ee7c9307b1d2e8107db898616dcd01450cc858ec98045dfa29c0b9bd0f398ecc6ed29ea5f02a60e9243674fd49ae43eefd3841d962d1e24dda50affd5916a2"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.springframework/spring-web@5.3.23?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://spring.io/projects/spring-framework"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/spring-projects/spring-framework/issues"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/spring-projects/spring-framework"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.springframework/spring-web@5.3.23?type=jar"
+ },
+ {
+ "publisher" : "Spring IO",
+ "group" : "org.springframework",
+ "name" : "spring-webmvc",
+ "version" : "5.3.23",
+ "description" : "Spring Web MVC",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "4085c2870c380281c38dc9a9a340910a"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "b163527c275b0374371890c0b76c2a2a09f9804b"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "140ed250ef7344082f179f7273b41dd131f8b3bc8c09c361ea2100614272ca6b"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "a75aa47852370a5147739f16930197e40529d5a8d97d55a08b42aab0d4c9162c32b9bd92c7a53c488e42300f06616a05988dae7ea9c8d512ab0ecd806c988c29"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "8b7ed7ee73e28c25c0e0c5abeef7e49ddd8b4be5d8ed2c69e45d4dfacb6fd79af77295f6b3dee1090981f4f7a13dd22a"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "a12ee65866822e993375629b218e913924a9ce558ec83766e1f60c5397cdb957c6807c21cd5a0d3c9d3178fe3ee09067"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "abaab471b9303d7230bcae3e40b15bb68f5a350c2346569add8a4c843b108316"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "1746cc5bb9ce389063c4d893352032ab1b576b0965649e03d905bf83d1a4572e6f0417fc1f70d40bb46478e3b4e2dc22fce9997ea6b6dd12693a51ca5e535fc9"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.springframework/spring-webmvc@5.3.23?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://spring.io/projects/spring-framework"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/spring-projects/spring-framework/issues"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/spring-projects/spring-framework"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.springframework/spring-webmvc@5.3.23?type=jar"
+ },
+ {
+ "publisher" : "Spring IO",
+ "group" : "org.springframework",
+ "name" : "spring-context",
+ "version" : "5.3.23",
+ "description" : "Spring Context",
+ "scope" : "required",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "46c0dbad4be399fa6b5b3db33c2f1e2a"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "530b36b2ce2c9e471c6a260c3f181bcd20325a58"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "23ead0de51a5215526d961160d18baaea18b1fa2261e5ed50c3cfb2551ff6382"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "39ec855b2856f0627329eed6b9c5e6aa4661f4be2cbb2a04efb95f148c9dfe2cdd50e4cb1a8ca965feda999eba37e1b968bf17502863d08565757b9534ccc23e"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "9fc1c3dc0ca4b8e3d1a1d03d69868dfe7d5ebb484e4e2a9349360787ea805dd52a50780ea56de3768d8d2725b22e5b6a"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "72573bd3c9feec6167c3b989dd54a2727f159a1238fa5c25b607d09d75b1255648231603553c46a64e25033d461ac5c3"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "7e5adf0ce98542cdffc18a81bf295a08b4d02d1e0b3b0c25de7ec432179b5523"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "1557d5834dbbcdfacaa82f17e635a426203196aaed1cd8169871416368b2862232f987e2658c8ec73961dc50f46b6ced43df8ef7a4e08e171550c88dd3a8033f"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.springframework/spring-context@5.3.23?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://spring.io/projects/spring-framework"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/spring-projects/spring-framework/issues"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/spring-projects/spring-framework"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.springframework/spring-context@5.3.23?type=jar"
+ },
+ {
+ "publisher" : "Spring IO",
+ "group" : "org.springframework",
+ "name" : "spring-expression",
+ "version" : "5.3.23",
+ "description" : "Spring Expression Language (SpEL)",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "561b0a8c63dccf2a3f67e26bc4708979"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "3a676bf4b9bc42bd37ab5ad264acb6ceb63397a2"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "0976b322a7feb20f90691b2b64e22c5240518cd8721bf6fb2c8da90521665c5a"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "517618300a4c1155739a3ab23a771e3fd2023fe8c5da844fdae50d4a7395235384e755e34c81ec1cc7c39e6c26433649a9f83d9fda42bb501d8eb01408843f2e"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "623bbdf25b44a12464f0b7a2f50b8969a44aba5fc3b539c025821be1af62e4aab2399b0977f2a6cd83457200747dbfc2"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "52bcae7739144442716b0a97eba5bd1accf53ca84b7ce47d80c5bfeb1bf7a2a637b08c5aa34c5c9bf2ce7862622df6cf"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "08e476ef9c73ce0c4eae1ca532b25dc5ef4f4955e8dbb3d36cf3b7ae450790f1"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "ff5027bf6b7c5f4456e5d7c800003b0825b97ac82763cde804833383a198aa20455a17173b01bfee1c86b2ec907e9b2db687263066147353fafe0f9adb80cefa"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.springframework/spring-expression@5.3.23?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://spring.io/projects/spring-framework"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/spring-projects/spring-framework/issues"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/spring-projects/spring-framework"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.springframework/spring-expression@5.3.23?type=jar"
+ },
+ {
+ "publisher" : "Pivotal Software, Inc.",
+ "group" : "org.springframework.boot",
+ "name" : "spring-boot-starter-websocket",
+ "version" : "2.7.5",
+ "description" : "Starter for building WebSocket applications using Spring Framework's WebSocket support",
+ "scope" : "optional",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "9925243079553a3f01379563e9331721"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "0fef1dcd9a493c2453a6b0a17bec0141a855fb93"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "fdf32e7e22196f88c88bb4b519e9e50edb6df417647dd950bb5f4c6ee2e1bd6c"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "a0bf73406cf4d4d83152ba602b3258077b975d54de2ffcce1c13f50da461d52935bc8e6e8e949ffa4d3ebd7c170aa1465495ade693497ad4a611aaac63ca1b34"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "60379760e2f38da82e18548b5a396c8fc9d6f04c1e47a1841acb13d986a28ec62b44fa37d1249817683ca7639501b792"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "12d547d8d722484536a964148d06b6d5925ab2d05a77716409e92d33e14f619d9bb9eaf8d599e44d84ab849cc590cf3f"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "1a19ce0da17330c0c10815515139710f6d1ebcd4276cb09ac76494367c69d2a0"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "0bb5c6aa826b8ab2d79ad4571aa2163d6672cca2b88d264c9259e3fcf8aaf0d8bda6700453b58829878b0db8447a0d01f893a25c22336845e26412599dd9867e"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.springframework.boot/spring-boot-starter-websocket@2.7.5?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://spring.io"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/spring-projects/spring-boot/issues"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/spring-projects/spring-boot"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.springframework.boot/spring-boot-starter-websocket@2.7.5?type=jar"
+ },
+ {
+ "publisher" : "Spring IO",
+ "group" : "org.springframework",
+ "name" : "spring-messaging",
+ "version" : "5.3.23",
+ "description" : "Spring Messaging",
+ "scope" : "required",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "c63a9d1d936ad785861c67cbb3f300b6"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "ba45e1d5cbafca683baa5d801b779eba1f4adaee"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "8fc60fb2ca529424b0d9eb863797a3716a7daf3a83d72e33617d5197b33bd4b2"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "ffda2d668a6af463646f73d6ef829ceb328f37ac562d4f5d9a61c03d67b416d8f20094a0598ff1bdfe2dc4b7f0c00d8e8a29c15063ae7d56a429042a3ab14ff4"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "3d81bdfe751d2b73e3d4969e42477c9729272698bb0b253214d04ef43829bcb8221ab6d285f60d21f8345b82c844ee38"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "fce88f3424f0c6600e7153c98abb7ada96db031930d2bf641410adcecb7a8a015ca3ee32b1e4d62a88e6d9b3898da8b1"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "d2780ae7990a521f4c8500b280a5de85b84812d3db0fde2ecfaa42f52da57852"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "eb197bbd7db5c0f0242d31f9e5a175bb23e53d4c2b7e0395dacc404c90490f24cfc7ff7ad23f52f7d00884fcb666f962a8fb4ddf9401691097dcf09750e1aa4d"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.springframework/spring-messaging@5.3.23?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://spring.io/projects/spring-framework"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/spring-projects/spring-framework/issues"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/spring-projects/spring-framework"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.springframework/spring-messaging@5.3.23?type=jar"
+ },
+ {
+ "publisher" : "Spring IO",
+ "group" : "org.springframework",
+ "name" : "spring-websocket",
+ "version" : "5.3.23",
+ "description" : "Spring WebSocket",
+ "scope" : "required",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "a2a8cdda00b43f994f964372beb24068"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "28c5d2ab4ab1f0fec2ca68c502576a91d552c356"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "571599458726aae784560193fbcefe67d05f7da89b3242b9e6aeaab4dc1182ff"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "8070c9b4f524839b0cc5fbad5554c21ff1ed5805e67632eed2533bec3de32858fcb48c620f36c857d20211b9897005c4a297e0bb6047b37f033223bf2ba73256"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "36994cf4bfe27136586ce33a1d00c7b2eeec84c20ccb1bb2b6974c548d6bdcabde954deb0f5dd1dfbafcb318229cfa56"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "8d42c4522688173f45969bfe6c8f7c4c334ef9e526aace23ef9835014a793357564f47e10f3db8d89615570794272890"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "4b3236ab816cff8bcfa11d7e78e081fb98267650e041724e9a26511e5d7bed46"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "dbc3e45ba5b676f211f74889828a44489a50e18c7c06be55001d4e117bccf189c2706978f96cc312126dd0cb7873ac0034932ade60f0a2f70257843b5f4ec6e4"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.springframework/spring-websocket@5.3.23?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://spring.io/projects/spring-framework"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/spring-projects/spring-framework/issues"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/spring-projects/spring-framework"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.springframework/spring-websocket@5.3.23?type=jar"
+ },
+ {
+ "publisher" : "Pivotal Software, Inc.",
+ "group" : "org.springframework.boot",
+ "name" : "spring-boot-starter-data-jpa",
+ "version" : "2.7.5",
+ "description" : "Starter for using Spring Data JPA with Hibernate",
+ "scope" : "optional",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "fb1647e45cd440d75d006cd98e3837a5"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "b83184467079d5b808fb2f9fbc858b1804975808"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "6a3b6db4cebdd32db94497975f0ed6b84a336e62aa4ba5ca0e56eb80ccf3547c"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "a01fb4914d0a018016a542933ee28edb4782a2687bc0ad2d5269bfc3dc624c9bd7f44da7c9aaae61b68fa0220b188e226a13a352e9ca2242afca06ea5309a2ef"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "2aa581f74ec521558db8797aeef1d2d7ce2b2ad0fa407bee6054acd1b6286fe614d08ab2a65de74e0895954717696aec"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "9c83678b33b95ca136d320a0e389b03d54cf3a7b2ffb913eb4a67b4d7f048a3b427be5183c4de951a0e098841b6ae216"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "8fd06df9c8853db5f41f7906b2edf792259bd567e66019ce65e8d142551b9722"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "3c3a54d6ac0b5a162aa9aea159e2145dbbf845602ab7e0cf412c72afc1a57773f1eca0a4236bbd06809a8ca4ddb15ebd2cd0233f29da6566e192efe54e2daaf1"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.springframework.boot/spring-boot-starter-data-jpa@2.7.5?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://spring.io"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/spring-projects/spring-boot/issues"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/spring-projects/spring-boot"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.springframework.boot/spring-boot-starter-data-jpa@2.7.5?type=jar"
+ },
+ {
+ "publisher" : "Pivotal Software, Inc.",
+ "group" : "org.springframework.boot",
+ "name" : "spring-boot-starter-aop",
+ "version" : "2.7.5",
+ "description" : "Starter for aspect-oriented programming with Spring AOP and AspectJ",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "2ddc091bc12be952017ecdd13b72a18d"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "ea4b85395faaa3a382f2a582e4bf023d088d320e"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "0205455d5c819c78ca89f8e5304cfb65f7a8212197e11ee40a2b0623c3a5b07f"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "09b1f86c0c8559d92ac3ff30b0bc048b65c7acc141d152fae36b6e7db4ae651b32f31a2a606c33fd02068fed531b19f5cdbb6006b522d9e48bd06e09bf87e182"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "ca0f0917354c447c62eaa4c16c41c1ff892650fbe45ac545c3cf90c92fd88a3b7c5c9b9bda596e088e84f5de74e38878"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "fba086ec4ea9f810c7e6bfec51e83992f5ae0c13eafc64889ec52e339876102852a06982738fcf5b7c2a518d78f19127"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "4387fa467b2ee4051afeae0c444096f34c47e10c8340598a92d7c71fbbbf469b"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "6fa6cb6883966ccb6d7543f14dffe7337aba66035a6b332dfd9b6c442a3728be5b5c5e21ffdeea4566580ea73863e0d74998668a21a01f6f1b390cc6d23fd1ad"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.springframework.boot/spring-boot-starter-aop@2.7.5?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://spring.io"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/spring-projects/spring-boot/issues"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/spring-projects/spring-boot"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.springframework.boot/spring-boot-starter-aop@2.7.5?type=jar"
+ },
+ {
+ "group" : "org.aspectj",
+ "name" : "aspectjweaver",
+ "version" : "1.9.7",
+ "description" : "The AspectJ weaver applies aspects to Java classes. It can be used as a Java agent in order to apply load-time weaving (LTW) during class-loading and also contains the AspectJ runtime classes.",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "a4d97c5a2f94b8b5d132761a769e5eeb"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "158f5c255cd3e4408e795b79f7c3fbae9b53b7ca"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "1b448d82bd0f8a8c1842506e6c7edb95ff1a1275ce39f766e7884122b866fe5d"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "490fcf238486848e27cbed45fd437613193c9e89748a0818fb532aed5c213aab2624d148ed9fd58080c6934da5f7ec12c64e40b64bb46d16e361eb404393c5ba"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "4d3b13d7e7ab437410226974ad3acebc8c663b21d9ccad6d70b5adede33bc4033858e8b303c7263a8e17c073c354b87b"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "0d56981fa691d1d79f39aa65dc091def5fb106f65d5d1b0836a7279b95195961c5a49f07979cda49e35768276a30477d"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "e10b7535b50a0017f062b7eb71f1f1b301beadfe474d050f7100996797a8640c"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "a77467b7b04410e7eb33214e84b4061f3e7112eb4c29a2c826691bdc0af6136c7a78789ae685273e9e69cfb40e674b64ecb31d1e516a8b5d79afefb13f57ffa1"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "EPL-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.aspectj/aspectjweaver@1.9.7?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "distribution",
+ "url" : "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/eclipse/org.aspectj"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.aspectj/aspectjweaver@1.9.7?type=jar"
+ },
+ {
+ "publisher" : "Pivotal Software, Inc.",
+ "group" : "org.springframework.boot",
+ "name" : "spring-boot-starter-jdbc",
+ "version" : "2.7.5",
+ "description" : "Starter for using JDBC with the HikariCP connection pool",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "b1aeafc4460b34e42430eb2f103ad71d"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "b57c3f8fb2fe235a8ff368755092371423bbc5b3"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "a0e620c6e24517d9456b4a11ee04ba34a85f1dcfb792158a2efbe3549cb9d626"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "a47d4168818d25e8cdde1f57cfc24530f4d38b5f8f4c80c9ae8fbbf31cfad5a72b1ecac4b2a907dcc656654dfde88ec7364ad5bb7e927417939deb0a790730fe"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "168298fe16ed4bbd3a2ce8f309884233b220afac37e50061fc3580f7ee916031c94175c38bae98bacaf5bb0a4d2df43d"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "11802704fbc15078e9b955accf6a2a7ff2b01b784d4258c4c33d02a834563d7bc5e401d152e9548e11f3424d62a3bc05"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "35fffcfeb8c282990b560e2942717a1e303ade1ba42911fe0a3f797d52291496"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "4f8733d74adcc22712de7bd6e899f9ce2da2f2af290cdbd5f36739f16bf5b175e5bb1102a34d7162a8d3386a7a61c2481a362a6674635d727d17fa7e917a9e92"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.springframework.boot/spring-boot-starter-jdbc@2.7.5?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://spring.io"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/spring-projects/spring-boot/issues"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/spring-projects/spring-boot"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.springframework.boot/spring-boot-starter-jdbc@2.7.5?type=jar"
+ },
+ {
+ "publisher" : "Zaxxer.com",
+ "group" : "com.zaxxer",
+ "name" : "HikariCP",
+ "version" : "4.0.3",
+ "description" : "Ultimate JDBC Connection Pool",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "e725642926105cd1bbf4ad7fdff5d5a9"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "107cbdf0db6780a065f895ae9d8fbf3bb0e1c21f"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "7c024aeff1c1063576d74453513f9de6447d8e624d17f8e27f30a2e97688c6c9"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "34a9ee96c51ae070634cd0b642cad3c4c54b9d2ab7f1714f59dad805512ae27c9c69b8be83da473689f55474c4e2874c93e727f9f31d3bfc9b80ec37aeb68898"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "9c49efde42b89a8cd2b119d666076bc9d532c4a835c640b77d8a5858d3325f9ba99f8cd19cd21b9df4f386d1c21855ae"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "ccea43e68e6dcf0426c271640abf132575a9e28b439ac968b5608e3d04d7ec80dd948d33c474e31fb18bab9b80959c2b"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "163e0d75894a0a4c2d36f4a992449e2dfd71bf495f5789813cd333ad1b571fc5"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "bc20907f677b6fceaf8f81361d5a7e0099799561af550a2a49dfed531a3b8ee29f35ecc2c4419cd8eef9e25a147a2cf88cfb7ffc9218b8b35b0e0524caf56d8d"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/com.zaxxer/HikariCP@4.0.3?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://github.com/brettwooldridge"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
+ },
+ {
+ "type" : "vcs",
+ "url" : "http://svn.sonatype.org/spice/trunk/oss/oss-parent-9"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/com.zaxxer/HikariCP@4.0.3?type=jar"
+ },
+ {
+ "publisher" : "Spring IO",
+ "group" : "org.springframework",
+ "name" : "spring-jdbc",
+ "version" : "5.3.23",
+ "description" : "Spring JDBC",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "bed59ec8d164f9c32d58b57e74317831"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "c859919a644942822e49cb7f2404b2c4d3cba040"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "d655e8111c81658e27dcfc5e9e428dc7ddb8229e6cdbb3e9b2e00f1c3089a5c2"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "7fa15b649e0c64ff88f17a9c2041a2252c87e00d7382aa4102b4287953e62bf145699759de687c2cffe99eb2dbd2b81595fe2c9101b3107c66aad197177df821"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "e84e5897b7884ae5ffcbdac59a5a5540c336cf46d8e3c9930ee648fe63a9c6cc8cd6d104e4b63a35356ca382dd86b911"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "ddea752bbe843eab05d6403f9d060265c99b476d1fc52891f963c402c8e9a92f2b6fdd09d0706c0007721e37c4c315d4"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "81acd56c8659d3b14d821c6d7556df75a2a3a7f2fc123f29a56b03897ca54efe"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "57c7025e08ab5aa2b2764fde3d194b1cb60ceb750044d3052285d6bd9217fecf6a41f4fa1b9b3b48fc5a58057de7fb4d4b2400ecec07a609fa27fd18a1d45d51"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.springframework/spring-jdbc@5.3.23?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://spring.io/projects/spring-framework"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/spring-projects/spring-framework/issues"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/spring-projects/spring-framework"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.springframework/spring-jdbc@5.3.23?type=jar"
+ },
+ {
+ "publisher" : "EE4J Community",
+ "group" : "jakarta.transaction",
+ "name" : "jakarta.transaction-api",
+ "version" : "1.3.3",
+ "description" : "Jakarta Transactions",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "cc45726045cc9a0728f803f9db4c90c4"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "c4179d48720a1e87202115fbed6089bdc4195405"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "0b02a194dd04ee2e192dc9da9579e10955dd6e8ac707adfc91d92f119b0e67ab"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "764ade8ba807682dcd1ec7382c35275f3d8ab09a03d5b45c48e732501190e2738269080aaf28aa8dd656c11ee84bfb7dae6953dd2768f2acecd3a8cf0ca4961e"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "63adeb3c5eb24ad0147377436b6e3208d5e97c0e800e0e1e4cb3ba92699f1b06034c2ba00e3689aa8f909ee96c432db0"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "dd0a253f45dac003d40ebeed7f38b0850ff4b08941d55db5b3bbf4c936f94062d23799729ff718c54a565de2482bfd3d"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "d47afbaf1daba46c7aa107bf1b476857523738370309394958f96a2105686684"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "1b744b2d939a8d0a2bbd0be29c717af4a5e2374ca26fbb95a16df03aa55d2aa092e9314f20d5b080f02030ae1b70e4904ef0f8e1509680b9001153cdb7bc1934"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "EPL-2.0"
+ }
+ },
+ {
+ "license" : {
+ "id" : "GPL-2.0-with-classpath-exception"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/jakarta.transaction/jakarta.transaction-api@1.3.3?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://github.com/eclipse-ee4j"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/eclipse-ee4j/jta-api/issues"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "https://dev.eclipse.org/mhonarc/lists/jta-dev/"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/eclipse-ee4j/jta-api"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/jakarta.transaction/jakarta.transaction-api@1.3.3?type=jar"
+ },
+ {
+ "publisher" : "Eclipse Foundation",
+ "group" : "jakarta.persistence",
+ "name" : "jakarta.persistence-api",
+ "version" : "2.2.3",
+ "description" : "Eclipse Enterprise for Java (EE4J) is an open source initiative to create standard APIs, implementations of those APIs, and technology compatibility kits for Java runtimes that enable development, deployment, and management of server-side and cloud-native applications.",
+ "scope" : "required",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "e0a655f398f8e68e0afebb0f71fba4e5"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "8f6ea5daedc614f07a3654a455660145286f024e"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "0c2d73ab36ad24eeed6e0bea928e9d0ef771de8df689e23b7754d366dda27c53"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "1e07257b631ae3331a71d7cd9136152cddebbe786ba50c689bec618a9eb659be8e952fe0405db36332cb6c12c6c87c6d648e817c027ea8c6e0c660ce82f6f424"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "d68e1f600244d7a3628244e0265208ce08881f4ea33a3cd1f085886f7ce755cdd44bc6788ebda1baf8bc23b1f3c844dd"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "fb77e58872d4e3ef6475094ea96f1ce32a1a7c3617393fcab47c47cb84f6995315c5f805d518c69a0cea751ce980bf13"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "3619596135b169649ed16b75972c39614192d2a802291a7eb4c1814ef7dc9ff8"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "045c7f1ec7f9191cd2ff35fadf5c037aa596a288189185fd10d5fed89cd3661b6353945083f4c3943c87e343b61a556699f43f00a0e928c165e52d57fe514fa5"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "EPL-2.0"
+ }
+ },
+ {
+ "license" : {
+ "id" : "BSD-3-Clause"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/jakarta.persistence/jakarta.persistence-api@2.2.3?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/eclipse-ee4j/jpa-api/issues"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "https://dev.eclipse.org/mhonarc/lists/jpa-dev/"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/eclipse-ee4j/jpa-api.git"
+ },
+ {
+ "type" : "website",
+ "url" : "https://www.eclipse.org"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/jakarta.persistence/jakarta.persistence-api@2.2.3?type=jar"
+ },
+ {
+ "publisher" : "Hibernate.org",
+ "group" : "org.hibernate",
+ "name" : "hibernate-core",
+ "version" : "5.6.12.Final",
+ "description" : "Hibernate's core ORM functionality",
+ "scope" : "required",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "2f3d66df99f0c7202910bc4068da221b"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "66720fe38bdb9515924d559b8aac7b522d7ae171"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "5395eb2a7e2f1ff18495dced2d50817f39504ebc0145fbc7340a025e863f383d"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "1000a77478d167aa58956ae1f06544d83d980e317d188f67096d080f14d7a11c988e341517163b4d621dc34367b8b35e841ed8a37419d6847f2749f5924051d1"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "29ffe688303dda3121f90c6098a110b062d44372e7f1ec566cb85c04f8d71ee7bcff996b1f4bded5ab1043995583e599"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "41562cd331a05c644f936721e7d59414c2eaacc001ec45e2be9b443ebf95ca4a2a71a865f3510d52a953591d47577755"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "eb34af32173d874860b7c7036490723442b265da4b413d8ab1d5dabce8480fa9"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "8797c796ef887d7f74c4b83d09890efbd05995ca48be7f113dbb96f888a4c62b3da9f8aeb56dd27dbf0b6725cebd39e7fe0a77b90a324f710f6964e267ddf43d"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "LGPL-2.1+",
+ "url" : "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.hibernate/hibernate-core@5.6.12.Final?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://hibernate.org"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://hibernate.atlassian.net/browse/HHH"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/hibernate/hibernate-orm"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.hibernate/hibernate-core@5.6.12.Final?type=jar"
+ },
+ {
+ "publisher" : "JBoss by Red Hat",
+ "group" : "org.jboss.logging",
+ "name" : "jboss-logging",
+ "version" : "3.4.3.Final",
+ "description" : "The JBoss Logging Framework",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "b298d4b79e591843c1eb1458ea79f070"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "c4bd7e12a745c0e7f6cf98c45cdcdf482fd827ea"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "0b324cca4d550060e51e70cc0045a6cce62f264278ec1f5082aafeb670fcac49"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "60759c4340a7c1af0f10a5c2252e028150413d2437547f42018a94a838dc4a2bb24256411490a7e5f109b76305e2752ecf37def85e631d7e7b7e8461e0b54dda"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "1c07afd380f25c076ca0e568be205ede18c875471547133711f04bb2ffc9936c7c97708605cca18c9a98fc94b072caea"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "f17eeff5983e9e0562c90b8b3051b2dbee885818adb104ba8700a399f90a1a3c85a766686dafa06122cd6f8979561ea9"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "c41833778a14d364e29767d543ac402e93222616bfcc020552f0f037cfc6b02a"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "0dace1456d22070719b6e7322cdfb64b34f36f5c8f271f62026c691b00fe32fba50ac17f61b467160ec2b7cabdeeac77029ded3d7f9b1e08a4a0f709222a5017"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.jboss.logging/jboss-logging@3.4.3.Final?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/jboss-logging/jboss-logging"
+ },
+ {
+ "type" : "website",
+ "url" : "http://www.jboss.org"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://issues.redhat.com/"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "http://lists.jboss.org/pipermail/jboss-user/"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.jboss.logging/jboss-logging@3.4.3.Final?type=jar"
+ },
+ {
+ "publisher" : "JBoss by Red Hat",
+ "group" : "org.jboss",
+ "name" : "jandex",
+ "version" : "2.4.2.Final",
+ "description" : "Parent POM for JBoss projects. Provides default project build configuration.",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "489f7a97d2ed7ae34ea56d01b3566d57"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "1e1c385990b258ff1a24c801e84aebbacf70eb39"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "3f2ce55c7d71e744581488dc5105806aa8084c08e6e916a019bab8f8698994f0"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "635642582701f6ae26df91e39d5bfd9345c4c219da73e71a27f4740a4c0c7970f52cef667bb9cc4dd08c26d9b0447ee003c9e56d5ede68870976356c2fcc4a5c"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "ed9e4cf2b47f0891d5fda2a4a63650f0309a5e05f4b51b208bb0c0759dd1cd713e8db68816666ade0fc2faa855bd98c1"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "66c79624a37e19a65063c3d3c0e4779c18e33c2f558078abe1f05c69b1a85a6aae561f0aee1163c41d5efb4a315a3567"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "b6214feecbcb01f82e7442d614d5ddfb02efb686c0b603def92fdc7545f46412"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "0073443439cbc3897ea98f332c61422e0ffd40309fd93c6683a35f70df8e4828ed9e34025e0368ea55935d66863bdec895560054f1869dafd87f2bfc21f47ebf"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.jboss/jandex@2.4.2.Final?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "http://www.jboss.org"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://issues.jboss.org/"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "http://lists.jboss.org/pipermail/jboss-user/"
+ },
+ {
+ "type" : "vcs",
+ "url" : "http://github.com/jboss/jboss-parent-pom"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.jboss/jandex@2.4.2.Final?type=jar"
+ },
+ {
+ "publisher" : "fasterxml.com",
+ "group" : "com.fasterxml",
+ "name" : "classmate",
+ "version" : "1.5.1",
+ "description" : "Library for introspecting types with full generic information including resolving of field and method types.",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "e91fcd30ba329fd1b0b6dc5321fd067c"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "3fe0bed568c62df5e89f4f174c101eab25345b6c"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "aab4de3006808c09d25dd4ff4a3611cfb63c95463cfd99e73d2e1680d229a33b"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "7fc4764eb65227f5ba614698a5cf2f9430133f42ec6e2ae53b4c724ee53f258541a0109fe0659e0b9e45729b46c95c00227e696b8d1addcd772c85f877658c9a"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "28b4780b2353ebc08dbc02c9a343527a9062a0455bfb4ab135cb639c03e5dfd9c2250a835c44d5f17d275667c2009694"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "b194ace8f1f49f410286bd859866678b95a1b2c6f73e41f48291eb7438dffea57aaa9b177459038b6997771ce4d1cee1"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "50234c94efed4c816eb77bd2f70b869c9f89ddf8ee73dc25e354f4d0b81b3e1f"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "9886421726066b313a62283a6811b76d904ea1c1e9b7b2d850cb47afa189b03cdef053c8f7f6b79e77f2269c45f8cc2ed75c3389e96594b50987fef311d5a25f"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/com.fasterxml/classmate@1.5.1?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://fasterxml.com"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/FasterXML/java-classmate"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/com.fasterxml/classmate@1.5.1?type=jar"
+ },
+ {
+ "publisher" : "Hibernate.org",
+ "group" : "org.hibernate.common",
+ "name" : "hibernate-commons-annotations",
+ "version" : "5.1.2.Final",
+ "description" : "Common reflection code used in support of annotation processing",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "2a2490b3eb8e7585a6a899d27d7ed43f"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "e59ffdbc6ad09eeb33507b39ffcf287679a498c8"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "1c7ce712b2679fea0a5441eb02a04144297125b768944819be0765befb996275"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "9ce69f19b2e080071a69a2faa992be70b2c153d94862c306f784d1f91fe66e01139c13a3b4f156ee17bdc58ea9c93b61e2dbdfc43152d43896610251488c6e24"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "4f1652cc7f93556ca615f7a70a63e22004f7e1325b6d38492c5601d9b13f9ee3292b7e8919c1a0ef41de0266ed84b941"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "c39a9a94055696454d0ecc5c9718ca1ca7ea05f3b22eb8991c69f31e976a595b86fcaa37fd030c03c0860610bd7251c4"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "a2dc556200c3503ae769c6efa3634a94ac30f475f60b9fd7e478c8919e326720"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "4c791c5d5c43a3d4907f495966d89bd281d90727e3884d889b07a6e88c0ad3f9a712fabf4f2d73c57412d9eff1946ac48ad5450067ca9f6e83212ab09c18907e"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "LGPL-2.1+",
+ "url" : "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.hibernate.common/hibernate-commons-annotations@5.1.2.Final?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "http://hibernate.org"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://hibernate.atlassian.net/browse/HCANN"
+ },
+ {
+ "type" : "vcs",
+ "url" : "http://github.com/hibernate/hibernate-commons-annotations"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.hibernate.common/hibernate-commons-annotations@5.1.2.Final?type=jar"
+ },
+ {
+ "publisher" : "Eclipse Foundation",
+ "group" : "org.glassfish.jaxb",
+ "name" : "jaxb-runtime",
+ "version" : "2.3.7",
+ "description" : "JAXB (JSR 222) Reference Implementation",
+ "scope" : "required",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "4fb00614ad222cfdfc2204ceae827fb5"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "ebcde6a44159eb9e3db721dfe6b45f26e6272341"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "c048d9edde5d5d67bca4f66921ef1315b8e20b1a978b757d54cea0ea5ce1c907"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "9f47f8fa383711b17f650ccb74f14f80288529bd2d822a4a26bec16e5cecde048504d94217e568b088fbf6a6ca80c4f89ec4827b02a90b5e33c9d497c39a3312"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "6e96de592f2c0c5bb494c655aa6fa850b2d5399d243506a4e21fe97c137cce43d030748c61df5a6890851fc12f006351"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "32cb5d5f53723d2e6b0fb45c625ba8103dda7f7a93387cddfc38b82480ae9389db4534c2551334ecf4c81b478fd69743"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "113b31c82029f98d83a2f7b3b1dc2cb46bff2f0329f1eebdc29759c0bcaa9f9d"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "6bbbe8c3f83221ed70324fda7486b217eaa71ed3c152b7a2e6f1fb6f92c50b8f5757ff03b36f4ce9bbd8ed3c89f9dddb271df3b42b5423c177bf171fcc4770c4"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "BSD-3-Clause"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.glassfish.jaxb/jaxb-runtime@2.3.7?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/eclipse-ee4j/jaxb-ri/issues"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "https://accounts.eclipse.org/mailing-list/jaxb-impl-dev"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/eclipse-ee4j/jaxb-ri.git"
+ },
+ {
+ "type" : "website",
+ "url" : "https://www.eclipse.org"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.glassfish.jaxb/jaxb-runtime@2.3.7?type=jar"
+ },
+ {
+ "publisher" : "Eclipse Foundation",
+ "group" : "jakarta.xml.bind",
+ "name" : "jakarta.xml.bind-api",
+ "version" : "2.3.3",
+ "description" : "Jakarta XML Binding API",
+ "scope" : "required",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "61286918ca0192e9f87d1358aef718dd"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "48e3b9cfc10752fba3521d6511f4165bea951801"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "c04539f472e9a6dd0c7685ea82d677282269ab8e7baca2e14500e381e0c6cec5"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "adf6436a7a9dc6f64b97127861d7a89b78e82bea67f72bda800ef285163adcd84dbf006f679108a2a8c2eed013e0b771da2354087e0845479ff2b6318b881442"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "bad8b9f52bf7a7e1d3974cb305a69c093fb32d2131539c18d34e471e3ec32bdd9dd136bb4b38bb14d84e99c562f208c7"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "8131aaf65f996cfa2c3f7d406caab3acf3e6650bcbbcd5595f8a457a211810ff110c1923876e068831a07388ddc26f33"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "a9e4179a6bfa8b363b9fd4f32f8892c4a7954ed1695d3f33ccef73ceffcaa1d4"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "9ecbc0f4aa9cff28d519cbf74c8234b5180ae6ff0d6de4efe2de126b3251d466a5ddb878e70b9968095a843c82721c93a4dec53bfe09e3700f4cfe2e38bcac0a"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "BSD-3-Clause"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/jakarta.xml.bind/jakarta.xml.bind-api@2.3.3?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/eclipse-ee4j/jaxb-api/issues"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "https://dev.eclipse.org/mhonarc/lists/jaxb-dev"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/eclipse-ee4j/jaxb-api.git"
+ },
+ {
+ "type" : "website",
+ "url" : "https://www.eclipse.org"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/jakarta.xml.bind/jakarta.xml.bind-api@2.3.3?type=jar"
+ },
+ {
+ "publisher" : "Eclipse Foundation",
+ "group" : "org.glassfish.jaxb",
+ "name" : "txw2",
+ "version" : "2.3.7",
+ "description" : "TXW is a library that allows you to write XML documents.",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "d7d7c63bc636c072394334c85cb6d49f"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "55cddcac1945150e09b09b0f89d86799652eee82"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "4a52d7c42a7e6270c8d72554eb994059f53d69c2545fb2daa02c6e9bfbda8b22"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "220d61c9309eb9a0fcf5b41eda0f625305f5fff2cc9c1f0f96f0319903e44ec3a2c3353f7c07a14e0132335a62c7901c018117954194bab4474e88edea37b1ef"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "21dafda6e46429a2dae5b2e146f765897c1b8a3f7b6d63ba9f558b9c97bc8e9c7e707712c0d2484f2042bce3d4d8e242"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "62048d62d86908b0866d4942f2bb7b507d6688abb4cf6fe9fe3940132c3a4ec056c543401334f9cedd6c76e2aebd8fc4"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "3b884782ca5f898199a6b59251c55d2d8f364a85cb6f75b5401c2b37ef8a13f6"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "05a77d26fb0151495d4eea07e704a7cb3e3aa92fb4a09e0ca483ee7505311eb022c54836ace62be02661aa51e80bc480c4154e640bfff3d0f46609a7382febb3"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "BSD-3-Clause"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.glassfish.jaxb/txw2@2.3.7?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/eclipse-ee4j/jaxb-ri/issues"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "https://accounts.eclipse.org/mailing-list/jaxb-impl-dev"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/eclipse-ee4j/jaxb-ri.git"
+ },
+ {
+ "type" : "website",
+ "url" : "https://www.eclipse.org"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.glassfish.jaxb/txw2@2.3.7?type=jar"
+ },
+ {
+ "publisher" : "Eclipse Foundation",
+ "group" : "com.sun.istack",
+ "name" : "istack-commons-runtime",
+ "version" : "3.0.12",
+ "description" : "istack common utility code",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "1952bd76321f8580cfaa57e332a68287"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "cbbe1a62b0cc6c85972e99d52aaee350153dc530"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "27d85fc134c9271d5c79d3300fc4669668f017e72409727c428f54f2417f04cd"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "af36b11cc0d82b7f62c64941f4e7d441d25cb9f3c4b3e08753d038c388e5a09364b5dac9127f29a9b8df6d96034133caadab6d74371077478d2f301605913460"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "ad8ba1f6538e087915b1e7fbf4a7a60b006ebecc4ab52986c10dfe88ae11ae7eb6e1f302bee06f70b16ec316f001375b"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "2207c7e1570860d6300ef3157905498efaf26ba85566b053495f583b20c755cc07d6855b2d79136ab4d6544635e39f4d"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "50a425e524a6ee81110ecd86190d039a84d46aa3c45855310fe4f95abba3c21e"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "286997280ee0885c456686cf91c601e600106138f39eb81fc27381868f7ede0d1521cdf22c420331b1a961ed2f1ba1887a9ae05073f4364e3ffc297f40f0de53"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "BSD-3-Clause"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/com.sun.istack/istack-commons-runtime@3.0.12?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/eclipse-ee4j/jaxb-istack-commons/issues"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "https://dev.eclipse.org/mhonarc/lists/jaxb-impl-dev"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/eclipse-ee4j/jaxb-istack-commons"
+ },
+ {
+ "type" : "website",
+ "url" : "https://www.eclipse.org"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/com.sun.istack/istack-commons-runtime@3.0.12?type=jar"
+ },
+ {
+ "publisher" : "Eclipse Foundation",
+ "group" : "com.sun.activation",
+ "name" : "jakarta.activation",
+ "version" : "1.2.2",
+ "description" : "${project.name}",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "0b8bee3bf29b9a015f8b992035581a7c"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "74548703f9851017ce2f556066659438019e7eb5"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "02156773e4ae9d048d14a56ad35d644bee9f1052a791d072df3ded3c656e6e1a"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "8bd94a4370b827e3904f31253b022e5c1851896d3b616ca7daebfef259238cedc56d4ced32c74f24a13c3e2295b0ea012af5d04656b7f713cc53a2f18d5e2cf7"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "1cb0aff8b73ba52a9931b2cf13c75a1ce6665fb826bf97ede66db75c532136aa189fb53a1925e62b6eef572309ef3b9a"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "83801332576d931f4091ba65ea240d49c23e3b93dae939ce2eed63de943f80f251a4347638b99900de5b831796b12590"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "5363211b59dfaff6e1973e93548e5e4062189c6d0f43d7802627ebeb7b7ff37d"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "0c7b62a3432b19ffad02eafffc7e598391cd32b1313d075f94cda09913402770b4ba2314716625571f266431067229c93cec36e17c3ea598623542988634ca0a"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "BSD-3-Clause"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/com.sun.activation/jakarta.activation@1.2.2?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/eclipse-ee4j/jaf/issues/"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/eclipse-ee4j/jaf"
+ },
+ {
+ "type" : "website",
+ "url" : "https://www.eclipse.org"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "https://dev.eclipse.org/mhonarc/lists/jakarta.ee-community/"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/com.sun.activation/jakarta.activation@1.2.2?type=jar"
+ },
+ {
+ "publisher" : "Pivotal Software, Inc.",
+ "group" : "org.springframework.data",
+ "name" : "spring-data-jpa",
+ "version" : "2.7.5",
+ "description" : "Spring Data module for JPA repositories.",
+ "scope" : "required",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "679d3cd19c5ecbd194a3fb01be4dc11f"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "dc0bb497a33fcd3f82fe0ccfd674476d93889b3d"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "9af3cf88e39ad26a513f56f91ecb1eb969c7e557730ec6a23b31444732a693db"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "fd7458430056fe5d014e4b062a30c44e548e4913164d5a4f0eb05574fb4d0e9c623cda0f63ea552a63bd606daae92796d3a3384c6049d9247e88e1074d3961d4"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "9439a9282d7348c12efee0d69e8f914a4ae393eb80592ab4159c325d5bcbf122662f52e4873cce89659c978bec6b507b"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "d71f047c63c21836f88a94f0ae8594b3bcf42c63b17e2b1a55c6c649baf8433ca7a79b1787fcd18697a68eb4a5b5080e"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "a291aeec0a009650003c239c51242148130e7b09495d9ea72ffccefce94de0a0"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "1d7dbc67ac2710608933924698d0b9a35caf064154bb263ee230d7716748ac994accdec5ae27fde682033b07383fc293489ce6d8cade56be6cb989e4009f7eb9"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.springframework.data/spring-data-jpa@2.7.5?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/spring-projects/spring-data-jpa/issues"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/spring-projects/spring-data-jpa"
+ },
+ {
+ "type" : "website",
+ "url" : "https://www.spring.io"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.springframework.data/spring-data-jpa@2.7.5?type=jar"
+ },
+ {
+ "publisher" : "Pivotal Software, Inc.",
+ "group" : "org.springframework.data",
+ "name" : "spring-data-commons",
+ "version" : "2.7.5",
+ "description" : "Global parent pom.xml to be used by Spring Data modules",
+ "scope" : "required",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "9d96980e5547912448eca4b75308c8b6"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "0314b3faf010d9a5bf5a7cf12914e721ad0257f4"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "7b818ec53f28f4adef04a63ff4dda84181b5f2eba601a5402078b29e10f78c80"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "065312ba1763793932f470ffcca1717b474fa9f6578e067959af32ae6d5f5fc9a1aa73b322ef9711cecfe99ad9f0423f5c2a0174daa2250f3a388210ff3b4fbb"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "60bed9cbee936f4637cba3b65e29148682a863bfdd51216a609065f498bb3e19c67dbf01019660108427c10bec6f30bb"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "8d22a26051afb0c15f6afd8d095eae86ea98b94abe41a9849eef8170d11f33301caa2c402d7e23e3fb35c0b0bb70494b"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "e57d27493cb642ea74a2022c28d04a0e64e2af8e6c32bce2e5cb1a26d3d4d060"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "c61c741559f69f916734812e3d2441043c4c42ce098863857079e4eaf4a2308affcf9dcd0a4f46db9a033d9ad8e88e1e49bb2b4c0a9ff1cbc29a0ae9ffb38af0"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.springframework.data/spring-data-commons@2.7.5?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://www.spring.io"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/spring-projects/spring-data-build/issues"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/spring-projects/spring-data-build"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.springframework.data/spring-data-commons@2.7.5?type=jar"
+ },
+ {
+ "publisher" : "Spring IO",
+ "group" : "org.springframework",
+ "name" : "spring-orm",
+ "version" : "5.3.23",
+ "description" : "Spring Object/Relational Mapping",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "729981a93a9565becac1aae1f31aba7d"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "7d023546cde0f1b2b8d289c690679f740394298b"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "0e1e258e536a74ece74b0f7954d540ef888baba4f02d9b14980fa6157364d153"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "e86c5eef082d9378efcd554f27e333b3b32a316885f6f71b007a1c8e9e35ae83d94f349e1dffee30edee915a7c85514cfc305ab5954b894eae9d031d931ac860"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "1fa200780ea690a34722c3efb146035fdec468f4ed0acaed298c9fa3abfba726c2c814dd27cb7a43d533e2e43480638b"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "f1ea88d140816f9f6b80f7d9e8d4c858ec92bdcba9ac591870f2e04888f9d0fb92ffb832ce53e65e5522c653599ec2c5"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "701ac81878b7003e2647d592ffa75dafd1b1960bbdebd22f5e995f6bef37c550"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "9e029336e77f5ef0c164f1af13b4a1013fce67cbf4ef3d363a9a1a276a525cc69d8fd89c20e6a2d3889aeaa434eb1f3c339568eecde2e3aef2af54fbfff65964"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.springframework/spring-orm@5.3.23?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://spring.io/projects/spring-framework"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/spring-projects/spring-framework/issues"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/spring-projects/spring-framework"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.springframework/spring-orm@5.3.23?type=jar"
+ },
+ {
+ "publisher" : "Spring IO",
+ "group" : "org.springframework",
+ "name" : "spring-tx",
+ "version" : "5.3.23",
+ "description" : "Spring Transaction",
+ "scope" : "required",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "9abf629595fe674159f7240b6e4d652c"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "ab313b4028c62e18fe02defdd5050af704778428"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "50ec8e851eecc36e8cc046ce9a0cb8e9f150aefbae9ce8ccd9689a297c28746b"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "78ac60cddde270cd013898e6f353632c912964a89d3ead3083b7045a21c821a72a41cbf90a6ccfee9e81338ad4f694070db3a886b2b5cf1846ef8853a162087b"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "611e58be6fd702ac53faaa3a6e676ff9572717b39c2752120d09fe1a086acc5ceb5ded169d44ba931ce93cea65d97c9e"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "c1ad8b0f9713ba57e6b1d4a46ce3ade6270a45c96ef3ebaa78cda3e7fceaa3a825bd1ef48bf78c30c6bc0686da2b965e"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "d2f74b2c8e7079995858fcc78cae887cca7c79a095cd4e2a0d3fa27c3a1a23cf"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "9493f0d9b2a8678ffc308cef8ac2fdaefbeb8d39577fb63f3f97cd195d6498cc3e2b36b3f76ad0d846de4ca4d98f66886a165cf644738223f8dff0725b0e433d"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.springframework/spring-tx@5.3.23?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://spring.io/projects/spring-framework"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/spring-projects/spring-framework/issues"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/spring-projects/spring-framework"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.springframework/spring-tx@5.3.23?type=jar"
+ },
+ {
+ "publisher" : "Spring IO",
+ "group" : "org.springframework",
+ "name" : "spring-aspects",
+ "version" : "5.3.23",
+ "description" : "Spring Aspects",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "2fb0559787036339df65df932238a48a"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "35a0f5df4241f794fd79dd2447195ac055e88b8e"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "006faad1942076696e99b88d17f0f7eabb47261419cef0ce8cbcac98b7d7737e"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "c9ed752d606973e542a65ceb46741d3032ce51ce81f1306eef9ce49784054618658229c6f09af615f3793907e4073ccc2e5f08ba934f437aee64a9ba6c5084ff"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "2902ee5cd02611c2d097238c13fceb873e9c82ba8a6fa228c19b3b1c3499c6bfb6994c1b9f8283123259cfc4011da1df"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "a952ff6c86643c0cb5381f311f477c7b5a6f1c5ee29fc86a8235cb57ba3b616842555bb9cfdd33fa080ef99d8dfe5ca8"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "ab5cc9503667904d9ffa1b69575184366bff5a0ec2b8bb2b77b71f08bb59fa71"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "1937835349dba8e62265799084cb96d754543b896b4473a369b897ff9bddf4b31ab58d814532bde433426078665d67c20445cd4d976a9fd8a05286f539b1fa3c"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.springframework/spring-aspects@5.3.23?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://spring.io/projects/spring-framework"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/spring-projects/spring-framework/issues"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/spring-projects/spring-framework"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.springframework/spring-aspects@5.3.23?type=jar"
+ },
+ {
+ "publisher" : "Pivotal Software, Inc.",
+ "group" : "org.springframework.boot",
+ "name" : "spring-boot-starter-security",
+ "version" : "2.7.5",
+ "description" : "Starter for using Spring Security",
+ "scope" : "optional",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "f8e2ba709058c693d954db22281db402"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "cc83d58be6861484d25ae9e2fc6db6564062140d"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "0473a3b8f86c64ab992824bde28c5ed30aeaa0b8395b9e9a7099854e1b7b3851"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "f81648cc47093f8692bd3e87b1dadbeaf217542c6110875875e5149c912fb5e1f041173dfd3573f68cf3ebcafd6481538dc7167ca7682d44db789ee392352edb"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "4128265d44aba33f9ea38c003a3ee8b57e3bef70654cbde8bb8a50d5bbe5fd53de0a007f24b4ffbc9978a79f1ea01376"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "26c7c1e1c5306b1fd9abb58cb4d67335a2b548354af1133764923c70c4cdea174867902b817763aefc1aaa8dd8efffd8"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "b119721a630c37775acd820ca12ba1192afda1c9a70589bef5d4d23da58b5e08"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "bcce8da2bece6f1f5e7b33d0e4c348de9edc34e022efc40fff959d4ae2687b14ada6ed6b0d384f6d930d23a061de2f5dae7f909889f075cf51de161b1daf3e23"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.springframework.boot/spring-boot-starter-security@2.7.5?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://spring.io"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/spring-projects/spring-boot/issues"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/spring-projects/spring-boot"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.springframework.boot/spring-boot-starter-security@2.7.5?type=jar"
+ },
+ {
+ "publisher" : "Spring IO",
+ "group" : "org.springframework",
+ "name" : "spring-aop",
+ "version" : "5.3.23",
+ "description" : "Spring AOP",
+ "scope" : "required",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "3d1bd213d1a8356d6f87c3c8d4f49509"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "30d0034ba29178e98781d85f51a7eb709a628e9b"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "532584069f50c6f2c0a6692422a501ee77ba3245acff4a7fe51f3d658bc555db"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "e77024f92f4cd12fe6448d12c312f38f2a85e6aa1518c760c853fdfd868f742b1130e3091c281183f1af8752c0b95c9031697e8b321375d7237ca133464356cf"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "86b11a21779d13962f7a7182af1ffe8b6f1273648a6c12bbcce463ce36cb66b44150a6ef4f389af14c9d6f09135fdb57"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "cfc1c46aad61f39ae30d4b9f75416cbc1867a37f3f2f524b56471829fa421502bbe05b1f2674f2b151dcaa3ee0831420"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "a602ca0ee455284dfb683293b288720b887a4dd42634668012856022e893120a"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "66d3a88ffdb5d38d85ab68754a6b1a048542b53ae9150c2c79296d8d23780ade4b1d8d3bcff892d6934a7980d623892e6f521fcff8919fc89eb5ca6f4b8ad1ad"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.springframework/spring-aop@5.3.23?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://spring.io/projects/spring-framework"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/spring-projects/spring-framework/issues"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/spring-projects/spring-framework"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.springframework/spring-aop@5.3.23?type=jar"
+ },
+ {
+ "publisher" : "Pivotal Software, Inc.",
+ "group" : "org.springframework.security",
+ "name" : "spring-security-config",
+ "version" : "5.7.4",
+ "description" : "Spring Security",
+ "scope" : "required",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "395c19eed8c342fcdec5542495b825c5"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "fb76b6ee2d2ff36df920f21a2b9130f02345729a"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "521636db6935f89e47f6a2615c17d1c205719674f056e8b29ac5a3d0a81aac63"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "c35559c1dd3561d154133a6f03c1558af86b033fee8c784fc6228c7ae1a8aa4a8d6a7297e9134b9de15dde984f23f85fdce5ef675867677c67b35b5c210ad33a"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "221819bfa5bf4a59b86c9844e238ef9625d322d69b9b133562c2b1d1787b94a883b2e2b93c8c6aefe98c0683083ecfbb"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "8f28d526964bfba249d05832b9553f1c1ee3a836f14c203d65d38a94a3b5c5bc69bb76ee31dd5e863b01767ec761f993"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "2fbd6c00a54645b68235bfc1ab57a07bddf685d670ec6b38e5ca044d775c6cd7"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "26300232f437f13ce8f7b1217dfdfa0d48216942852dde0958530a491ba107fc42c8b640ddd4ed80ca90d34d8ada87e6db46bd1202ba4bafca8bd692ad518b99"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.springframework.security/spring-security-config@5.7.4?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://spring.io"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/spring-projects/spring-security/issues"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/spring-projects/spring-security"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.springframework.security/spring-security-config@5.7.4?type=jar"
+ },
+ {
+ "publisher" : "Pivotal Software, Inc.",
+ "group" : "org.springframework.security",
+ "name" : "spring-security-core",
+ "version" : "5.7.4",
+ "description" : "Spring Security",
+ "scope" : "required",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "46acfc1cf321c60a0b8f3f8b096ab3f0"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "7e7d4189d115a053976eaebaa6e979ecf43ff2e9"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "2d8a019061742fea80fe9a18223f23d398f8ec46888cbeff5940dbd3a20117db"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "a93ad6dd125ec52c50fc487471b8f8903371c58bb156c90e8c1edbb8634d3692879b0772070b82b97efe2c461f87f75bef5fe8715210e8e574788949e91788bf"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "52308bd81307589bf38dc5b7f6888d2333b1df5c78ebfc11fe0deb4f41df762e3bfb8c76851641b5913c2006dabf589f"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "9613f8ba4c6bc83891f681e957a8c9ac0b83467ff1fb3e4915d8e581f9f4b1c1642ff15a8fb9a081727eaaca305e5f34"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "41486d408879b73cf890308bd024e95b6e60e40831ff969efbb56a227fc83189"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "dd8be6b5a8b97762dca5a5aedf1bf76a18ace1c814e42a8a6e86b318ac12e164cea55ca6e9bdc4987b42d9e3c25d3e0c9d3d897eb1315cae3a326c37621f946d"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.springframework.security/spring-security-core@5.7.4?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://spring.io"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/spring-projects/spring-security/issues"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/spring-projects/spring-security"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.springframework.security/spring-security-core@5.7.4?type=jar"
+ },
+ {
+ "publisher" : "Pivotal Software, Inc.",
+ "group" : "org.springframework.security",
+ "name" : "spring-security-crypto",
+ "version" : "5.7.4",
+ "description" : "Spring Security",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "1df48d9d62ca9ee3801727a2cb14e367"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "f5924f059764a44a20ce284322cbc49276550134"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "aa5f5d9884d4846fcd1b60662fd7bedbff6b1aba8b99653555f8d413d183d1df"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "6bd5a796ccacb5ba97b112664943d11eb6492c5b968b64ba0e920674ab112b4b5acd18aba8182cffb0b22b607ea0c50c386ba1dbba5395d64017ef7d146697cb"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "4fce4346826b7e8b4b3530cd02b5955936f1a2c0ccda2da28af77ad0c0a50401b49d942d9bdfdbdd33b5e83faf8cd0bf"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "a763719f6de27420fd1c8bded928e1564b1328e4928391a955d2084ef49ce503fd2e204f97c39b7a0c70205e01d15c5f"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "24140144991d4954b8d4a4929710d4f43f0f189544cbd1bf6f63bae6046fc674"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "98f55d278269c59bf18618823d08e1e5971f389a64890774810663357577ba685a9fcb6bc36bf425d582e2ffd27cda1db167db8c0180807557fed5505d2b3443"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.springframework.security/spring-security-crypto@5.7.4?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://spring.io"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/spring-projects/spring-security/issues"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/spring-projects/spring-security"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.springframework.security/spring-security-crypto@5.7.4?type=jar"
+ },
+ {
+ "publisher" : "Pivotal Software, Inc.",
+ "group" : "org.springframework.security",
+ "name" : "spring-security-web",
+ "version" : "5.7.4",
+ "description" : "Spring Security",
+ "scope" : "required",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "77532c6633458d09c4137ca098f2d530"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "9e89534c6b9ddbbbda692e83e894c1ca0a8c9266"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "5b06db2a353b47da760612d2f741e6840a0f180ef249cebff18ad8a59310e848"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "ee776b83f9f4194a1bc273eefcbdcbb8b0d07d4f1e724b3f284fae8821af3ff1b27bc3906bb7e5aee49875df479fde23dc5120f58841e7e0c9fc755cf621020c"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "f40fb19def610f7d1b2bf7d5db2447232c04149fdc0a37ae12941bab82ec178f3c572b7c1b1cc97f4401b51b4964895f"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "8724ca28fb70b7de719fd27895913262759f46bf984b02e195e168580f700249da01fe6c96823c117473c483f50db53f"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "6c128a1236923820fe24d9ff4a7a662125c4e7b17b9c6b7e6e04d20f9fc305cb"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "f3785d7cb8b5edfd01b60ee7e129ce318665da43713a41c7d215d6756aafce764589b7a12a2ce4660a2134dca8accce339846fceefeac94b863fdecb8616002b"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.springframework.security/spring-security-web@5.7.4?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://spring.io"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/spring-projects/spring-security/issues"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/spring-projects/spring-security"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.springframework.security/spring-security-web@5.7.4?type=jar"
+ },
+ {
+ "publisher" : "Pivotal Software, Inc.",
+ "group" : "org.springframework.boot",
+ "name" : "spring-boot-starter-logging",
+ "version" : "2.7.5",
+ "description" : "Starter for logging using Logback. Default logging starter",
+ "scope" : "optional",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "0e3224e062dabf3b83a0ae823b76ed2d"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "61f4c53e35baa31a269bbeb7bb9d5e781448feef"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "9f0be185462e7d4a1dedc4d03854ed7477768c86ed7fc3d89dab1baf56527de6"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "264b89ac1adb92ccb4495e71a9da1aa93a04a83ba01a3642c7def601c9a355729c37e98e3254b739dc7eb8d4cc5333164236e6e0c14e30cf764d698587aac755"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "83fc4bc273557c480df15fdf13f22981799692fc92d9ebec0fdf96ecd56a83abc1817937046bd430683d430f8ff14b5d"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "d956d196812966120d5d8ba01a1593082af65927dbf8b5086f67335902ff1507773c89422a457e7a97855b25f3a055df"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "55f0f2a7b4e6841ee666b69af3dc621687b992e093985079d5c9029810d25d06"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "13957d65b84ce8460914c820a8fe3801d537b30245772cec28747ca7f667d033e4bfafa1b689cbd548beb5a6388e6c703ceb3a44ae34014aba73e449ecab9901"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.springframework.boot/spring-boot-starter-logging@2.7.5?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://spring.io"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/spring-projects/spring-boot/issues"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/spring-projects/spring-boot"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.springframework.boot/spring-boot-starter-logging@2.7.5?type=jar"
+ },
+ {
+ "publisher" : "The Apache Software Foundation",
+ "group" : "org.apache.logging.log4j",
+ "name" : "log4j-to-slf4j",
+ "version" : "2.17.2",
+ "description" : "The Apache Log4j binding between Log4j 2 API and SLF4J.",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "14b27a4266c6d71c949cb4591ee463cc"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "17dd0fae2747d9a28c67bc9534108823d2376b46"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "9bcfa5273527b950d79739d11e8f8080cfc881908fa2a946b4e891c0293094de"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "c90bbaacaabeed35f80be4d723b54234fd137413888870d6e1c1b16c067cbede57d637a18f0d25421a9c419fc55a9c388ce235077cfd6497178dfe67c5d398e8"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "c8374c05542d5a04a831a66596fe31cf385a303643e724840a70508aaa98e4870234aa8a26ac1f4fab167fe45bf34e6f"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "25c843c30137e459b94476843d8312a49d75b40d80469b1943b44a6bd2fd51f6b6f71b23d4bc559f91ae0f28763c7b0b"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "d0e8a8996e79cc881a10a55b4887436a9458625007f03b071230d1c4e96b54b6"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "6d0ec7c51ea40dee55c3c9a60ec198fe7461fba1f6b30a88b866608e83f47fb1328754b8fe33f3993f8c1ececc89c9ea83cb8b266f36fd9c1b8095946d330e2f"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.apache.logging.log4j/log4j-to-slf4j@2.17.2?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "build-system",
+ "url" : "https://ci-builds.apache.org/job/Logging/job/log4j/"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://logging.apache.org/log4j/2.x/download.html"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://issues.apache.org/jira/browse/LOG4J2"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "https://lists.apache.org/list.html?log4j-user@logging.apache.org"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://gitbox.apache.org/repos/asf?p=logging-log4j2.git"
+ },
+ {
+ "type" : "website",
+ "url" : "https://www.apache.org/"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.apache.logging.log4j/log4j-to-slf4j@2.17.2?type=jar"
+ },
+ {
+ "publisher" : "The Apache Software Foundation",
+ "group" : "org.apache.logging.log4j",
+ "name" : "log4j-api",
+ "version" : "2.17.2",
+ "description" : "The Apache Log4j API",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "0c39d90e7819c92c111e447bdf786a90"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "f42d6afa111b4dec5d2aea0fe2197240749a4ea6"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "09351b5a03828f369cdcff76f4ed39e6a6fc20f24f046935d0b28ef5152f8ce4"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "8f986171ee6ca94ba8eacfc83b5b45bb87221c176076eb152715fcb4e1f351c4e9f88d56420fc02ee166ebe0b896fb52eda21355dec49302ab3e83a56b245d04"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "e4ba0afbfd91ef295e6c1c1edfa7854e216a29705b5c4b520f803697ae6badf3630c5d55e56394954988fa88e62176b4"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "ef8ecf2f848bcb18790d79b1d4e0fac0582e94f226eb8c7039d7316bd9f4c472556a4052b4a93958eb1248c7a3756433"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "bdcccb79127c28c0f42374eeac65891e7c0d02f18e1469c705e946f74cfc89db"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "14a4d4f38dc5392f378e006994780d686095e1190d476fd18efcd4211bd4dcd64b699d79c5f4351c51f2d26a3ab98b4a49745df6dbd404e3bc981797a5b8c075"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.apache.logging.log4j/log4j-api@2.17.2?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "build-system",
+ "url" : "https://ci-builds.apache.org/job/Logging/job/log4j/"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://logging.apache.org/log4j/2.x/download.html"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://issues.apache.org/jira/browse/LOG4J2"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "https://lists.apache.org/list.html?log4j-user@logging.apache.org"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://gitbox.apache.org/repos/asf?p=logging-log4j2.git"
+ },
+ {
+ "type" : "website",
+ "url" : "https://www.apache.org/"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.apache.logging.log4j/log4j-api@2.17.2?type=jar"
+ },
+ {
+ "publisher" : "QOS.ch",
+ "group" : "org.slf4j",
+ "name" : "jul-to-slf4j",
+ "version" : "1.7.36",
+ "description" : "JUL to SLF4J bridge",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "2a3fe73e6cafe8f102facaf2dd65353f"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "ed46d81cef9c412a88caef405b58f93a678ff2ca"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "9e641fb142c5f0b0623d6222c09ea87523a41bf6bed48ac79940724010b989de"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "0bb1e7343d07d41bcfb0c1ffeb2db28cbb35e7a80a409b80042f463b082a292976f09d719e319471e31c7bab716121728a16509fd385fc6e3b400b1b214cffea"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "50e2f326fc00537a5fb3726c7c55556851b3be8b4346f522f27ddecf2fdb44adabae3197b30ccfd854c37d6734adbd8f"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "4ad0c3870852ac44530a9dcb992d947cd8708ee6f422559da41aaaa8b22d1610fb116b32d2c54df83b110b85487083bf"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "8e3f5aaaa27f618b52e610376d2a16c6f9dc8dce5e6c2bbe42131a590626aae6"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "e3da265406b5e69f02235ed7272a48f71cb8b6f0a696820e28e90fb5eafeeb311abf2a4e779b402f384c6a80470fd41116ee52a526f57040fae3b24cb3b19c01"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "MIT",
+ "url" : "https://opensource.org/licenses/MIT"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.slf4j/jul-to-slf4j@1.7.36?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "http://www.qos.ch"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/qos-ch/slf4j"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.slf4j/jul-to-slf4j@1.7.36?type=jar"
+ },
+ {
+ "publisher" : "Pivotal Software, Inc.",
+ "group" : "org.springframework.boot",
+ "name" : "spring-boot-starter-validation",
+ "version" : "2.7.5",
+ "description" : "Starter for using Java Bean Validation with Hibernate Validator",
+ "scope" : "optional",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "5e73a3a68d2a74da7c9f17f566c6b814"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "11760608ed34382c96c7f623eceaa608041f1ff0"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "93a0d1f8e807b61ccad33cadfc64159337e18bdad72d9ecabcbe06f0265a3ceb"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "7807fdbfe4238517b30849f6421662793936eab63395096996bdcb5a0c7709c332164bb5d6036b214f35c3c9b593e50a7f80f84c319f4473b8035ee49339b13a"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "8730362c7de2cdab92b4e8a8c3c990fdaa0a9dd9cdda9c9323d2b8384d27c88da88bc0dbfed9c16fb54247b6c2039e1f"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "6cc0b58f9fc08b62935bffacbe0a61111f4bb9536cf71889f3b3363620f70ef70aa2e48b0460694f642eb2c39c4fe870"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "e177517e3767f5a29ec6fd694e5ce3224b8a9255c39c5036f271b60d77163948"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "a9a4f85988f3af0ab1e2a4d7c4868ef3c08b15cecd728ba6042446a87ded4d6b1b7608840412f15eeb7c483e2870642eaa367c1c078ff98c52752a8caddbcf3f"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.springframework.boot/spring-boot-starter-validation@2.7.5?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://spring.io"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/spring-projects/spring-boot/issues"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/spring-projects/spring-boot"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.springframework.boot/spring-boot-starter-validation@2.7.5?type=jar"
+ },
+ {
+ "group" : "org.apache.tomcat.embed",
+ "name" : "tomcat-embed-el",
+ "version" : "9.0.68",
+ "description" : "Core Tomcat implementation",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "cc66bae549fa2bb4cb088d0902aa9372"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "296afe7483256960d7ebdd8dcb4b49775d7cb85f"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "05b29a7bc6542daa1584c325f37732d75223951ac8e6941effe1b454b9d2e751"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "96d43bf406d2d60ba703d6757bd6a16abc4e7824d585e7fa9fbe863cb6a8fd0815283f14fb80cb02d009cf295535d8f20d7ab7f402b42c0f81c9112cbeb618d5"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "2bbe3b4981f9494e53c6340056d824951aa3371e2239ebc4edda161564b6c48c168b887519c2c678cafb506030e37bd2"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "7464b5b31f10738a017371d1e2172df3f9d29a7a33d3f5c657913f79dfac855b16b1871e7c051c1537a00eccc470b1bc"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "550a5f3a4bd57f97175bbad3d49eb425f2c75dadafabbb269b7d220c33ee4925"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "71676859c4e56ce8a6d505eff16f0d0b7c73d702373a92367881df601768849bcee2b06202ca18105c72e49d4148197c581d7f20c2bd38d227891d4771f58e8e"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.apache.tomcat.embed/tomcat-embed-el@9.0.68?type=jar",
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.apache.tomcat.embed/tomcat-embed-el@9.0.68?type=jar"
+ },
+ {
+ "group" : "org.hibernate.validator",
+ "name" : "hibernate-validator",
+ "version" : "6.2.5.Final",
+ "description" : "Hibernate's Jakarta Bean Validation reference implementation.",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "9bce6e6e05f6975c0d414a5e935c8107"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "a68959c06e5f8ff45faff469aa16f232c04af620"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "8d6d89c3204b30a01dc248352f43dba196140bf4adc5f437f63e2ad62a3d2144"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "7c29acb57e7ac2c46e47c4f4b716f5518bdfcba81bfad333764894c6b7be679fc8cff1c3598b9210bfd0da1b704e8b11f9f71e0ed7e57bf0eea4fd76b65458f8"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "db1a36d00f1e07ffbdb8bd2a24dfbb07e97703f6054ec86e8a2ba3e5848fa83955fd082c48436c4aab7cb864ec5f12c0"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "46a17e6d4fdda01a91bb5921001506169fd4bcaf8c0aeea5f959480eecad3b2b258b361968f12cf8ffbe454fcf5562fc"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "7523582fe81c98cff0fd8e2229eb1f8a703ef4e099d8af20931b095a21277b8f"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "b1478874a387b448085c6a1e0012ec5cf3aec808285d4ec6386cf15e1309d6d8fb0f21af9c4df8dc0c1bb50887ca4f90f85fa9c55250ea5541a1403f465cd073"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0",
+ "url" : "https://www.apache.org/licenses/LICENSE-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.hibernate.validator/hibernate-validator@6.2.5.Final?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "build-system",
+ "url" : "http://ci.hibernate.org/view/Validator/"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://hibernate.atlassian.net/projects/HV/summary"
+ },
+ {
+ "type" : "vcs",
+ "url" : "http://github.com/hibernate/hibernate-validator"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.hibernate.validator/hibernate-validator@6.2.5.Final?type=jar"
+ },
+ {
+ "publisher" : "Eclipse Foundation",
+ "group" : "jakarta.validation",
+ "name" : "jakarta.validation-api",
+ "version" : "2.0.2",
+ "description" : "Jakarta Bean Validation API",
+ "scope" : "required",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "77501d529c1928c9bac2500cc9f93fb0"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "5eacc6522521f7eacb081f95cee1e231648461e7"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "b42d42428f3d922c892a909fa043287d577c0c5b165ad9b7d568cebf87fc9ea4"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "3ca8556b80ca809b3a43fac31469702bbad62a00e63b11a304dad1e372d9f6c128357463a4c70c423055941c7e2e417f87a9474a204d189c8e4b62f42047c8eb"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "6ae3963fd6a5e83b068a8344b88f6bfbd26d29cee64193025bc5e98195678e49826463da27a7a1c15cd83b2149d57a94"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "55a570386718064b422f9ebc0c0c07f0b37259e44a14c9a16c20e945402339b1d01b7d6969ef40d6b5baf5bce3e1161d"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "1ff48fdabab86a398b25e491e6ba4fd9b62d597314202628a3cfedf723c17f21"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "c23bb0b43fb0c39d4c9d2cce0cd38334fa7c253130f0bda3007d9f7d2dd451c0896ff4265ee2cc35024fad282f9ccaa398c19874775d9cabbb786843fae155d7"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0",
+ "url" : "https://www.apache.org/licenses/LICENSE-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/jakarta.validation/jakarta.validation-api@2.0.2?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "issue-tracker",
+ "url" : "https://hibernate.atlassian.net/projects/BVAL/"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/eclipse-ee4j/beanvalidation-api"
+ },
+ {
+ "type" : "website",
+ "url" : "https://www.eclipse.org"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "https://dev.eclipse.org/mhonarc/lists/jakarta.ee-community/"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/jakarta.validation/jakarta.validation-api@2.0.2?type=jar"
+ },
+ {
+ "publisher" : "Spring IO",
+ "group" : "org.springframework",
+ "name" : "spring-oxm",
+ "version" : "5.3.23",
+ "description" : "Spring Object/XML Marshalling",
+ "scope" : "optional",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "8006267643d921a1c2fac0bc3e0a4719"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "3cc989887a4daacfcbb048a349dd3bf4f32f5e86"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "197a03081c757701a72bf01566e9584b717490076cb22992c1022413a19292fc"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "2481e50daa729dff87634b5cc979ad0bf137a72325cd73d95c73a794d7353b74c2979b6892673e5ce0d2cf91dcd0163885b1c3bfd6bb4f70db7ab6cca89d1609"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "38a615eed82eeb3c16e10b1ed5ab063fa41abca3b20df6a892dbd6d11e580b25ee710c186b1b7c99c7acae02c8c64018"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "2e9f0901ecd389ff67ae6c78b723af83448ba09e5b8602bc181fc7ee9d33fc321024e8a68e108dd272c39d4b29f13dd6"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "d033f16db6e7d8361378d4b038d0d14a66c352d466f90501090d28b7212823e9"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "d1f281cde48c574bdb0d06503cb544c17ee28954093e318a9d48311db4808c31c5be3ad8059fffa146b733db21c4014012de29738b2a7b9ca014099c3d7a5dfe"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.springframework/spring-oxm@5.3.23?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://spring.io/projects/spring-framework"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/spring-projects/spring-framework/issues"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/spring-projects/spring-framework"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.springframework/spring-oxm@5.3.23?type=jar"
+ },
+ {
+ "publisher" : "Spring IO",
+ "group" : "org.springframework",
+ "name" : "spring-beans",
+ "version" : "5.3.23",
+ "description" : "Spring Beans",
+ "scope" : "required",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "54a6169c8887dac4c3a5e2e3975d838c"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "3bdefbf6042ed742cbe16f27d2d14cca9096a606"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "99e2ec12fd419db7facf0424b2c601a4155eba85aac5f75050baa55e18eb6c80"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "b773acdc43771b5fbf912ff1f314bb4521629e4bf40f2932bffa2fbbb472fcdd87a37b96f0fce8f70164efef663c5fc3ca3319562ed20e73682ce56c347109c9"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "dae4f028caf81d6d44bf77b16812091ab19cc59b47e240b3c0b78b0c75613d14bd79d42ef5042c9caafe0bd714df0ef5"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "43f22ac3b86b0b101c31f0f1111a4054832695489a41013f8e4782c44357a08cbc400db599de2deec849eff2c38a7e42"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "67073082394768131bec67a3ae519f3187a0b7bc6d78f7adbe662cccd10cc68d"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "5f6d26e8739aee13f8921574f09c83a2661be9cf3865f77fc8fe0a9f016cbff747ec699fab5b75cb0191753a86720c73b37153baf458be22fb61900eec82896f"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.springframework/spring-beans@5.3.23?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://spring.io/projects/spring-framework"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/spring-projects/spring-framework/issues"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/spring-projects/spring-framework"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.springframework/spring-beans@5.3.23?type=jar"
+ },
+ {
+ "publisher" : "Spring IO",
+ "group" : "org.springframework",
+ "name" : "spring-core",
+ "version" : "5.3.23",
+ "description" : "Spring Core",
+ "scope" : "required",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "7586bf5525218f46206bc6fe07e84736"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "91407dc1106ea423c44150f3da1a0b4f8e25e5ca"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "dba23f6a6e38bf8ce58d29c31eb288da56c4d826507d3a584a27e0daac930a52"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "b9e1b0afdeb82939efa94d17778c85c8c45f991e5472b36cac2f5ea22dc7271cce14a097836077b93c3767ba6866a7fb4e6cb99fe738a6bd40dd53f2bb50d95c"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "f6741c27a09004849fba26172cbec314eef33c8222d15dc30f05b7a1b3f598d76b20e57496a6fe5119873aa52d314946"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "46ff93b433ebff839b4e1e2433cc364b6437acb04a5df4223c0c4cc249d1a1a5d0eedf59af80b26cb2e65063f7b386b9"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "5ae4290463d630ad46b4903a40aa4bf819d336b6045b83a6503198cee86c52fd"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "407d0fce0ab924d1bf99af06da361e830035d63d337b15b079fa85d21dc46bd1b9eadc87c34d72526e4ffeacbc7b400f177e0df22e9b442cbe26405a1e9bff1e"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.springframework/spring-core@5.3.23?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://spring.io/projects/spring-framework"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/spring-projects/spring-framework/issues"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/spring-projects/spring-framework"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.springframework/spring-core@5.3.23?type=jar"
+ },
+ {
+ "publisher" : "Spring IO",
+ "group" : "org.springframework",
+ "name" : "spring-jcl",
+ "version" : "5.3.23",
+ "description" : "Spring Commons Logging Bridge",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "8f3c2461ca9f5acbbc85db52efaf0ae9"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "3c7eb5fcca67b611065f73ff4325e398f8b051a3"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "df478eb13e5eece60695a2a5c50a34b1e89c62974d27c54f5fc005811b6817c1"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "61edabc9ec6241dbf43ca61d071996eb940b210cec1158d5b3b5f242a4cfbe2ae8ee74a83fc003605e8446c0f079b67eb5fd06dd43279df979da304273bfda33"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "72f7894a847e17fc05b6e1bb01b66b0c30d528cb952f0897d75e28551fddeec47c6fa5fcfb67fda141da21c32d6b9b81"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "9e67e917cf991a13870aac4770b0db3bad8ae37ef451570d72298b67a75805667106b6afaf4bfd55b8f616f7b7211fef"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "48d235d833f09debcf7adde9c53b46cc0c076ca3a4ac8e65eff600b38e095b2d"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "2778a840b785be1b6d2c48fd71adb2287f416ea60a0aae3cd250d8ff34f0818aeafe7bb8058eaac4fb4aa51360d8d0c88fa0eed0c7bd043a152d871177fab48c"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.springframework/spring-jcl@5.3.23?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://spring.io/projects/spring-framework"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/spring-projects/spring-framework/issues"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/spring-projects/spring-framework"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.springframework/spring-jcl@5.3.23?type=jar"
+ },
+ {
+ "publisher" : "FasterXML",
+ "group" : "com.fasterxml.jackson.datatype",
+ "name" : "jackson-datatype-jsr310",
+ "version" : "2.13.4",
+ "description" : "Add-on module to support JSR-310 (Java 8 Date & Time API) data types.",
+ "scope" : "optional",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "db49bcba378775ef4a9b134d38befb29"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "0e6d820112871f33cd94a1dcc54eef58874753b5"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "5ad75d210bacc17271925da28e1f393aaf8c83f6c92fbe5b2ed61954b84decf7"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "0507cfa28e5094ed0ece721e0445cab5b1b7b1f940f7fde85400fbbea593a12129aa334c664beb029d43900d641a04f7a6e043c1e40e4f61238a8ae8324bde7d"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "542e1e140da3dec96b8efe129ff0882575e080d2278bc9314da3fff6173d07a67ff248d018ee45307661ff8bb442ff02"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "e4190cf253ab6d935f8c22e5c761c27e3371d3bc5cb732fec389c8c7628d1a2aa575d324e1cdf6d2625da62a1e4f3047"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "6b171b779798da146ad27a33dd2487600e7d9d6091dc3a2ee7a858a48e9d3905"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "a165b2a8ac3f991867fd1a389cda95bbcd2d31e3b7aca35068b7cc81758e7679e6528714c5d14cba47d3e4b489b59dbc7db17791037472dcf8b0d0a43a6cb2e5"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/com.fasterxml.jackson.datatype/jackson-datatype-jsr310@2.13.4?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/FasterXML/jackson-modules-java8/issues"
+ },
+ {
+ "type" : "vcs",
+ "url" : "http://github.com/FasterXML/jackson-modules-java8"
+ },
+ {
+ "type" : "website",
+ "url" : "http://fasterxml.com/"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/com.fasterxml.jackson.datatype/jackson-datatype-jsr310@2.13.4?type=jar"
+ },
+ {
+ "publisher" : "FasterXML",
+ "group" : "com.fasterxml.jackson.core",
+ "name" : "jackson-annotations",
+ "version" : "2.13.4",
+ "description" : "Core annotations used for value types, used by Jackson data binding package.",
+ "scope" : "required",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "7e982dafcf25c24b365b5088eaf8a0a6"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "858c6cc78e1f08a885b1613e1d817c829df70a6e"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "ac5b27a634942391ca113850ee7db01df1499a240174021263501c05fc653b44"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "788a836b1631dabed472a0387de2ccdf86ab9091b04246d58e257780bb382e6ae068b6df862407c1256b0b83d1f9366813e54e98982f881c3d222a9f4a8e9ebb"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "7ae717dc399ccfe7c2a4831fae5c410d896e0a5afdff710003fa306ae2663a3c21ca000edfec9cdba30b0997c4c66757"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "fd2b435781f0870b572ce493a7c2e8cbc0cdfec80a24ae9a3d0874c27f84fb527a80afdc30a4f641a8f5389865603f4c"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "d6a55b712e499803461575b89eb8e2114307c88ba0e7fa56a65eab995b155f3d"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "295881324b5331e3e9530b26f719020f01f2ffd33ed96cdfad7983c3e4578e1eea0cce9d8ed622a1ec6b7b1b1e60af858b6813d08e4f31a38d1422d9c70a6a5f"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.13.4?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "vcs",
+ "url" : "http://github.com/FasterXML/jackson-annotations"
+ },
+ {
+ "type" : "website",
+ "url" : "http://fasterxml.com/"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.13.4?type=jar"
+ },
+ {
+ "publisher" : "FasterXML",
+ "group" : "com.fasterxml.jackson.core",
+ "name" : "jackson-core",
+ "version" : "2.13.4",
+ "description" : "Core Jackson processing abstractions (aka Streaming API), implementation for JSON",
+ "scope" : "required",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "e8f064827ddb8deb06e45d20988bcaa5"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "0cf934c681294b97ef6d80082faeefbe1edadf56"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "4c2e043200edd9ee7ba6fc378bd5c17784a5bf2388e152d208068b51fd0839cf"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "cf54bf5be3a5015a4b2c3ac986bf01f64517df224c8ba67197118d06f7fbe8ad64e39d002df326a72feb5aec8f0bc7f15338e90c4ba0668a167a0f03a81ce47f"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "5fd2723a9f5bae811e71b596180c56355497f87cdd6c9bdc74716224ea1d133b6ed4e5df20b6ec169b3745066019ad94"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "47217ac4e35397ed519916b26ec780ecbff69de0069afcbf9329a84f52b0e8fc4700e0c7b6bce7b9ddf585df7d944f22"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "2be4b3203664ef4249d40af8d3ea9516805a573515a8ece27c5e625c0969ed0f"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "75b4fa4464de9e5efbed460b940ef79b34fc7c477cb61540960f6e56039915a520176d6bf42077453cb049ec184d3b6d88006a4016a02b5de87da907d8c0791a"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/com.fasterxml.jackson.core/jackson-core@2.13.4?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "vcs",
+ "url" : "http://github.com/FasterXML/jackson-core"
+ },
+ {
+ "type" : "website",
+ "url" : "http://fasterxml.com/"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/com.fasterxml.jackson.core/jackson-core@2.13.4?type=jar"
+ },
+ {
+ "publisher" : "FasterXML",
+ "group" : "com.fasterxml.jackson.core",
+ "name" : "jackson-databind",
+ "version" : "2.13.4.2",
+ "description" : "General data-binding functionality for Jackson: works on core streaming API",
+ "scope" : "required",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "f26eab82fa1da09f8e8bc7e52fc82088"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "325c06bdfeb628cfb80ebaaf1a26cc1eb558a585"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "ba1a368137f9b92f48dd07f299ff7a782a69487b853ef5578215426fcde8f08b"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "89b5f58414d541d79f63ddedbcf4d5fafabc68d9bf9cad09f354c151e9685512e1433f2e22f6a7ffc8100c3c5fddbbb99fd64d7c6d4974b2915edb523f99ca16"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "87d3468179690f73868e8e2cad7b5107d4cea86ba7d6481ed288101f9d59b6b9ad27c7cfd1c466bdccc89effeb8291cd"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "16c34d4930500ab5749a3ff95ef5a0672c94b618dea5f88af37e61dbb19e366632f4d06c1a95d5132d451b329a4c32cb"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "222d42b2719c7ae81bc298570d4e37b745909a075e80cdc4beccd72be6a784c6"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "c2024c52d89b423a2049eba07badcb556b12ea953582002d47be7236d23cac7ca3cc4a099fd9f241dfeee8dbb8809a230721a2d7e6a63cdebebaf25f93bcdacd"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.13.4.2?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "vcs",
+ "url" : "http://github.com/FasterXML/jackson-databind"
+ },
+ {
+ "type" : "website",
+ "url" : "http://fasterxml.com/"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.13.4.2?type=jar"
+ },
+ {
+ "publisher" : "Pivotal Software, Inc.",
+ "group" : "org.springframework.boot",
+ "name" : "spring-boot-devtools",
+ "version" : "2.7.5",
+ "description" : "Spring Boot Developer Tools",
+ "scope" : "optional",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "92cb4f8657de6a5aa90387c1014a7a59"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "0e8510bace48b6a516515aa140cdfd758ad5a47c"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "8e99f26e90b28b486b2ee7d590ddbb923d65ae352bf7546dd55fbe2c49bb176b"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "b9a663f7ed817716bb12ec48fda81dacb2aec807af8cfef922d71754ed5b9068006bc9d081fdc92005c5f7c37b335eb515a8d53d2c8e3b894d32d5b90c68023b"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "63ec455e61459d5989906e0294b00bd0a24f61ca26037becc80fa368e0b9f93b687279860818b9813febbb1a7738218c"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "17922faadc8b7423db42aeb5bf5731eb3eb2a30511101b0be2c9b1b71d383a434585554eecac8d6160125392d185bb44"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "9e31d35181db0877440f7f2006859b5712d47d501075df4431dbd2e462acfdf7"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "90a82016e7c075931ef2df8468daff567ce7def9e217db41611fccaf2eac8d2cc878c0f0697f16c4bc61939e3a117956c20f8687e7f12a39bf80c65ff72c5422"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.springframework.boot/spring-boot-devtools@2.7.5?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://spring.io"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/spring-projects/spring-boot/issues"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/spring-projects/spring-boot"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.springframework.boot/spring-boot-devtools@2.7.5?type=jar"
+ },
+ {
+ "publisher" : "Pivotal Software, Inc.",
+ "group" : "org.springframework.boot",
+ "name" : "spring-boot",
+ "version" : "2.7.5",
+ "description" : "Spring Boot",
+ "scope" : "required",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "a7fed1122641f069bc7de65729fa2971"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "fd04e228e6e21b7ad13c10ae29afd31868d842e5"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "a5436b5886571a9ace64f3dca97793ec797be87fba097ff1a2217a47c8b8846a"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "e97751488d788c4913d5c2d54dce2a82d0d303d7f133d525194a83717976a4320c8ddc79579db7b054273c1abac409c514f4e2b73dd8ecf3bdcddb1117feca4a"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "30c1621b51493a080dc27ec01b736a40428a17cab6ad6584501bea8843111b955b470dea70217fb491846e7681407109"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "d7f3e9b5316f1d273a10501b566a0f0e5192487177550c5ff9c5fac362bc0f36fcb45ea6aa4ea658c25b360458a9220c"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "334501598c7fc146d906a608b10c1b9b61945bc3300533dafebc5cd90e31791f"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "0ff9bedcc47cf06df808fece18100b01751b84b40b7e1633344f31603f3e7877d325fc5e63b1b715c87453ff1f62d69a0607873b17cb3b40cb775b88254a9f34"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.springframework.boot/spring-boot@2.7.5?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://spring.io"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/spring-projects/spring-boot/issues"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/spring-projects/spring-boot"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.springframework.boot/spring-boot@2.7.5?type=jar"
+ },
+ {
+ "publisher" : "Pivotal Software, Inc.",
+ "group" : "org.springframework.boot",
+ "name" : "spring-boot-autoconfigure",
+ "version" : "2.7.5",
+ "description" : "Spring Boot AutoConfigure",
+ "scope" : "required",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "13ba5867ff68701c94a1a08e683e4553"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "96646e63a2296d0a3209383e81cdb8c87ab2f913"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "7c68a09bbf6da99e032d40fe812f3998b9ab2ff7f30d5289aa10c11a39a55da9"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "35196a132930558dbe83cb70efbc48e9c26c822820948472869d0207467b84a63487cf445a5cc0a63e50ae11348e363fdf3ef1af80574a47459bff22fcd6ff7e"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "4aeaecc8a16bc6db308561ccb51757a5ba12d4b8f8246e773c693b66ef13d24d28c0bc8ae34ecf7939ce3890efc71dbc"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "715920e1ecc8fd85ea9123401aff315b0b77a6bc52ceec4a7e2bb138b7d104622a85abf88ee1ec1f6cbb0102ba49caec"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "9932db8dff0deab38218c21764b14d957ab32cbc91f774b295e6851ef1ea9cfd"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "7db32d98ce6402422887956412e64b053d42cc39cba89b9ce8a1f8243ebca9c1d5ad8d2786167ed4ab674de78520505e0b989862514e091b65492c81449e4f19"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.springframework.boot/spring-boot-autoconfigure@2.7.5?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://spring.io"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/spring-projects/spring-boot/issues"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/spring-projects/spring-boot"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.springframework.boot/spring-boot-autoconfigure@2.7.5?type=jar"
+ },
+ {
+ "publisher" : "Ping Identity Corporation",
+ "group" : "com.unboundid",
+ "name" : "unboundid-ldapsdk",
+ "version" : "4.0.8",
+ "description" : "The UnboundID LDAP SDK for Java is a fast, comprehensive, and easy-to-use Java API for communicating with LDAP directory servers and performing related tasks like reading and writing LDIF, encoding and decoding data using base64 and ASN.1 BER, and performing secure communication. This package contains the Standard Edition of the LDAP SDK, which is a complete, general-purpose library for communicating with LDAPv3 directory servers.",
+ "scope" : "required",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "f712482a8ce0049d74f5edcd01916eb6"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "bf1a0d3790f8f7bd28f1172323c26fed2e3bbaa5"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "de2e896ab2989dee25f67fe2a3aaf789da0ae29e33aa86c9a359acb5bf9ca1fd"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "e47f737c9582b94506674abce257a61695a0a06f2e677e12c10c9c98686d11d25bf26517b6094c27ed80c919c873d6da2a648f544c3269dfd8def0242b36e527"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "a53ce2487ba7e6cf0c2c92fe18779d47ebcb167fc89fc38e4df53e12743016b1b8a8d5387ff76b89cab1dadcf7a3685d"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "97c494ff1d45100cd6a7878cc390985d6fbb0db15e4b6912522dbb51b7ccd4cfc57adf3e0eae89e472363833473eb582"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "287197b944ceb03e3ed394dc9c93f4fa8ac47c94c0483b5a78ba509ae9950eea"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "d00a64e950d5b5739ee4b6ad41539c4393dafaab45d6091527733553c9701159018f37a7e431108dc913f299c4e3315dc1584ebcd1e1af8d638674a62ffedf3c"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "name" : "GNU General Public License version 2 (GPLv2)",
+ "url" : "http://www.gnu.org/licenses/gpl-2.0.html"
+ }
+ },
+ {
+ "license" : {
+ "name" : "GNU Lesser General Public License version 2.1 (LGPLv2.1)",
+ "url" : "http://www.gnu.org/licenses/lgpl-2.1.html"
+ }
+ },
+ {
+ "license" : {
+ "name" : "UnboundID LDAP SDK Free Use License",
+ "url" : "https://docs.ldap.com/ldap-sdk/docs/LICENSE-UnboundID-LDAPSDK.txt"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/com.unboundid/unboundid-ldapsdk@4.0.8?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://github.com/pingidentity/ldapsdk"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/pingidentity/ldapsdk"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/com.unboundid/unboundid-ldapsdk@4.0.8?type=jar"
+ },
+ {
+ "publisher" : "SNMP4J.org",
+ "group" : "org.snmp4j",
+ "name" : "snmp4j",
+ "version" : "2.5.6",
+ "description" : "SNMP API for Java",
+ "scope" : "required",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "2ee1ee40672d90a5e097f3b9380aae7d"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "fc152ae9f1d9484eab5e9df925346560cb1ef864"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "ee9124afe56a9e398d1299691b637624de957ae95a3fc20f989f90fdfac3bc36"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "7979a81863796cf645d4fba3c7ddb032fb76ab6628996f491d4d87384931a6deb316a7898fe36b7e446566531ea24ade3efa347764d1d8954eafb03f70e882e9"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "1660196cf596b5d979f7d7faa63f0ff80208cddf8684574f9096f935f5f9be7f3c3b732016a0991e475b460e55d50d55"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "259d8f62a9b69f8df3edfe2fd2a3c7c372bdf12b1076848a9701d59fac869eb90963069c7428db91882f61c01ee3ee19"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "8692a1b280a5ca6c320c2e4f0e836263c5c37756d220c0233a94141e1a758948"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "717f4e9ff24425b39a4f837e22a339a9278d650b92db93dd4f2a30a1cd343b65380c7eddebe45629893c0183a081aeeeaf51885543e254d6d54fa9d7bae2f571"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.snmp4j/snmp4j@2.5.6?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "http://www.snmp4j.org"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.snmp4j/snmp4j@2.5.6?type=jar"
+ },
+ {
+ "group" : "org.openmuc",
+ "name" : "openiec61850",
+ "version" : "1.7.0",
+ "description" : "OpenIEC61850 is a library implementing the IEC 61850 MMS communication standard (client and server).",
+ "scope" : "required",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "15d0dd84fc73937f9f780c0ec986e6ae"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "a1802dc0cfa820d8c267836bc35689a44a49e55a"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "3a06bff402b3965d709cb89179107e1db9dbe26e694a2b8d879161c721eb54b1"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "1564b6fdb1d9107a17d657b270235240addafd63775e48902961053a80da6093232e00ef84809192dba9d24a00fca2a7e467faeccc0833c8fb52072fe9f8f733"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "d7fce503b21b69b53bb039535edba7448eb61eb5aa28900728c624142c0a322802706dc79644a2c9dd22c2b155df7018"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "6864eb02c972cfb425a44184baf85d389764739c44d6f3c3b342b86efe8b0967dbab0a127cff99216a94a07e6287826d"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "0beb4d62f94aa9611f37d0fd565614a2bb9e9793fc156351b09216e52afb74b9"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "1acbc6ff8f26c2f464621a216d5aeae2b26344e00848a812d5f79f02a0c0da5d4919d8fabb1c4e5f8d85bce7066bfb531bebffb487248dd45b8be09e135ed649"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.openmuc/openiec61850@1.7.0?type=jar",
+ "externalReferences" : [ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.openmuc/openiec61850@1.7.0?type=jar"
+ },
+ {
+ "publisher" : "QOS.ch",
+ "group" : "org.slf4j",
+ "name" : "slf4j-api",
+ "version" : "1.7.36",
+ "description" : "The slf4j API",
+ "scope" : "required",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "872da51f5de7f3923da4de871d57fd85"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "6c62681a2f655b49963a5983b8b0950a6120ae14"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "d3ef575e3e4979678dc01bf1dcce51021493b4d11fb7f1be8ad982877c16a1c0"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "f9b033fc019a44f98b16048da7e2b59edd4a6a527ba60e358f65ab88e0afae03a9340f1b3e8a543d49fa542290f499c5594259affa1ff3e6e7bf3b428d4c610b"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "2b14ad035877087157e379d3277dcdcd79e58d6bdb147c47d29e377d75ce53ad42cafbf22f5fb7827c7e946ff4876b9a"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "3bc3110dafb8d5be16a39f3b2671a466463cd99eb39610c0e4719a7bf2d928f2ea213c734887c6926a07c4cca7769e4b"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "ba2608179fcf46e2291a90b9cbb4aa30d718e481f59c350cc21c73b88d826881"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "14c4edcd19702ef607d78826839d8a6d3a39157df54b89a801d3d3cbbe1307131a77671b041c761122730fb1387888c5ec2e46bdd80e1cb07f8f144676441824"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "MIT",
+ "url" : "https://opensource.org/licenses/MIT"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.slf4j/slf4j-api@1.7.36?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "http://www.qos.ch"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/qos-ch/slf4j"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.slf4j/slf4j-api@1.7.36?type=jar"
+ },
+ {
+ "group" : "org.openmuc",
+ "name" : "jasn1-iec61850mod",
+ "version" : "1.10.0",
+ "description" : "jASN1 is a library used for encoding and decoding ASN.1 BER messages. This is a special modified version of the original jASN1 that encodes boolean true values as 0x01 instead of 0xff in order to be compatible with certain IEC 61850 devices",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "c4d1a9505d7c2361d4815caa489745d9"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "322990dd2bb1a67323fd15af435548b9b19ba3a9"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "d40bddb0a54907271a87cb9d52b6b7cf4d1830764b9a41c0a41dd4843f2e3b0c"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "4253bc2dec7d3c78c470ded13911032598132a2701c6620439247601cb51702281e0ec25577b3a726a4fcb93ab3d6f93f60393181b6c4cdc0299a95e9a766b15"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "58cb85be02ce144d6a4f7f211c36189386f0205b9fc07b1e31892228629428390f0271129538a2124e60c63248994148"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "583f5fb7af486390284f1cdcece6a42f1a15fa7fd2380e383c533c384ed3e8f18bbe8c929abda982203d5238c1c44d4d"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "b9783796a9457eed9e0c5834b5f92aa942cd15866ddeb1bad92d39bda4807497"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "c559f0de7b2549130294b784e4eb82efa3c3b6b46abddf225e8e831ef250294005953c2ac2d3fdb5514a504a7418fa11cbf18b2ac09d300433ec76299f99dd7b"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "MPL-2.0-no-copyleft-exception",
+ "url" : "https://www.mozilla.org/MPL/2.0/"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.openmuc/jasn1-iec61850mod@1.10.0?type=jar",
+ "externalReferences" : [ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.openmuc/jasn1-iec61850mod@1.10.0?type=jar"
+ },
+ {
+ "group" : "com.toedter",
+ "name" : "jcalendar",
+ "version" : "1.4",
+ "description" : "JCalendar is a Java date chooser bean for graphically picking a date. JCalendar is composed of several other Java beans, a JDayChooser, a JMonthChooser and a JYearChooser. All these beans have a locale property, provide several icons (Color 16x16, Color 32x32, Mono 16x16 and Mono 32x32) and their own locale property editor. So they can easily be used in GUI builders. Also part of the package is a JDateChooser, a bean composed of an IDateEditor (for direct date editing) and a button for opening a JCalendar for selecting the date.",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "0a0863943cf89741c7a0c2721027446d"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "180cf82b37b0c1324e7de33bd0114be7d86678cd"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "284fcfbb7938d5b85bb0f540c712fa042521a4c50f4a5d47da02ba19bff291eb"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "612a8bce9ad14474fdd163ab0f8e95e4b6f5318b405751c650143b4d18613de7e03355d022823a9971188fc90586b6c3a525730d58622816968a8fb97f7a6a26"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "17bb0d73a146352c95daee35656856d663d68bd25874edead4e1ebf3b206b7911501e0016941800d8b6e993cad342961"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "650e79914b21a5c5bbe4da322e7985ffa386da1736fc24f1ff891402389c646790aca2e983811869abd2a35339372444"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "0bb0129e2a8af16e05396a9821b315d3ceb1e056c442c3f17480be84f1d92899"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "27c418c1433b9c668a49214390b957b49839832f118e6633e753b391177f5c2be06b30fd833c22fcf1eb6d3bcb284f7442bb3f3460de0c5cf8bd5c6968f13c4e"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "name" : "GNU LESSER GENERAL PUBLIC LICENSE",
+ "url" : "http://www.gnu.org/licenses/lgpl.txt"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/com.toedter/jcalendar@1.4?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "vcs",
+ "url" : "http://www.toedter.com/en/jcalendar/"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/com.toedter/jcalendar@1.4?type=jar"
+ },
+ {
+ "group" : "io.cloudsoft.windows",
+ "name" : "winrm4j",
+ "version" : "0.12.3",
+ "description" : "A WinRM library for Java",
+ "scope" : "required",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "4949cdb744abfc3838e995bc2a69f4f0"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "a8b26482373f7ee758b89f29e8f48c1f7471dbe4"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "ac6ce779e904ee8bbe8e2bc14eb091b5f7e80295bbbfe6a7a5cff0654a70022e"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "87844303e7157ec566edd25a9ec17a2aa83b5488ddaf76af8a870f3b1e30c80b3f7074dfbe2413527bfcb40f2df9b1dea7d6f5b5fe6580ebb7163b30e7425b5c"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "29535bf0ad7661759bfd0594766ecb08d86197410291bb06d5bb66d36db611148492952608e4ea93dae4da897bc9adfe"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "6ac94f4edd502a12f4061de3c3dee1c10831ee42689e055c019fa78c54855a81425f5130ceb513b483127a8000717ac7"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "71d9ede5a988b729015f7bd279948dd9f47e24c1bf7948654bc1ef4b2541248d"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "26cf90162b63d8ef45ebad69dae26a43178ab2bc5566bb16f2b0701acc78daf02ac3ce541717629bd25b14e32671cb8baa85b4966ec177edd00d81baa5e0535e"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/io.cloudsoft.windows/winrm4j@0.12.3?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "vcs",
+ "url" : "http://github.com/cloudsoft/winrm4j"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/io.cloudsoft.windows/winrm4j@0.12.3?type=jar"
+ },
+ {
+ "group" : "io.cloudsoft.windows",
+ "name" : "winrm4j-client",
+ "version" : "0.12.3",
+ "description" : "A WinRM library for Java",
+ "scope" : "required",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "38fe4783e6100373582d0f08b128d831"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "376f872486db6cd3c9e933efbbe69316906e0fd4"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "7b8040d9f14afd1375ee4d13086ed8c73f1a031c95bf0a8322b2675d3d25fb0e"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "13a20f1a882a1b8c2d574db9a8466c079dcb0e7c64dc38f02153ee4b1a1be271d5193002c4395bb3ee3f6efd6aa13ed22cc8490298efad2ceb57e27d56acfeac"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "6fd5f91317c5c38e105ee9372a74758e6b4ae06cf6f2b95abcc2176a01bebbe29b48befa8a2c7724a9b6dba99432fed7"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "a900e0504f0ad605e93745740ceb47f7958ab71a7d0b1d0d1bbf5ba0accae6b57990823c8ae9738fc049667c3ff3d9c4"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "c7617a340be7c090eead8d841979ca94b928373694045ac4e7dfb74a4e307786"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "34c41a322285255f85d30dcc5d33c41dc07f0d202f349352866f2ad699ea3e54ef45fdaf1237bbb1cb32525269073f0ace4aba2eedda91a9825aa91a62e45d5a"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/io.cloudsoft.windows/winrm4j-client@0.12.3?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "vcs",
+ "url" : "http://github.com/cloudsoft/winrm4j"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/io.cloudsoft.windows/winrm4j-client@0.12.3?type=jar"
+ },
+ {
+ "publisher" : "The Apache Software Foundation",
+ "group" : "org.apache.cxf",
+ "name" : "cxf-rt-transports-http",
+ "version" : "3.3.9",
+ "description" : "Apache CXF Runtime HTTP Transport",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "6642a02ae751bed1554e50b216c14b53"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "ed3cd6f670641d352dea21405649d03f587c9b43"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "01ac41fa9e9db5f26323df9f1fb58eef712355cfab789b27b2017a8713d2f45e"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "aeca9e8fddbc77a25a9dfb684fa25f5cc8549ba5ec8b8c3530058739658b62a8c7d9a698d54eeed90e6129360501ffc0282bf511c16054f6856d35ef49430f6c"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "94ad43cd7f3cb6bbc5667b02f512ef7a2e0f703651e4aca285792348f23e4d6f69ab8486ef24a56aa75d0a111aefa9dc"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "be7122b4feb2db23ef1bf87f669bdf3d3e9ee8b2054f17c9efcab95194b0d8f402097fadb716b16f30b4faf5e0e275bd"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "45cc96119f01dbacfa64b73c8fb3ea18aac8cd9cb91303357190bdecb9f253f8"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "92ff0ad63a44c9f4e37f2baeb31c401293e5b6c7655827a685e6b04cd11f6a7729150849f7b91bbf981451d208a72e0afcb947b5fcf6e1f6a591ac23f091cc68"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.apache.cxf/cxf-rt-transports-http@3.3.9?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://www.apache.org/"
+ },
+ {
+ "type" : "build-system",
+ "url" : "https://builds.apache.org/view/A-D/view/CXF/"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://repository.apache.org/service/local/staging/deploy/maven2"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://issues.apache.org/jira/browse/CXF"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "https://mail-archives.apache.org/mod_mbox/cxf-users"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://gitbox.apache.org/repos/asf?p=cxf.git;a=summary"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.apache.cxf/cxf-rt-transports-http@3.3.9?type=jar"
+ },
+ {
+ "publisher" : "The Apache Software Foundation",
+ "group" : "org.apache.cxf",
+ "name" : "cxf-core",
+ "version" : "3.3.9",
+ "description" : "Apache CXF Core",
+ "scope" : "required",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "841dd1708759bff970318618cd027fc8"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "fef0312fc53fdcc0d90fa5ba454bb254e4e49fd4"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "05e57d0f499cf6b3e5c8ec53276722ee976db49123b86a85a4659f2ba621b9b0"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "7dd3fd770b4d800860108e86d7336113c120d1664b1974bba640c135d164414872d4ce9915163760167060c5d7bf0a156752bff94255482116448c00586d45c9"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "e375af54a6931c63d036648dac6581dc2f45e80150446bf0e5eb78b87e575394ed8f129442ce536b9cd51c304a85c91a"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "5bba3d675604c5432e90eafaa3ab65028ff2abe9206af1dde9a172bbbd417e0a7f64debc16e62e9b870a4dc03db1b3c6"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "4a2c31a93e64c4b2c145e3139db17a62c514811a4fbd962404459a70f6615e12"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "2a2f42144f3e56e0c5dcc93ed351aded21c1478340a295dd4989c1a24632766057663206513785eb8a02253cc53e746b7ded646ec4c925465ce531a912ee082f"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.apache.cxf/cxf-core@3.3.9?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://www.apache.org/"
+ },
+ {
+ "type" : "build-system",
+ "url" : "https://builds.apache.org/view/A-D/view/CXF/"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://repository.apache.org/service/local/staging/deploy/maven2"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://issues.apache.org/jira/browse/CXF"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "https://mail-archives.apache.org/mod_mbox/cxf-users"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://gitbox.apache.org/repos/asf?p=cxf.git;a=summary"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.apache.cxf/cxf-core@3.3.9?type=jar"
+ },
+ {
+ "publisher" : "The Apache Software Foundation",
+ "group" : "org.apache.ws.xmlschema",
+ "name" : "xmlschema-core",
+ "version" : "2.2.5",
+ "description" : "Commons XMLSchema is a light weight schema object model that can be used to manipulate or generate XML schema.",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "8cbc8d8b10fb67051a17eaf94bee5a9d"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "789b4ad32ad7ff021c7731fa43d324c0ce8105f2"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "803194d9877110ea2ca795b0b16b13c89851f631d5c601ab5ef9d8ec7e1b0ea6"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "1eb699b43dc25df52298859fa603445dbd3fb2892694c5c931207cfb5f09a075440912a556eae130f19e1008b0ff53e052a8dcf7df52ad0101b402bbfd0d5b62"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "37d7c8931976082cb256630a8a795042a3b300c996c51aa65eb63fc9173c2c98ff7936249a97590a39234512bbd6e594"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "7ba43a0e53ba5feb95137487647b1ce642cf01a38a785957d82f8be7fcd30b222c8a637fe6fc3762f2d53d98de89115a"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "b9ddf38e1e6c6f14b2db5da0190a955e1a33ee223dcf8ceba1361805faf29161"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "c5adac90dfd591d8fca6b43ca7e20e0acda8c8396e3f162a0ff0c06ccb261d82853b227b03921482da8795d9af971bf9cbb284892bb0a466cff4b57ef8b1af89"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.apache.ws.xmlschema/xmlschema-core@2.2.5?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://www.apache.org/"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://issues.apache.org/jira/browse/XMLSCHEMA"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "https://mail-archives.apache.org/mod_mbox/ws-dev/"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://gitbox.apache.org/repos/asf?p=ws-xmlschema.git;a=summary"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://repository.apache.org/service/local/staging/deploy/maven2"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.apache.ws.xmlschema/xmlschema-core@2.2.5?type=jar"
+ },
+ {
+ "publisher" : "GlassFish Community",
+ "group" : "javax.annotation",
+ "name" : "javax.annotation-api",
+ "version" : "1.3.2",
+ "description" : "Common Annotations for the JavaTM Platform API",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "2ab1973eefffaa2aeec47d50b9e40b9d"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "934c04d3cfef185a8008e7bf34331b79730a9d43"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "e04ba5195bcd555dc95650f7cc614d151e4bcd52d29a10b8aa2197f3ab89ab9b"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "679cf44c3b9d635b43ed122a555d570292c3f0937c33871c40438a1a53e2058c80578694ec9466eac9e280e19bfb7a95b261594cc4c1161c85dc97df6235e553"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "fc0058495e54efb6e05a34e3ff422e7c8347bcc77d6d9b87e9253424968dee6ef6a215c318d7e54f8705276be81f0682"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "ed6464b715de6ced0d9981a3f28140824946a4b7a02ffaff6116c833bb36e8f77a6282ce63c0d82cfe841d4fd6916891"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "ecfc9bef24ae28cf94c6775ecf6e2086d90a25d8d5476a4f6bb24001601b6cd0"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "f2b333527faedf504f60aa70a3d491972fa76f7e61e6351027f74613f41001157656824fe312b6e1df6dc4979704fe2a745b618d5368a97fe0bf8749739de9e2"
+ }
+ ],
+ "licenses" : [ ],
+ "purl" : "pkg:maven/javax.annotation/javax.annotation-api@1.3.2?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://javaee.github.io/glassfish"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/javaee/javax.annotation/issues"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/javaee/javax.annotation"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://maven.java.net/service/local/staging/deploy/maven2/"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/javax.annotation/javax.annotation-api@1.3.2?type=jar"
+ },
+ {
+ "publisher" : "Oracle",
+ "group" : "javax.xml.ws",
+ "name" : "jaxws-api",
+ "version" : "2.3.1",
+ "description" : "JAX-WS (JSR 224) API",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "5a6f94e95cc2054bc840cc2f2fedc5d8"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "15e46dba25b1f767a3f517721badf6cce8dbb13d"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "a447f84f95658ea68b347acffe156f7700c62a37ede15d81e5298fb8e5fe6dcf"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "f6795f2e1e72902c29eb976313dbb423d46d22f665846d20ad2ac8f486d32367566e0d81d2ba4614f65c80298b8bdc3fa37de81d7b6c4341a1e228dc8c2b09a1"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "651a5c020788ddb9aa81683dfad98117b00bf9f46c003f502849ab3a8c99453ae9a1f1f39617a951ea8fc39e5d01aadc"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "ee746963571fafb07c2ecb1752a84a6f749c2257e0ac70402596adf674079b88d7d41e0ebdee9981cfd38dc8cf940474"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "9888bb90770c67ee108a02b3a608b8851a55b83a5ee196b6c16cc4365189ec73"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "3612fb28e8b88a50f7bdcbf5d3bba4702484f2d2446a6699587d91fdfbae7314b5b60d1325fb183739b589092a9772def9b6400e394644782c07d8e89415668f"
+ }
+ ],
+ "licenses" : [ ],
+ "purl" : "pkg:maven/javax.xml.ws/jaxws-api@2.3.1?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "http://www.oracle.com"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/javaee/jax-ws-spec/issues"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "https://javaee.groups.io/g/javaee-spec/topics"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/javaee/jax-ws-spec"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://maven.java.net/service/local/staging/deploy/maven2/"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/javax.xml.ws/jaxws-api@2.3.1?type=jar"
+ },
+ {
+ "publisher" : "Oracle",
+ "group" : "javax.xml.soap",
+ "name" : "javax.xml.soap-api",
+ "version" : "1.4.0",
+ "description" : "SAAJ API",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "fb8bbe2cdda8ff7bd945fcb9f0f6b61c"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "667ef2eee594ca7e05a1cbe0b37a428f7b57778f"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "141374e33be99768611a2d42b9d33571a0c5b9763beca9c2dc90900d8cc8f767"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "359293d81529080015f79663ed8adb4a0245de99aa8ab427f57cceaa222622ada80763728fd9473eacd0e70bd24d1a5e8737ded0ade7c510b73ecd30da284109"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "46ffb2747c3c2c7b0209d049dec81534b82c44399a133b1dcae2859a5fe1e3189691e216ab0820101f177eb49140e095"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "6c2523c8e31520b443c72227666556300cdd17b76b618995d317a422de65cf8583fb96c382d06cfa1754016135e0a158"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "b2f0df2273c7bdec54edb2033e8d5e424013ace46ccfff5e63314365d8ce873e"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "3f86e51df021964f66c3b4c5a6f73c2b4e799f341b292feaa9c77f3c34ae5599466af31945aa4f537c072a214a8bcc2a14e8693f8fce94ad44391bcb97c746a7"
+ }
+ ],
+ "licenses" : [ ],
+ "purl" : "pkg:maven/javax.xml.soap/javax.xml.soap-api@1.4.0?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "http://www.oracle.com"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/javaee/javax.xml.soap/issues"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "https://javaee.groups.io/g/javaee-spec/topics"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/javaee/javax.xml.soap"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://maven.java.net/service/local/staging/deploy/maven2/"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/javax.xml.soap/javax.xml.soap-api@1.4.0?type=jar"
+ },
+ {
+ "publisher" : "Oracle",
+ "group" : "com.sun.activation",
+ "name" : "javax.activation",
+ "version" : "1.2.0",
+ "description" : "${project.name}",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "be7c430df50b330cffc4848a3abedbfb"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "bf744c1e2776ed1de3c55c8dac1057ec331ef744"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "993302b16cd7056f21e779cc577d175a810bb4900ef73cd8fbf2b50f928ba9ce"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "b4cbdd8fd1703e4b2e1e691db78fbcf2232d836f740d1821c4c191a14f9472508e27a40d06e4b6b153964af68032959c22945ba169a0ca4018b7748162f420a6"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "7e64f03db2d4f9bacde713ca8aadfcf55e327d92b3cfa54b8cb2f2ffa0cc478d3c7e16f23230ae8266f0dace035142d4"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "b41aa6abfccc16e1f21760b4b3dbec7422f917fcd0c072d109c3024b1c40793820820940dfe07bfa50e00b47c3a0d504"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "ab6207acdd72036b3a5c6e647776b7466e089212602962d87eeb2ac1845508a1"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "e9fea84495f286e0f0ec1de6d002cae9e4676b0d2a9ac4706d155ac6d5ed515a76f3fcf0b8c22161f3cb456e048cce9171e3e42edc83888776173c8e2004a035"
+ }
+ ],
+ "licenses" : [ ],
+ "purl" : "pkg:maven/com.sun.activation/javax.activation@1.2.0?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "http://www.oracle.com"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/javaee/activation/issues"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/javaee/activation"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://maven.java.net/service/local/staging/deploy/maven2/"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/com.sun.activation/javax.activation@1.2.0?type=jar"
+ },
+ {
+ "publisher" : "The Apache Software Foundation",
+ "group" : "org.apache.geronimo.specs",
+ "name" : "geronimo-ws-metadata_2.0_spec",
+ "version" : "1.1.3",
+ "description" : "Web Services Metadata 2.0 API",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "7b87d27ff907a4ed84fe8a0a209b7257"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "5b6aa041a37145d6deedd92c66b3a266d4a601a1"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "905806340528726b2d1a53a82024442ab31b95a6f730750f0720ded806f888a5"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "047790eb209aacb4ba1f1976eea0176050d74befe30c34fd174a4a9ac9e0604a500bf5af26b25f4ecc11d644e64eed4134a5ae2c1969852522cc674920bd7a41"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "1c6e9e8189c4fb00bce6992c483b57196f6cea27f3a3a2c79fb5c867a39ef23659f6ea998fe50355a7e3d886582f3a52"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "a1c4fba0538447d9461f57844ac2afbf97c75539526d37ea3beb840fe2ce2a47731e610116cdf3484a595ad906a57176"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "4a849268bcd9845ce1fe60c795c65d50633f5047569e4c4a53bd60b783ca62a4"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "d8cdadaf35428b85020f03c01a5e102801615f3a1f4d6b968951565dbafd720e7f05b7089a79d7a293c8c5d000a9d03251a0d50dc2ca51349df5713147c3aa41"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.apache.geronimo.specs/geronimo-ws-metadata_2.0_spec@1.1.3?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "vcs",
+ "url" : "http://svn.apache.org/viewcvs.cgi/geronimo/specs/tags/geronimo-ws-metadata_2.0_spec-1.1.3"
+ },
+ {
+ "type" : "website",
+ "url" : "http://www.apache.org"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://issues.apache.org/jira/browse/GERONIMO"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "http://mail-archives.apache.org/mod_mbox/geronimo-user"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://repository.apache.org/service/local/staging/deploy/maven2"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.apache.geronimo.specs/geronimo-ws-metadata_2.0_spec@1.1.3?type=jar"
+ },
+ {
+ "publisher" : "Oracle Corporation",
+ "group" : "com.sun.xml.messaging.saaj",
+ "name" : "saaj-impl",
+ "version" : "1.5.3",
+ "description" : "Implementation of Jakarta SOAP with Attachments Specification",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "9c3bd20b7350f99f18f8c38fbed90199"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "1cd4aa51ea7a8987fe930083e3cd05e2ac72505b"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "21d451aa7dbe1254388ecc4e5ea71aabbc519c7d7344c9d93e9f79954f38b32b"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "de46ee6d6e294954df3cac45dd7738490592478a240ce335e4f12a28fbac97c3728cf9b06bd87a1c295fe44a03fecce0ec50fb1a438a1180f285c10e80726fd2"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "3efe236526171d9797f447525f7e814c08870eaf80df9434e58b6058c8b3b3eec654a165270e282e83364d280865f9bf"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "af04a963878dc17c290f126cfc11bc177dd2814df41790acb22cad81ca7c31f1a894862883127989a94922c7fecc3b7d"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "d1cac8bb371bd03a8980c79a3103fe569e51661ed97c4963381cb8dd0615f42c"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "d746b9d7e892a2a49624c066610096858e0e8d93bc6613f470a2c77ccf2ffd4bd4fa131c33cc5ab7e765940e66a2dd201379f2199352a10381b129e585dde3e9"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "BSD-3-Clause"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/com.sun.xml.messaging.saaj/saaj-impl@1.5.3?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "http://www.oracle.com/"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/eclipse-ee4j/metro-saaj/issues"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "https://www.eclipse.org/lists/metro-dev"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/eclipse-ee4j/metro-saaj"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/com.sun.xml.messaging.saaj/saaj-impl@1.5.3?type=jar"
+ },
+ {
+ "publisher" : "Eclipse Foundation",
+ "group" : "jakarta.xml.soap",
+ "name" : "jakarta.xml.soap-api",
+ "version" : "1.4.2",
+ "description" : "Provides the API for creating and building SOAP messages.",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "d19eb8a4a5401296985db733868425e0"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "4f71fa8ca30be4d04ba658339df3c927fa21209a"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "0b2e9db574869c09b18e7fe87482be2e4e14b3f3cc8207646595806eede77706"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "640b1ad955bf9283d5c557de7a566bc4d100c8f6580e97ed4bcf24abe104225db6246fff18fa13932b3c45c877c6d560f7778eb115e6bd339768766f089901ce"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "568580a4936eca8c4afa1e823c72579b010f77d7d7af613b92483dbb00f0d380f508057281e3020c68455f82d5c8997e"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "6c26b47985d5e8623c0b9cd38bbd1828c84004fe82237528e779069ecddb2fed23a8b93a009c641f6fb640e1d45a1b51"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "81ca7380850de707ccc791655de78e46b73fac45c6277fc283925c99f894de57"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "08e78282a1aa093c3673d3417d593b6fd962db3ea10457ee4f19d2f242ea5876b68dbe30b471d4b2e20f3d90c77ef71430975e52ae879f1f91040aa87b5478c4"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "BSD-3-Clause"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/jakarta.xml.soap/jakarta.xml.soap-api@1.4.2?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/eclipse-ee4j/saaj-api/issues"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "https://dev.eclipse.org/mhonarc/lists/jaxws-dev"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/eclipse-ee4j/saaj-api"
+ },
+ {
+ "type" : "website",
+ "url" : "https://www.eclipse.org"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/jakarta.xml.soap/jakarta.xml.soap-api@1.4.2?type=jar"
+ },
+ {
+ "publisher" : "Eclipse Foundation",
+ "group" : "org.jvnet.staxex",
+ "name" : "stax-ex",
+ "version" : "1.8.3",
+ "description" : "Extensions to JSR-173 StAX API.",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "f6d943e74064cc1e7986236699d6cd04"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "4d69b68ee007aa15238cd4477392068b32747df3"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "bee08da10bbc481418a1af70b9e9a80321b745bfb4dbdebbe98c1aa17c45caf8"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "fb78de98748cfc5bb8326f324c7ac408552a19cec55278fef7900f31595215b85cb3ca31910714bd33eab695557ea550e154acf5919c0d56c7ea91755ae2c3b0"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "a3b732402d31cc5b742491cb86ae551b237ef82e58ff287b34885578a969466bc0b36618325814d54a9669e2e0467cbc"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "ef34e014b2db5eb7948d175eedb1092f31099fcd0202cd332aef3591850d212d393c61ebeba0f29726ce20522ab167cb"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "e6c04ea88f87f34f9acf3c204f355f83ad754f5aa06a8f86a502b44f29549166"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "bb1330140ff310519c2a7e37ebaca8a3c29ebeb8de3e6b29edb591f4d8dc8177d350fccde6bc3d5dea5793de1aac6054ca6b132f4d4bac745e17176debc2ea35"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "BSD-3-Clause"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.jvnet.staxex/stax-ex@1.8.3?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/eclipse-ee4j/jaxb-stax-ex/issues"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "https://dev.eclipse.org/mhonarc/lists/jaxb-impl-dev"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/eclipse-ee4j/jaxb-stax-ex"
+ },
+ {
+ "type" : "website",
+ "url" : "https://www.eclipse.org"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.jvnet.staxex/stax-ex@1.8.3?type=jar"
+ },
+ {
+ "publisher" : "JacORB",
+ "group" : "org.jacorb",
+ "name" : "jacorb-omgapi",
+ "version" : "3.9",
+ "description" : "JacORB OMG API Stubs",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "6dc650cf37bcf15dcc6a2f6e745aa9bf"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "0ff5bf7ba180c5534191ac9a02e7d6937748bf36"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "247f565dfd4b0c1ee54b1e0a6288be84fc66ae961c34715171ca2867c6857447"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "a8b17c3b3f7150b760f8375ba54ef2c826fa0e5cf96a7f84d7f409496df31628f27cbb6449a8114b9b5485bb950319c64d6bcb52f7db8862bb101890a55c0328"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "86a076941587a2a23d49fb4af639380132895160c58e9d48a6deacea9b761d13f4130ce65ffd6a4df91a75f046013f8a"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "6a0739165a89f887fc1d9436816cc72bc27fb6491525497235fc649e45853d5f8aa63d2bef1be8f14b06d48a1b736915"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "a416b222bdd96907bea007389d9bac7ac29497b375ab96bfbd27bc48319cb5a2"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "dcd9a56dfb4cd9d062253a41dcef80f59e037afee155d75bae2ffb29a4037dd70df00f75bfb0af182823e517316015f4354a2a875bf10a5ff11ac7c36905c63e"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "name" : "GNU Lesser General Public License",
+ "url" : "https://www.gnu.org/licenses/old-licenses/lgpl-2.1.html"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.jacorb/jacorb-omgapi@3.9?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "http://www.jacorb.org"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "http://www.jacorb.org/cgi-bin/bugzilla/index.cgi"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/JacORB/JacORB"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.jacorb/jacorb-omgapi@3.9?type=jar"
+ },
+ {
+ "publisher" : "Apache Software Foundation",
+ "group" : "org.apache.geronimo.specs",
+ "name" : "geronimo-jta_1.1_spec",
+ "version" : "1.1.1",
+ "description" : "Provides open-source implementations of Sun specifications.",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "4aa8d50456bcec0bf6f032ceb182ad64"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "aabab3165b8ea936b9360abbf448459c0d04a5a4"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "3a0c3c1bbc2efe8383969574922791959670ef547d6c897496915617025c3023"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "ee10f942eda7199a522aa0838ad69c9b58117580bd60185b4c01bfc43913fd485154b1b3d437b0a361d1bed8a18974c84f5bdf1cb27ed9bc18fe33fba4d8f1f8"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "56f9ad1bcf3f0c3d9ed9c6c372274a47e046ad88335c842f2959c95646eebc14d0ca68562d86a53b8ed6fd56613297bc"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "64b62186232c70ed56c386cfe2eefb45345c8a39f60ccae6b41c0b1664731b77a047a02b7c888ec1ff68cb2a2c2b8a90"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "a8093bd9834f683448f2f01ea33383ad27572ff09f9c29bcef1ecf43d1d33c7c"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "aeb00105ed515e0127fc391fa86b3e805819047b6aa42963c0b6d1bbf23216c26efd7152655d18d428b3965a2bdd6695aaca8d261030841b661df539f96f9d7c"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.apache.geronimo.specs/geronimo-jta_1.1_spec@1.1.1?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "http://www.apache.org"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "http://issues.apache.org/jira/browse/GERONIMO"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "http://mail-archives.apache.org/mod_mbox/geronimo-user"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.apache.geronimo.specs/geronimo-jta_1.1_spec@1.1.1?type=jar"
+ },
+ {
+ "publisher" : "JBoss by Red Hat",
+ "group" : "org.jboss.spec.javax.rmi",
+ "name" : "jboss-rmi-api_1.0_spec",
+ "version" : "1.0.6.Final",
+ "description" : "The javax.rmi and javax.rmi.CORBA classes",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "c7ae7add11a83cbfee9950ab41d1b06b"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "91c0dd9795b90a040bbd3eb591ce4f80bf084caf"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "07615653320a010a648d164e77751daddcfea5602148aa4da2f052bc6af0689e"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "7c4d42e4667ac945cb4a12465cf33b4a546e901ed9dc887113521226de3cdcece383539efb36b2a354911e558a998ef3c615af23e07db809e3b9a601f07f9160"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "1db721c31ee3823afa8cba00836fe90fd101bf4eb59aefc62168de914494b077b337d4b77ddc73bba5e77d7411e8083f"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "b7225ba4cc04a86fa6a8cb69a354334087c281849ed911d9d2cd47b6f9a2f6a0be9ac2a1658caf79e0d9c5bd434e48bc"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "c882e0e97fbd3cbe6a51442f01475d1bcb05abdbb144f26e7d119daa0c586400"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "c6faa07271a730b8b93480c389202c9e25c58ba9eb0c3da85bb26ca724d7ecd8feccdce5f91f20fba535034bf5a6caf1559cfa3b4858b3af4ecbd1425e0f9579"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "name" : "lgpl",
+ "url" : "http://repository.jboss.org/licenses/lgpl-2.1.txt"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.jboss.spec.javax.rmi/jboss-rmi-api_1.0_spec@1.0.6.Final?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/jboss/jboss-rmi-api_spec"
+ },
+ {
+ "type" : "website",
+ "url" : "http://www.jboss.org"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://issues.jboss.org/"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "http://lists.jboss.org/pipermail/jboss-user/"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.jboss.spec.javax.rmi/jboss-rmi-api_1.0_spec@1.0.6.Final?type=jar"
+ },
+ {
+ "publisher" : "The Apache Software Foundation",
+ "group" : "org.apache.cxf",
+ "name" : "cxf-rt-transports-http-hc",
+ "version" : "3.3.9",
+ "description" : "Apache CXF Runtime HTTP Async Transport",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "6d2645198151fd3fd9e1a3ac2c60303b"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "bf4f81e88bd861a334563fc634af71a340226da4"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "3ec3267d52174c44e37d35fb70730a7ab81d5e087c9736be0ab782ce2b39e3ce"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "e1e08d0c1330c205726515442e635fab3a67c0326e82842687769ce417bf4a483d635a60a569bcad4b5152a72023e79f5d8fce8563ea89709b6b90c8dbf532f0"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "0f7ebf48ff937ca089fa570b9d92885810f6d81e08a596758c4ee576b551a221f4542adae51782f215d853504bcf1674"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "4c205d52ce81ca8d68b1245dc901a12d53abef87aaeb8357d629bce2e8b6c6c4f36efa3efecc7d94142c12e68a309dd4"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "047037786a3ff9ffe32041ec7bbb800537a25a11d53a72c4e010cfc214c6d6c5"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "b43dec026bc5770931d13142051068ed554286dcbb09e40f7cf31f95177eeb34d8987aeaa13ddd626a7f3959e7f8e421955d3629b4a12dff4e1932fa6e5279dd"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.apache.cxf/cxf-rt-transports-http-hc@3.3.9?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://www.apache.org/"
+ },
+ {
+ "type" : "build-system",
+ "url" : "https://builds.apache.org/view/A-D/view/CXF/"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://repository.apache.org/service/local/staging/deploy/maven2"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://issues.apache.org/jira/browse/CXF"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "https://mail-archives.apache.org/mod_mbox/cxf-users"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://gitbox.apache.org/repos/asf?p=cxf.git;a=summary"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.apache.cxf/cxf-rt-transports-http-hc@3.3.9?type=jar"
+ },
+ {
+ "publisher" : "QOS.ch",
+ "group" : "org.slf4j",
+ "name" : "jcl-over-slf4j",
+ "version" : "1.7.36",
+ "description" : "JCL 1.2 implemented over SLF4J",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "8065610cde33ed9fd5d34367912c1938"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "d877e195a05aca4a2f1ad2ff14bfec1393af4b5e"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "ab57ca8fd223772c17365d121f59e94ecbf0ae59d08c03a3cb5b81071c019195"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "ac231ab44521bb5478742af13624db5c14aea809c3a2c13b989fba30186ba6db840f2d1b4aea54f9c1f779547b975fd042dd353f54025592774d40192bd71148"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "618704032ab3f8f87091ac797e2c9319a4b7f36a53e060695d56173b67ce9bc9e16c74cba228e758ac90e279df75428a"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "95a189173932d8080d91de8b71b9d1bca49a330db7cad9c41d51fe9514a9f6299b24e31441f06681b3dcc188807dcf40"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "7aef3380fdeae9b7a4adfa6ad69c2c92f246fcdbd4fcd3d1056ee846d8ef92fb"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "da7d1b8e5a150300e1051dda5755df64275e5822256ef624fd8a37c582cc2774aadce97f8732de52e54b1c74e28ba601d3bfc3482abb4a24f7e9f779e7e8dd64"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.slf4j/jcl-over-slf4j@1.7.36?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "http://www.qos.ch"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/qos-ch/slf4j"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.slf4j/jcl-over-slf4j@1.7.36?type=jar"
+ },
+ {
+ "publisher" : "The Apache Software Foundation",
+ "group" : "org.apache.cxf",
+ "name" : "cxf-rt-frontend-jaxws",
+ "version" : "3.3.9",
+ "description" : "Apache CXF Runtime JAX-WS Frontend",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "7a8dd340c7784d40bec22a5556c8af1c"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "f742a8e6d946f6821c5f63cc917634fd54a96ceb"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "fb019ddd46b3a9189a52800bd7ae14bed25d1033888fc67b5065353820f44c44"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "59c5adfef7cb1ee7bc2e6124f5d85dbac4732d4f2473fd16df78bd5080041648283e001792c1269f833986740e85800b770700db1726ece71283a3b44fd76722"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "00a72d00724205ce8abf5c3708ca32a1c4b5270c524be95b044b182dd9d738de7fded095d0aabb2b8f03f3d725884c10"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "d1739943210c78f2d093965a9104a9a4e2eba86e5c75d79d6a22dee5611a0ba96eeb3ae8caab1aa1ce734f42fe8e8505"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "be4c116f6a2c5866d667b7a981d4a3e2c861867cebe575101e22ca88a1a5de89"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "dc4d5660c14aa22148667ed31ce5adfc93a5584b3fbac4841909ac792cad0b3641a04ca67cb459e84fa377ecd88b12832b3e9482f8fe383089eb13c9d6fa72f4"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.apache.cxf/cxf-rt-frontend-jaxws@3.3.9?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://www.apache.org/"
+ },
+ {
+ "type" : "build-system",
+ "url" : "https://builds.apache.org/view/A-D/view/CXF/"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://repository.apache.org/service/local/staging/deploy/maven2"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://issues.apache.org/jira/browse/CXF"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "https://mail-archives.apache.org/mod_mbox/cxf-users"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://gitbox.apache.org/repos/asf?p=cxf.git;a=summary"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.apache.cxf/cxf-rt-frontend-jaxws@3.3.9?type=jar"
+ },
+ {
+ "publisher" : "Apache Software Foundation",
+ "group" : "xml-resolver",
+ "name" : "xml-resolver",
+ "version" : "1.2",
+ "description" : "xml-commons provides an Apache-hosted set of DOM, SAX, and JAXP interfaces for use in other xml-based projects. Our hope is that we can standardize on both a common version and packaging scheme for these critical XML standards interfaces to make the lives of both our developers and users easier.",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "706c533146c1f4ee46b66659ea14583a"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "3d0f97750b3a03e0971831566067754ba4bfd68c"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "47dcde8986019314ef78ae7280a94973a21d2ed95075a40a000b42da956429e1"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "eca19b8a6b04c279b7982b16f1763ca1d49b0081a8d4ca2b7419f057d22a0ec60795eb4d901c5eb25dd4a733248876aa2f522c17a6144a26c8ede9fb2f84531a"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "3eceda91a1ce0a35c490eb4c0bd94b552f96b8e5064b257435d89d65fcc2b04c706d996415efe3cf8a7413db479c3710"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "717fa1ea46c7a6265351dd212a106870c427e71de0bde251a409ee6e7dfe02c61966ef306d20cea5d8712cf7bf58d07a"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "bb83f90bc8b898878455441b3712a2bf489b6584e6685e5cb82d78cab596ae46"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "762f05d93e4f9cc95a969f8fecad13f97064897c83f4e057e84fe054601275912b68be76bb50da7e8d90b30846712b77341eb26a6405c59c07b06e223e9b027c"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/xml-resolver/xml-resolver@1.2?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "issue-tracker",
+ "url" : "http://issues.apache.org/bugzilla/"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "http://mail-archives.apache.org/mod_mbox/xml-commons-dev/"
+ },
+ {
+ "type" : "vcs",
+ "url" : "http://svn.apache.org/viewvc/xml/commons/tags/xml-commons-resolver-1_2/"
+ },
+ {
+ "type" : "website",
+ "url" : "http://www.apache.org/"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/xml-resolver/xml-resolver@1.2?type=jar"
+ },
+ {
+ "publisher" : "OW2",
+ "group" : "org.ow2.asm",
+ "name" : "asm",
+ "version" : "9.0",
+ "description" : "ASM, a very small and fast Java bytecode manipulation framework",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "e87284e4421437854ba938179cf803e7"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "af582ff60bc567c42d931500c3fdc20e0141ddf9"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "0df97574914aee92fd349d0cb4e00f3345d45b2c239e0bb50f0a90ead47888e0"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "135f0be16323936ef10a291df4e5d13ab8e488f41cc2835e9ccdddb3f6b65e948ef3b79eb12636c97815380455a32ece7fa9dd094f04b192a3e8752bbcb83463"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "d6da11983245a34ad4fc6bd25c894b8d125e8ae98b62d7130cafe483acc27d3d59598b2e4cc05930c1fed84ff819ada5"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "423ca9cf704ea268b33297e79bda67bb4b14eb27eff1910d99886846ef8f5a8dee49862e42cd95ab1fb6c52b0631222a"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "1beb0e93ad7e629c54d900dea3ebb394fb62301152e7aa39ede520f9c348bba2"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "8beb13f69f431fb921bf00d6ebd84b22cd6092aab97808aed464caad1e6863958cb32ec199f542d60d630a798ce42d0fe237cb74e97c33157fb6cefed1721173"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "BSD-3-Clause",
+ "url" : "https://opensource.org/licenses/BSD-3-Clause"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.ow2.asm/asm@9.0?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "http://www.ow2.org/"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://gitlab.ow2.org/asm/asm/issues"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "https://mail.ow2.org/wws/arc/asm/"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://gitlab.ow2.org/asm/asm/"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.ow2.asm/asm@9.0?type=jar"
+ },
+ {
+ "publisher" : "The Apache Software Foundation",
+ "group" : "org.apache.cxf",
+ "name" : "cxf-rt-bindings-soap",
+ "version" : "3.3.9",
+ "description" : "Apache CXF Runtime SOAP Binding",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "428c6bc68fa4bacf720d29dea8a96539"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "341e866d92c42461c4e7e4b8e2ccce6e869bb81b"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "556c39559cbe88bca5ad7802db070bb345f896a1f12e615e79d69d23a8854122"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "1d3b447b9c67282fb507a84f4b2ac6f795743a5105f4ed47a902fe9f930c56f30551d4c4c730ac5f75592e182ca4694b36e513cc633810158d6eb53dbcf9566d"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "4467b796d481f44d416eb5d7b8613b03477ea639284aff186eb0189b7064b7d245cb6afb01ed5ebb125ecb801f88e87c"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "a877a70fefab371d0e7fb240e89d561bf2bda0ed037ed9b7e62b625d5f683e1ac18c8ba0bf8c5a7aafd2279bc32849d8"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "d79a8fb1a57bfa5012cde36553e05e41f680b7850e61d875399e3da28af80146"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "25ba5612fc6f2cdc66cfc2ed728e3b9bf90e8de226a3cad240c59536db53d6f5d4878d4ce6ec0f68f5cb59d91fe05ed51379d0f7bca3793c0ed98f2bd2c09eea"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.apache.cxf/cxf-rt-bindings-soap@3.3.9?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://www.apache.org/"
+ },
+ {
+ "type" : "build-system",
+ "url" : "https://builds.apache.org/view/A-D/view/CXF/"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://repository.apache.org/service/local/staging/deploy/maven2"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://issues.apache.org/jira/browse/CXF"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "https://mail-archives.apache.org/mod_mbox/cxf-users"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://gitbox.apache.org/repos/asf?p=cxf.git;a=summary"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.apache.cxf/cxf-rt-bindings-soap@3.3.9?type=jar"
+ },
+ {
+ "publisher" : "The Apache Software Foundation",
+ "group" : "org.apache.cxf",
+ "name" : "cxf-rt-wsdl",
+ "version" : "3.3.9",
+ "description" : "Apache CXF Runtime Core for WSDL Based Technologies",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "dead56aa41a18ba4b39677ed4c773ca3"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "dd73db4e30d8e555adfd59f8807202a99d0d7eec"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "9843e82a91c778a2953c028dc29fdec32dc420d3de68b7bfdc7630b3ae081149"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "3c067ca731241d835500930de36cdb780201fa6f723dc3335416acc544fc630fdbefa06a5a830df65bbf7cf003b30438029fcf7c306223a18585abcab83a32aa"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "2a7260f56817dc8b2bd8ef305d0ca73de6a9f53bcd98905427cb206d5e65d4f4d6650ccf52b86dd33e60f06c44cd9052"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "910dbd712d8aab8cb39d76c0973d0d06d25c557a97669a6adf8577b24dbd5383c2d108a4c54ae6616212a79f42d42742"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "d24a6804be82a6f901e2b6c4e549b12555c602d2fc9e70a1413970b2606b9d6c"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "47635913467352d0ac723894e6711c6fef6461d6e3037aeabbe0e9f77e507c47f725e13e62f87d2664ad2c1bf67ad7289e936dbaeaeb1950bdd9b09b4f8f148a"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.apache.cxf/cxf-rt-wsdl@3.3.9?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://www.apache.org/"
+ },
+ {
+ "type" : "build-system",
+ "url" : "https://builds.apache.org/view/A-D/view/CXF/"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://repository.apache.org/service/local/staging/deploy/maven2"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://issues.apache.org/jira/browse/CXF"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "https://mail-archives.apache.org/mod_mbox/cxf-users"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://gitbox.apache.org/repos/asf?p=cxf.git;a=summary"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.apache.cxf/cxf-rt-wsdl@3.3.9?type=jar"
+ },
+ {
+ "group" : "wsdl4j",
+ "name" : "wsdl4j",
+ "version" : "1.6.3",
+ "description" : "Java stub generator for WSDL",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "cfc28d89625c5e88589aec7a9aee0208"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "6d106a6845a3d3477a1560008479312888e94f2f"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "740f448e6b3bc110e02f4a1e56fb57672e732d2ecaf29ae15835051ae8af4725"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "3779363efe4b7cf23bfc68388f3c6b5105dedb9192080f144534fcacc8a77014f9f3eb3ae1927344a267364c24deedebf25e306f80dfc293851973685cc58c52"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "19b91e5508f5e33b8d7c4ad41d3d679d34c0f7b43651f19c7962f534322e6cb768595430a115df82eaf66905a4a71996"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "ca2e435e6d94fea0b1d025f16b7b540aeb84bb5ef286139fa42c04443d5ec87b5663863a761f125dc4a8114148c89ff4"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "8429876fe0bd0d4bf98130c31856f6accccd2af5986b459689f7b5b49f4bdeff"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "915711a72ea5b1773e3336afcaed273d65283e5e93ddf35a12b8473951cfd3e1454bf782945c7da5399922dda46277054185b182136f2dbc356d43adb8afec8c"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "name" : "CPL",
+ "url" : "http://www.opensource.org/licenses/cpl1.0.txt"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/wsdl4j/wsdl4j@1.6.3?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "vcs",
+ "url" : "http://wsdl4j.cvs.sourceforge.net/wsdl4j"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/wsdl4j/wsdl4j@1.6.3?type=jar"
+ },
+ {
+ "publisher" : "The Apache Software Foundation",
+ "group" : "org.apache.cxf",
+ "name" : "cxf-rt-databinding-jaxb",
+ "version" : "3.3.9",
+ "description" : "Apache CXF Runtime JAXB DataBinding",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "bb7775b395ad93879dc3041a215fd3f9"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "f75b3c0a7a444129ce96e2c624b6f4d3204ed8ba"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "70bd9b316bb83105f1cfa6629e14bb32e0e17ffb904cca9df75eeed0750db60e"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "aa0ec4d06ef5ea95e5f1057f0485515170217ca24867e19f34a1da40a4f25f07977becea120ddbd4b45f21af37c98b8512c5e52d562cdbc677eefbba8a155af1"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "a94b444cb10f30040746e3fab33394416183650b3aaff1f5c3707ee9a7dbb4c0ca535893c9a6d90ce5ea3eb4c4db5913"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "d9f3b4422a68762cdf1666970202a9f6e047a619708afe9ac1cc591695a54e79de7d9a3427bf57d36a105674c00bdd66"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "4c387a43d3aad8b1195a02b028fa9780cf12d03bb752343cfadc6b1bc00bb333"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "46e8d014550adfa855a4df81c72e899c5d0e1dcbb78a4f8ad8db1c6ebbe166e967a00f0c7eb735f7808d7308a36b5b85742930e3b454ff5c801732a197129980"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.apache.cxf/cxf-rt-databinding-jaxb@3.3.9?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://www.apache.org/"
+ },
+ {
+ "type" : "build-system",
+ "url" : "https://builds.apache.org/view/A-D/view/CXF/"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://repository.apache.org/service/local/staging/deploy/maven2"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://issues.apache.org/jira/browse/CXF"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "https://mail-archives.apache.org/mod_mbox/cxf-users"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://gitbox.apache.org/repos/asf?p=cxf.git;a=summary"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.apache.cxf/cxf-rt-databinding-jaxb@3.3.9?type=jar"
+ },
+ {
+ "publisher" : "The Apache Software Foundation",
+ "group" : "org.apache.cxf",
+ "name" : "cxf-rt-bindings-xml",
+ "version" : "3.3.9",
+ "description" : "Apache CXF Runtime XML Binding",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "ba5bb4c79e5c41292756f24664c3b894"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "9c2c871ded810e3328e0d129fd62517b69ee9aef"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "6e56a7e9de5ed546ed6b011188dcfe5c877cf6c164862f5ad39feebea4c1b51f"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "1753f2faf4f46f33230926fbf7eb8c0fb397cd35d5c437811b273d4593d4724bb71f247355b46b5a3e72badc808dfcf4e8e5f6ebab272c1839dc0172eaae4fa4"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "4621d0574d067a3dcacfaf9df218738d47225e89c5ff84e0fa65957db9161f1ea96920df6209bd145215ef486e28b2a1"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "66235e5a1db113772651744a2edc56a34c30001f2c7791fa9004401f5fb886852e41c6633038af2fcd22c7b5ac8cbee7"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "9369eeb76c9844aab5ffef0f1b26dc615cb7ab3db7a169d9fd7dbe03a03391cb"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "4f027c10fa47051a45cb16ffff5b5e06feb4bc55cb8520dd28e5dfc317382b7adac332494f18f56d037f79b8db3ee85b7f3be70ee029b09b461c9940acd2ab84"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.apache.cxf/cxf-rt-bindings-xml@3.3.9?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://www.apache.org/"
+ },
+ {
+ "type" : "build-system",
+ "url" : "https://builds.apache.org/view/A-D/view/CXF/"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://repository.apache.org/service/local/staging/deploy/maven2"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://issues.apache.org/jira/browse/CXF"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "https://mail-archives.apache.org/mod_mbox/cxf-users"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://gitbox.apache.org/repos/asf?p=cxf.git;a=summary"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.apache.cxf/cxf-rt-bindings-xml@3.3.9?type=jar"
+ },
+ {
+ "publisher" : "The Apache Software Foundation",
+ "group" : "org.apache.cxf",
+ "name" : "cxf-rt-frontend-simple",
+ "version" : "3.3.9",
+ "description" : "Apache CXF Runtime Simple Frontend",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "49fa0ef82d16cf19245567b5d230b57d"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "15c4846255d7e778cd2d5c7c599aca87b0e2fb39"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "6f796b206b1e6f15353b441cbb43e0c8289602b79f562b434c86010559c2470a"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "959d38997f5c18ba7eb2ffd64e524399736b2878b783bd54848286497388d49872b9bc80016da955dece4128a2dfd4c929cd68307d5b33c3fcbfc4e8ab9b4c37"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "475cf6e996ecb8dccc2597d5bd0e2c9d1b70b93291d2d52c12941b8133d71314e2eb89d1b971299542969d54c3e9f5ed"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "82b1faa98855efccee9ce4a313d2d3ec70340cb31ac1a5a0c9afcbd971c48d2f589ba255ec1e473a1cd9298a5def4927"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "a2b0356c69e88e37137f9aed4bab4e8623563402b075bd466396a62e5c1903d5"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "32a0ea340039fb0fb1447659606dfd452acc5fbb823849b259dbae4435e215ef452952a01e4b3b7b5cb907af05c45027927fc8309620ff15249d96571306ebec"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.apache.cxf/cxf-rt-frontend-simple@3.3.9?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://www.apache.org/"
+ },
+ {
+ "type" : "build-system",
+ "url" : "https://builds.apache.org/view/A-D/view/CXF/"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://repository.apache.org/service/local/staging/deploy/maven2"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://issues.apache.org/jira/browse/CXF"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "https://mail-archives.apache.org/mod_mbox/cxf-users"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://gitbox.apache.org/repos/asf?p=cxf.git;a=summary"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.apache.cxf/cxf-rt-frontend-simple@3.3.9?type=jar"
+ },
+ {
+ "publisher" : "The Apache Software Foundation",
+ "group" : "org.apache.cxf",
+ "name" : "cxf-rt-ws-addr",
+ "version" : "3.3.9",
+ "description" : "Apache CXF Runtime WS Addressing",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "afd7aa09a030f7334a83402fe21e7945"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "92bf88ff28fc6683084f4c7dd7c088040d98d263"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "69fc0a25ae3f4a0bb6ec223bb71e25765393563952364e3d936444dccecdaba0"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "3c5a7788baadfd9070abeead76c80be33db37e7e5782898325595ee0f8d0d0d192116f555cc38654f84c382523b651f19ea6613e9b34dbbf7594cfce023617d8"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "5543c7d19c9c4f48e24eea1a017e6253a8ff75dbbeb509bbde917cbda3aab3d81fcfa3666061db0ea6f9be903d9b5da9"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "f4c8ef1e45618b9598867dfc85820a799548fb1a801175639dc401479a23aa3ee7aae7ff282ac8d396f2c8f133524657"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "d32a0380bf2727e6244f4312b35a3fc2cfddf3ab2064f259cfdeaa3cfa882330"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "84b096f86dc610e5a4f95bda5a62be0ef28f40ee7d10f37c143f1124a2bf97990f7e94fa400f0a4dc648a3a9da34c14a36c4cceaa985d8e3a25af607acbd1a9c"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.apache.cxf/cxf-rt-ws-addr@3.3.9?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://www.apache.org/"
+ },
+ {
+ "type" : "build-system",
+ "url" : "https://builds.apache.org/view/A-D/view/CXF/"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://repository.apache.org/service/local/staging/deploy/maven2"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://issues.apache.org/jira/browse/CXF"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "https://mail-archives.apache.org/mod_mbox/cxf-users"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://gitbox.apache.org/repos/asf?p=cxf.git;a=summary"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.apache.cxf/cxf-rt-ws-addr@3.3.9?type=jar"
+ },
+ {
+ "publisher" : "The Apache Software Foundation",
+ "group" : "org.apache.cxf",
+ "name" : "cxf-rt-ws-policy",
+ "version" : "3.3.9",
+ "description" : "Apache CXF Runtime WS Policy",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "767bd675d5c28a28713d597bcf702754"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "3cb28305723046ac8a206b03b72ec1ea06023f12"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "9522468e26b951f97ef32b86cbfc0441129841e64d99764edce7bf53fb56231a"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "dbd6f62ac8c9996d8ac29e42c7a6d1365b9d19568a3b0c138aebebb1881452b2bcad3c2a29afe69abf7aa828db782d6d5e1aa398f034c478a60f932166eb2875"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "a8cea2b861db066e78fd03eeaa6e323643e88f11bf9b5049d88eb350928e8cb30f6299c8d830ed1a4a7411994e78de07"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "4cf92c8d32c8439b31e357f1d42c87d295065b6b4868d2b389f428a1628311c198281f34e5ef2b49b8da1af9179bf629"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "a43cef4c63b1a0ee56cc73ca2d182e98e4a8068124531de0dbb3353554468cc2"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "5bd709461236c2d55b25e744c9e9bb2c416b6282130210466232be342996c24647fe118c2673ecbe9644585e6b9111d8d7f33634c7155ea0d04410ace3a15ea6"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.apache.cxf/cxf-rt-ws-policy@3.3.9?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "https://www.apache.org/"
+ },
+ {
+ "type" : "build-system",
+ "url" : "https://builds.apache.org/view/A-D/view/CXF/"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://repository.apache.org/service/local/staging/deploy/maven2"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://issues.apache.org/jira/browse/CXF"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "https://mail-archives.apache.org/mod_mbox/cxf-users"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://gitbox.apache.org/repos/asf?p=cxf.git;a=summary"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.apache.cxf/cxf-rt-ws-policy@3.3.9?type=jar"
+ },
+ {
+ "publisher" : "The Apache Software Foundation",
+ "group" : "org.apache.neethi",
+ "name" : "neethi",
+ "version" : "3.1.1",
+ "description" : "Apache Neethi provides general framework for the programmers to use WS Policy. It is compliant with latest WS Policy specification which was published in March 2006. This framework is specifically written to enable the Apache Web services stack to use WS Policy as a way of expressing it's requirements and capabilities.",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "13dd27a2bd870dfb01d67a086a8c1948"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "3a942a7921e66bb0081b16cf8f8a68e456b91de1"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "7f8c00d9bbfbaa97a97a461cdeadb20054b956acb7536782703ca5a9a330ff22"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "34c8a859e41df1a737ae0e4e2979f03d09528595cf56a940f171157f13d2994fffbf11945052643c5e56e30016340fc65111c2d813b1967f94b44823bb4318ea"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "f9d7bc7dfe75763b67801b640ae1aad488127af8dc2c0ba6dba1bee6927da059c03951f057591f046d5f3c8071ec0f8d"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "1d6fa259ad241d19e73cbdd2b8f1ec23fd146b777d2462fadefa082e37aa7da5e5f9fa863b3c225527e16c32565ddb09"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "01e1a9ba813d10536054a85fcefdacf29b46471d14504ee80210dc3d6a35c0f5"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "4cb4d1c1e03196586fc95ac9cabb1f47742bc67dd6a23232335f496fd587ca556e6ee11d099647f60cdcad30e6b6fb0b14b85f1a7a4250a507cca0a33bb366ca"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.apache.neethi/neethi@3.1.1?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "http://www.apache.org/"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "http://issues.apache.org/jira/browse/NEETHI"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "http://mail-archives.apache.org/mod_mbox/ws-dev/"
+ },
+ {
+ "type" : "vcs",
+ "url" : "http://svn.apache.org/viewcvs.cgi/webservices/neethi/tags/neethi-3.1.1"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://repository.apache.org/service/local/staging/deploy/maven2"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.apache.neethi/neethi@3.1.1?type=jar"
+ },
+ {
+ "publisher" : "The Apache Software Foundation",
+ "group" : "org.apache.httpcomponents",
+ "name" : "httpcore-nio",
+ "version" : "4.4.15",
+ "description" : "Apache HttpComponents Core (non-blocking I/O)",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "295da715492b1f7d4e38711f820e42a0"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "85d2b6825d42db909a1474f0ffbd6328429b7a32"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "44ee3edb7d5e96d3e6d00263c838af23dd2ce67554129714ea30ae447ba95b92"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "58730c69cd14d5ef1fcf39150186dd33077c08051c87c150d39561cce7f5e82dcb2ceceeb64a268b0cbafdbc605b11e1eaddf9e45574d9f010dbebbc6fbf460c"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "035c93a9323efa78196aef2c54e7b541ce63752874bf2f4d54db027fdae0f0e50b2e39eece5f1822241503555c87822a"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "a913ca42651272aad24860e5815080068eb05a7bec5bc391ca8e2a480d043ceff4d0cb78032c9197be5d849f5b5aabbb"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "10a5e095773305796825d5fb86e1252bcb5e1b52ea10478c0567ed7ee242bba2"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "561f18b2b03cdfb0e593213c91e43d896e4172a65069ffd8cca80836588e13a2c3d778d1304e6c05309a2bde4446001605d59b8d5fbb4f131f974bf4c9178384"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.apache.httpcomponents/httpcore-nio@4.4.15?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "http://www.apache.org/"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "http://issues.apache.org/jira/browse/HTTPCORE"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "http://mail-archives.apache.org/mod_mbox/hc-httpclient-users/"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://repository.apache.org/service/local/staging/deploy/maven2"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.apache.httpcomponents/httpcore-nio@4.4.15?type=jar"
+ },
+ {
+ "publisher" : "The Apache Software Foundation",
+ "group" : "org.apache.httpcomponents",
+ "name" : "httpclient",
+ "version" : "4.5.13",
+ "description" : "Apache HttpComponents Client",
+ "scope" : "required",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "40d6b9075fbd28fa10292a45a0db9457"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "e5f6cae5ca7ecaac1ec2827a9e2d65ae2869cada"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "6fe9026a566c6a5001608cf3fc32196641f6c1e5e1986d1037ccdbd5f31ef743"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "3567739186e551f84cad3e4b6b270c5b8b19aba297675a96bcdff3663ff7d20d188611d21f675fe5ff1bfd7d8ca31362070910d7b92ab1b699872a120aa6f089"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "093ac3e2dde58e34aa70309c7305eb3c9b5be2509a9293f1672494da55479a86bd112e83326746dc7a32855472952b99"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "cd6882e7868624164e460f2f3ea01466f863c0dcb902b031c656b57356f563be83b29530df41d88d634ed3d01fc9964d"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "710b1d8d7dae0b8e4270756694ca9c83d64965f42d3b4170c609b14d47c2762c"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "276fa6a6599dc89382d658115695cf4da6b0d39b34e9c349c17a5dbd64122eaee553bb9ed75c0378ec4a83be157c8aa39370662de3c9b8fd55ebc1dd608383e6"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.apache.httpcomponents/httpclient@4.5.13?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "http://www.apache.org/"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "http://issues.apache.org/jira/browse/HTTPCLIENT"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "http://mail-archives.apache.org/mod_mbox/hc-httpclient-users/"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://repository.apache.org/service/local/staging/deploy/maven2"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.apache.httpcomponents/httpclient@4.5.13?type=jar"
+ },
+ {
+ "publisher" : "The Apache Software Foundation",
+ "group" : "org.apache.httpcomponents",
+ "name" : "httpcore",
+ "version" : "4.4.15",
+ "description" : "Apache HttpComponents Core (blocking I/O)",
+ "scope" : "required",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "be7c67929df007fcac6c8eff5322d3a0"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "7f2e0c573eaa7a74bac2e89b359e1f73d92a0a1d"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "3cbaed088c499a10f96dde58f39dc0e7985171abd88138ca1655a872011bb142"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "f0605e4d521c6e9c7e645905687c519239fa9e2128403a515e6118b0406b503b0865a8ead197f8532186b0c9aaa4189ff5bb301d5b0cf84bd54fa2258d17551d"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "fffa9cd7434271990e20230ef9c3754f4b198958437573cdec2d4e7063147a765cb0cdf0b79a9688e81ff85dc704c25b"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "0b72d65d0c3a7d74d1baf1a2fc4e9510e64bd34f7b23f52d436621d2043d81b5395c9b05803e7471537964ac42e2fe94"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "3290e3547fd3ea688f30ba6a554c779c784bb209642ec4d48b284ca8374191b3"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "230b7196270183aaaf5e89e8d7598a3c65ac6bbede816e222e6d457fe5fca50fbe8ca2cb30ecf161bf4ddf34a08ee3a95d2f559e0aa513e9e730eeb5624b296b"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.apache.httpcomponents/httpcore@4.4.15?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "http://www.apache.org/"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "http://issues.apache.org/jira/browse/HTTPCORE"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "http://mail-archives.apache.org/mod_mbox/hc-httpclient-users/"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://repository.apache.org/service/local/staging/deploy/maven2"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.apache.httpcomponents/httpcore@4.4.15?type=jar"
+ },
+ {
+ "publisher" : "The Apache Software Foundation",
+ "group" : "org.apache.httpcomponents",
+ "name" : "httpasyncclient",
+ "version" : "4.1.5",
+ "description" : "Apache HttpComponents AsyncClient",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "5346c547bfd0da64eb3dc54be9380d65"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "cd18227f1eb8e9a263286c1d7362ceb24f6f9b32"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "0c1877489a9d1ba4fa50f6cfcab11d1123618858cb31d56afaab5afdd5064d99"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "1e33c7fdfa63f377ec4844b7744d2f8ec30dc7867136905ff5a5a6e5f94efa5b8159ba20e81f0048f48430cf63ada7411a3974a418aefa497d2b4fab3501f5ba"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "9c4cf09ffeb61bccc3b67375f401c8a96c46bdee7c77f84e3227271a635e109a550526185407869e93ede8f081786977"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "25bcc09200af70f5624baf5ddb95ac6bf46daaffb938d141f72f63ef76df8b740ba3b50104da997cfe67c34bd520fa5e"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "ddb21eeb3e1c3f00ebcf397b58d8d972cc7ab7b140e8939654bf24b8b89382a7"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "f753a8b9607f42417912c3bddeda3f189ab9f469416dafdbcd29b1df7a358aa57deba8a79a5663fdd1a4acbe35b39a48fd24f889a50e05a4726132db85699ebd"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.apache.httpcomponents/httpasyncclient@4.1.5?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "http://www.apache.org/"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "http://issues.apache.org/jira/browse/HTTPASYNC"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://svn.apache.org/repos/asf/httpcomponents/httpasyncclient/branches/4.1.x"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "http://mail-archives.apache.org/mod_mbox/hc-httpclient-users/"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://repository.apache.org/service/local/staging/deploy/maven2"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.apache.httpcomponents/httpasyncclient@4.1.5?type=jar"
+ },
+ {
+ "publisher" : "The Apache Software Foundation",
+ "group" : "commons-io",
+ "name" : "commons-io",
+ "version" : "2.4",
+ "description" : "The Commons IO library contains utility classes, stream implementations, file filters, file comparators, endian transformation classes, and much more.",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "7f97854dc04c119d461fed14f5d8bb96"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "b1b6ea3b7e4aa4f492509a4952029cd8e48019ad"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "cc6a41dc3eaacc9e440a6bd0d2890b20d36b4ee408fe2d67122f328bb6e01581"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "957a438894a196e534af9ae1e61fb21e16f273952b55a81abb8faf0b139fc031ea940cf477f81704db417d1ce6ff2d9ddd4a2cbf316903b0e2dc1aeaef24f292"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "af8a3e210cb1dd5475d497249acf1a86266077f5c7df0ded76d92467ab7f69e445f79dcfacfd7375085ad24f49625955"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "96ad8ffd01492835e0f0d0d19b0414950f487603caa7bbbed28bd3dc41721077c871eb534399aa178ed97aa01d743983"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "78a19109fbcc47fcdd9486c1906e244d1cfad3172d7497d4f0009cdf100ff97b"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "171ce4f320389faf73f95242098be01116709a9eaa88e770ef4aa63e249076dc9133f4c228809bd6989d657dabd6100d34a61232232adf19bbeea82482f46b29"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/commons-io/commons-io@2.4?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "issue-tracker",
+ "url" : "http://issues.apache.org/jira/browse/IO"
+ },
+ {
+ "type" : "vcs",
+ "url" : "http://svn.apache.org/viewvc/commons/proper/io/trunk"
+ },
+ {
+ "type" : "build-system",
+ "url" : "http://vmbuild.apache.org/continuum/"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "http://mail-archives.apache.org/mod_mbox/commons-user/"
+ },
+ {
+ "type" : "website",
+ "url" : "http://www.apache.org/"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://repository.apache.org/service/local/staging/deploy/maven2"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/commons-io/commons-io@2.4?type=jar"
+ },
+ {
+ "publisher" : "FasterXML",
+ "group" : "com.fasterxml.woodstox",
+ "name" : "woodstox-core",
+ "version" : "5.3.0",
+ "description" : "Woodstox is a high-performance XML processor that implements Stax (JSR-173), SAX2 and Stax2 APIs",
+ "scope" : "optional",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "89fb07387e448325eacc9c642e3d69af"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "59a3a7fb46a364ee383ea7e8c67c152a224b3d99"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "b2bd29c31fda49a9b28a22b9e5c2b26443bcfa99c1a28eab70ab9c7d349b5002"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "a9e981b270cef762d2077522f158287141cc47a3d2705f7d03349390bfc12e2dc33641cab6278678e7225087d8e5a9a891f396e958ea1527628d7e8edf833ae2"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "e653d5f0a2802aeb1e98e19d453850567c77fb31a3dfff41af953d2cd198d1a3fc374fb1c82f63a92bb5dd120b9f576a"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "e4608171de5487c5e33d11b46f72450f6773f650c89bead729ec0c87e34de27367b3fb739f0b8b6e476c2bfeed2bb2b9"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "5c95c04690fa6ea1614a08003e25a67cb184d4c983497ca9cd3171807e011515"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "1769c8c0efcdf1d893ba717e448b697d0c64ad1474997184f55cd65ca613b255288345dbc3e9a6dc569f07556209d6afdc2689b76d9b1b584a2d3b489767cbff"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/com.fasterxml.woodstox/woodstox-core@5.3.0?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "http://fasterxml.com"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/FasterXML/woodstox/issues"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/FasterXML/woodstox"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/com.fasterxml.woodstox/woodstox-core@5.3.0?type=jar"
+ },
+ {
+ "publisher" : "fasterxml.com",
+ "group" : "org.codehaus.woodstox",
+ "name" : "stax2-api",
+ "version" : "4.2",
+ "description" : "tax2 API is an extension to basic Stax 1.0 API that adds significant new functionality, such as full-featured bi-direction validation interface and high-performance Typed Access API.",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "5d22fe6dbb276d1fd6dab40c386a4f0a"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "13c2b30926bca0429c704c4b4ca0b5d0432b69cd"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "badf6081a0bb526fd2c01951dfefad91b6846b6dd0eb0048587e30d1dd334e68"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "4c7642993e96b6941cf80feb8ae7a285a0c6c8102d629cd265ec493bd05a6f2bab5b37979749430e0aa0625c269088692c36ed063b52e3b95e346f54e5dfa358"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "5d747ee5480365a3175d2b16cdc5763fcc476ed414134421c0dc59bcf9a63c321efd0b036ae6a6cf146e80977b326859"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "67cac327dba0b16611fd58cac746ae38ac12b19e276108f01bba7e0a1cef7a0a5b96ef1b2f3d949e10e86f0a54853d78"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "93083ae19e85f9dff5c66a08fdfb973f2cdd2d8d1f25519ff6bef94ebb1d7f22"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "f5a03f0a85b6532e386079104340101bd3baa767bfd433359bde62dd98063ba6045a594453973cec5ac4a3cf4827222cf114bcba2515cd2054602f9876874aa9"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "BSD-4-Clause"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.codehaus.woodstox/stax2-api@4.2?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "http://fasterxml.com"
+ },
+ {
+ "type" : "vcs",
+ "url" : "http://github.com/FasterXML/stax2-api"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.codehaus.woodstox/stax2-api@4.2?type=jar"
+ },
+ {
+ "publisher" : "The Apache Software Foundation",
+ "group" : "commons-net",
+ "name" : "commons-net",
+ "version" : "3.6",
+ "description" : "Apache Commons Net library contains a collection of network utilities and protocol implementations. Supported protocols include: Echo, Finger, FTP, NNTP, NTP, POP3(S), SMTP(S), Telnet, Whois",
+ "scope" : "required",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "b46661b01cc7aeec501f1cd3775509f1"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "b71de00508dcb078d2b24b5fa7e538636de9b3da"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "d3b3866c61a47ba3bf040ab98e60c3010d027da0e7a99e1755e407dd47bc2702"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "dba414cea9fb4b47dfe6d20c347bd91052185dd958996bfdd1e709f66b5fa7812ebb0dad80c47e72bcc0075b3b5526c705216efe771cac1cc53b2f7923124faf"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "da4e47cc5b90fdb04f76ec59d9e1c17dcb6c85507fa0867dbfea02ec8b7788fb9c7a8cfa13064675004805ec476f4802"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "8afdb2f0b22a357bd7bd554a8583eaf4c2ec385288abe06cf4da66d3d4af3e66bee242104a4e0252e3af7964a9c4d426"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "a031d0a8e3deff004c46b903e8a12995f80f1e161893f596bde45d5a2b06c870"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "5e55185f5cebb4763a44cb6672c181e0cf804ae3bfd90db8ba86207502ddd7bd99c6c60aabb0d1dcce8b77f9961ccf02db1f6414eeb23bbe62f5ad29a0f84c7d"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/commons-net/commons-net@3.6?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "issue-tracker",
+ "url" : "http://issues.apache.org/jira/browse/NET"
+ },
+ {
+ "type" : "vcs",
+ "url" : "http://svn.apache.org/viewvc/commons/proper/net/tags/NET_3_6"
+ },
+ {
+ "type" : "build-system",
+ "url" : "https://builds.apache.org/"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "http://mail-archives.apache.org/mod_mbox/commons-user/"
+ },
+ {
+ "type" : "website",
+ "url" : "https://www.apache.org/"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://repository.apache.org/service/local/staging/deploy/maven2"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/commons-net/commons-net@3.6?type=jar"
+ },
+ {
+ "group" : "com.h2database",
+ "name" : "h2",
+ "version" : "1.4.199",
+ "description" : "H2 Database Engine",
+ "scope" : "optional",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "f805f57d838de4b42ce01c7f85e46e1c"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "7bf08152984ed8859740ae3f97fae6c72771ae45"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "3125a16743bc6b4cfbb61abba783203f1fb68230aa0fdc97898f796f99a5d42e"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "79a256b47ddb1ec3370606a9c08022b2199715ecbbef5cb6c91e6cebfc7837aa745eb35d90be5d2991d10b006c7e475f915595ecd652c9553f39c1bafe2f1477"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "e319a2b469a656e3a31f22cda95082f1b0e725f51a926d180a668a3b5cd5766528797866b95b3b7794a8087a495e30ba"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "086d14e2970737b9f6804dcfa62d88a4e152753f265b5fbc5fa2a9cd05978e52aa1a2136681abb799fc7ba3c108d9cd5"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "4e31995d488db01cd5434f6d5e1abc57c5cf1a294f657ff8c7b67119e49a7673"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "8450836e04fed4ed6f527840a089dcd50b30d1ee1e7604b231d1aca73dfc97518d6ae7d1573945954c5af0f171cebaa40b4ee1a97426a1e6c3a5ee2d9e15440a"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "name" : "MPL 2.0 or EPL 1.0",
+ "url" : "http://h2database.com/html/license.html"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/com.h2database/h2@1.4.199?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/h2database/h2database"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/com.h2database/h2@1.4.199?type=jar"
+ },
+ {
+ "publisher" : "QOS.ch",
+ "group" : "ch.qos.logback",
+ "name" : "logback-classic",
+ "version" : "1.2.11",
+ "description" : "logback-classic module",
+ "scope" : "required",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "e13679004cc76ad5792f275f04884fab"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "4741689214e9d1e8408b206506cbe76d1c6a7d60"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "4d8e899621a3006c2f66e19feab002b11e6cfc5cb1854fc41f01532c00deb2aa"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "6df8b42396c5d3257f11fb19c280533aa28d66e647115816d4ebfd6a58c9b5adf0e098504772261b29435df75b86cb2b9a47f846ed45d770179c9d10f39941de"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "d480881d1a0d58c94aba0b719d56cd492147bc6481b67370dc7426ea7a81326af5b19f32d6a95fee714f37b90a5eed76"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "070647c93da744f04cc13ab3f1958c61a8b1e219fe221ed0bf251e4cc97563c64be323bfb3a9e2fd4839e33ded424b21"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "60c1dbe51066ffb3885673255a279e8894c89fe26f079180fa992478c1d9b03e"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "ce16fae69767bca975bec0d7dd0ceeb40c15cf034a4a949721c828a0f2c25cb9d619c4db3f986f6d9805d5b76d27b8926c55be5579522cd5ab3fa5e69bb68aeb"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "EPL-1.0"
+ }
+ },
+ {
+ "license" : {
+ "name" : "GNU Lesser General Public License",
+ "url" : "http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/ch.qos.logback/logback-classic@1.2.11?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "http://www.qos.ch"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/ceki/logback"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/ch.qos.logback/logback-classic@1.2.11?type=jar"
+ },
+ {
+ "publisher" : "QOS.ch",
+ "group" : "ch.qos.logback",
+ "name" : "logback-core",
+ "version" : "1.2.11",
+ "description" : "logback-core module",
+ "scope" : "required",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "115da115b5e66ef64e774ec35af1fb1a"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "a01230df5ca5c34540cdaa3ad5efb012f1f1f792"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "6ce1e9397be8298a2e99029f55f955c6fa3cef255171c554d0b9c201cffd0159"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "86b12a74c2a822a12ba2e9a7b0db5013803f18784a3cb1201c95d5f7872a6aa8cf06d5861a5c35777a7decc7ea26df7b4388fab3b3b71aab7274527d9b339318"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "2afd896ebe6333d99e5baa553d80b7851d8ff51c06c725267e061df81bc9a878b74a65394699ae853f9738a08963aa0a"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "43d39acc5608b60d671c000bf6114f4623d3057399142abca01b0fc2381f2191479a2f0dd74f812223b66f57fa48fd9c"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "c23af1733b972e958369a2e14372fd2b306d4f552d7ae5ff6b9dfad3c14611c6"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "c7f6357d32a3b9fd82dfbd162c3a6cbe4b4909ef530e956bcd18649b2d3624eb51c5a71fee54533a9786e87cf1ccdc693f563ef6e3c6fbff7beedbd1d670f9bb"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "EPL-1.0"
+ }
+ },
+ {
+ "license" : {
+ "name" : "GNU Lesser General Public License",
+ "url" : "http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/ch.qos.logback/logback-core@1.2.11?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "http://www.qos.ch"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/ceki/logback"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/ch.qos.logback/logback-core@1.2.11?type=jar"
+ },
+ {
+ "group" : "io.jsonwebtoken",
+ "name" : "jjwt-api",
+ "version" : "0.10.5",
+ "description" : "JSON Web Token support for the JVM and Android",
+ "scope" : "required",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "ea57d941aab0b215eda1e5b27adf802d"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "4bcf9036f62a404d6abecfffb37eae9033248933"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "dc15294d0bee3f5d9c8ee8381dcdf37457f9c33604484b1d3a438478a05a05c5"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "3fda7eff90654af3c79e05ef09d4228cb2534f3df9da3a9f1143111d1c620e3eafbda4b421c62c38219261ceee7ae99c578c7e02f0d4ada2be982542bdba563d"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "fdfdb502b2377ad22664fabce09e51caea3db58a7d66e2bea1ad3623f97ef0861dbd93a53286a4e552689ce9a9c6b4b4"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "4239ed1d9983ad903df11da847a352899a5e7ffcb9bc1080c9e7a4d0d1c28079655edea51d0834ba69d30d9244699a1e"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "d7b37180bc0cbdfb2ba6cf00858fa150bf91847d20df5d89e1e7847c16dc8401"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "3e7d7576ea9226fa6487b02d82aee06bc260945223eb18b6309230a37dce590cd10fe6d29231fa7ac42da97763a329fe587ec357dce9558a9b7f2238e0350a0d"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/io.jsonwebtoken/jjwt-api@0.10.5?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "build-system",
+ "url" : "https://travis-ci.org/jwtk/jjwt"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/jwtk/jjwt/issues"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
+ },
+ {
+ "type" : "vcs",
+ "url" : "http://svn.sonatype.org/spice/tags/oss-parent-7"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/io.jsonwebtoken/jjwt-api@0.10.5?type=jar"
+ },
+ {
+ "group" : "io.jsonwebtoken",
+ "name" : "jjwt-impl",
+ "version" : "0.10.5",
+ "description" : "JSON Web Token support for the JVM and Android",
+ "scope" : "optional",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "96b799c260221c1714d04a6cb58a460d"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "f6d6dc168128f40652ca973b212f483f0e0765e3"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "78bc9d0033a16c1a46511dcf5a75f884ffe301bed89fe7124b478080e5d97c0a"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "44a8d5d0ab1e4593199fda20f3f148f87701157bbccd1d6f8bdb4bc008a17a89d0883cd939b9d4e7e56521e8b4a8ac4aa5930ac40acdf939d4b420180a040341"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "ca93f8888ecd418ebc1c0ef7531954f12a5a9ff8e8a74720fb57a5268101c172979095bf08c6eaeb4ddb4ddea223cea2"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "b7871eae8d2ce187dea8b251a598b3c41c5037aa573846e88acf588baf66db967692887b9ec37c403ab8888fa20a16de"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "b9cc889df115af1178c02df933b130251bfaa2c8dba208b34cd30114e85ad029"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "b49a67e142c5c6decf39133b4c203814f1a0b800e7a216ab7fd13238990cdd5120171558679ae5b8dd1b401248aafb4736f9eeb39f37bda97cb81ddb97ea2fa7"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/io.jsonwebtoken/jjwt-impl@0.10.5?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "build-system",
+ "url" : "https://travis-ci.org/jwtk/jjwt"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/jwtk/jjwt/issues"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
+ },
+ {
+ "type" : "vcs",
+ "url" : "http://svn.sonatype.org/spice/tags/oss-parent-7"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/io.jsonwebtoken/jjwt-impl@0.10.5?type=jar"
+ },
+ {
+ "group" : "io.jsonwebtoken",
+ "name" : "jjwt-jackson",
+ "version" : "0.10.5",
+ "description" : "JSON Web Token support for the JVM and Android",
+ "scope" : "optional",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "d27f25d0835b54044889aa0c61c9b53a"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "eb99c1575f73a56b7adaa478b5ad140c7b105fa4"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "d2c03db8830c20384c6830b41d7547681bb65a5dcd23906d805bdd4f340edcde"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "422bf0fb33ff65aa2270df1bee08ade7ab4e9979150c6f9468aca46c315847524e3c6a6be25926ca6ac68ef6c9635a9bbd18938e28bcb7e90432675e532ca00d"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "8245e9afbbf520f6105844a33b884994128eb961ff377693d779b475a9e83254fc3229998f42c2922d6e419e0bbd08f5"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "496b35fd4d7fbae228f8be7b19b3f845b42cd74df3819ac294f314fdbb50a647f5327026c78203019c6b43fc0860e903"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "8479e3bc368ccf60cb55174802daccffee0926a0357637629c9ebff973ba1f26"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "e48caea2a593fe06ad97819bb347aa7472fc1dc3fc86298f93179b8ede03b8249e527fa15ffcaf40f9c9ee175ab59d7ef3f81253c31c84e02512219f03b68249"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/io.jsonwebtoken/jjwt-jackson@0.10.5?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "build-system",
+ "url" : "https://travis-ci.org/jwtk/jjwt"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/jwtk/jjwt/issues"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
+ },
+ {
+ "type" : "vcs",
+ "url" : "http://svn.sonatype.org/spice/tags/oss-parent-7"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/io.jsonwebtoken/jjwt-jackson@0.10.5?type=jar"
+ },
+ {
+ "publisher" : "ANTLR",
+ "group" : "org.antlr",
+ "name" : "antlr-complete",
+ "version" : "3.5.3",
+ "description" : "Complete distribution for ANTLR 3",
+ "scope" : "optional",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "88707e14f43ae2bc2f9528bc218faad9"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "5225357e50cc4597aee756de5eb4d58ffdca3e69"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "e781de9b3e2cc1297dfdaf656da946a1fd22f449bd9e0ce1e12d488976887f83"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "fb5c045bda1e4810086cd3015dd6390ddefde73cdddde7b7e615775f22b5bc76c494d7d89de0abf7355fa3ab29d3caa769ffb2d6fba81ce9662e87f671f7bb12"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "d6a1ca62975fb10b5d505ef9da4fabf7777d029e0eda3517613c80128e7848f0f4ae3a37df7ede747421eba08b50493e"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "a153d9bb3df8108ff1b1bb4375ef65a3f8d97f5171afdcfb27f3bfa10b775246b6b5eba884bdaa11d87e6baf43846e61"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "4a07ad25bba671a32a7706065e907dba2d709f5c64bcad899296193f853f9ec4"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "6918472868716156942682bc7339ef8a20acae4c4bc8d101c6135ab96d81efb955ca512f0932a0bf4af086406ac5384dd4b2bc28f8d1515ad29644cfbea4f035"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "name" : "BSD licence",
+ "url" : "http://antlr.org/license.html"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.antlr/antlr-complete@3.5.3?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "http://www.antlr.org"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/antlr/antlr3/issues"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "https://groups.google.com/forum/?fromgroups#!forum/antlr-discussion"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/antlr/antlr3/tree/master"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.antlr/antlr-complete@3.5.3?type=jar"
+ },
+ {
+ "publisher" : "ANTLR",
+ "group" : "org.antlr",
+ "name" : "antlr",
+ "version" : "3.5.3",
+ "description" : "The ANTLR 3 tool.",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "3d5331f09afc4e58f019114e29518b0b"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "254a043f13d3204f503bb6939553ede3b36759e1"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "d0a819afddbd837b278649eb7ff17b15259d5acc49c58af614f03468a291bd7c"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "3f52f4a7ec3b1037ea0acff410322aa9764757f75612da9b611a53d0e58f9987eb1666438689dce6f406b3b0b9b34d27ba590cba35529fc81e1e6d3714e7d5e4"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "269f8aa68ff58846623afbb71bb826726dd3f88405764c797258466c0a1aa870dfcbaa322cf6751323721d3771ffed61"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "5b68cde3bb70bcf52f7d5757e55379fa955d411ee9f1190afe08c520948881ad8aa754e7062d7f34811884422cda9613"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "56a0a3c79aa1785386be517a5a80a07513ee2f8ca26e725945d942f87e1c77fc"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "47acfd0ccca4614c9d6acb53e6a61ee7eaef415980a42faf5739a8a4a5f2bd95349ea0ad876aa40779d142221822c88d3526e26535abfd9cbbdcdee764aebc3c"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "name" : "BSD licence",
+ "url" : "http://antlr.org/license.html"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.antlr/antlr@3.5.3?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "http://www.antlr.org"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/antlr/antlr3/issues"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "https://groups.google.com/forum/?fromgroups#!forum/antlr-discussion"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/antlr/antlr3/tree/master"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.antlr/antlr@3.5.3?type=jar"
+ },
+ {
+ "publisher" : "ANTLR",
+ "group" : "org.antlr",
+ "name" : "antlr-runtime",
+ "version" : "3.5.3",
+ "description" : "A framework for constructing recognizers, compilers, and translators from grammatical descriptions containing Java, C#, C++, or Python actions.",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "0b5c0ce1bb9c8190e2e60401fc439daa"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "9011fb189c5ed6d99e5f3322514848d1ec1e1416"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "68bf9f5a33dfcb34033495c587e6236bef4e37aa6612919f5b1e843b90669fb9"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "7714970915d7187d7abb32610b3764305e67798d8289f8a59461ebb3bf7f26a09b933279de1cf95c14bbb60f213bf3f1af6aa8f20e75b26768223883a6883aaa"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "e2c7c6211b673413739f34a28420af990809a4ed3ef4832d12ce3910c409be42adfbf0a90b949b17f88aaf8980dd124e"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "08924b6c5772c6d588b4bf3a026c79d4cd69b19f460758e94169a72a210efe9da2d8684ea0c029008d028a8a5414cc9f"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "86a8aa88ee5c27c2f90600c9cbedece6a3ac6b8e7762543299e6af7f64729121"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "ef4d5408027ccf3db7ac34065d610d978b59ef759964301103c720a7d6d97d832aa46554ef4e8e70b469d132e870627bd050e7bd165b2385ddc98bd621b3059c"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "name" : "BSD licence",
+ "url" : "http://antlr.org/license.html"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/org.antlr/antlr-runtime@3.5.3?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "website",
+ "url" : "http://www.antlr.org"
+ },
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/antlr/antlr3/issues"
+ },
+ {
+ "type" : "mailing-list",
+ "url" : "https://groups.google.com/forum/?fromgroups#!forum/antlr-discussion"
+ },
+ {
+ "type" : "vcs",
+ "url" : "https://github.com/antlr/antlr3/tree/master"
+ },
+ {
+ "type" : "distribution",
+ "url" : "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/org.antlr/antlr-runtime@3.5.3?type=jar"
+ },
+ {
+ "group" : "com.hynnet",
+ "name" : "tinyradius",
+ "version" : "1.0",
+ "description" : "TinyRadius Java Radius Library",
+ "scope" : "required",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "a6319c1b8960a0c341a8e2a7891a3977"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "4864cd1ef8f04336f0aaf74d6b73b2d3c72ff122"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "117fa96eb024a4b6a6d90599aba370aa99d6e99979ebc2459ebd8d4f5eacf55e"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "758ff13ff8336cfe66b2353b37c8407d08d592c08d97bb7bc5c961579001eda986d159bcb9e9bb9d420e3f7b4ccbf81cb84967800d5790f71d6089ff41b36afb"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "fd09fc87c6cce74f41ed239c3219aba69761000ac427085ec573da0e29ae49b9c150b736cc0d93c2390caca5445aae3c"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "9b84e98346d46a86900a2c80e52d1029a18773416fd619c9e56f2c5d12fc09275c023453af59484732233eea93667b39"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "f0ce6dc4ea23c35f7a0443c7103e919b1443da542aef65f579e80663e744a895"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "6fd91a1b6c3962e36bea3c3635e41ce78937ae5ce42346a52269c681ee03125aceac31cc5e39220945429ecaab5842d56582872a879296a1b07ac72830abd69e"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/com.hynnet/tinyradius@1.0?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "vcs",
+ "url" : "http://tinyradius.sourceforge.net/"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/com.hynnet/tinyradius@1.0?type=jar"
+ },
+ {
+ "group" : "net.bytebuddy",
+ "name" : "byte-buddy",
+ "version" : "1.12.18",
+ "description" : "Byte Buddy is a Java library for creating Java classes at run time. This artifact is a build of Byte Buddy with all ASM dependencies repackaged into its own name space.",
+ "hashes" : [
+ {
+ "alg" : "MD5",
+ "content" : "aa9260b3a85969a1a37c192c63d07df3"
+ },
+ {
+ "alg" : "SHA-1",
+ "content" : "875a9c3f29d2f6f499dfd60d76e97a343f9b1233"
+ },
+ {
+ "alg" : "SHA-256",
+ "content" : "39200c13a72b6a3f4ec43c7b6d2fb78ecbeb25c29e986f4efa572636b39d750e"
+ },
+ {
+ "alg" : "SHA-512",
+ "content" : "55c475f428083d656dd9ed5a0872bbf34da3ef03e567dc5dffa900a83530d163c2e059cd630408c73f74077020e7dfe62d578a0f58263eeef01c9c307e044309"
+ },
+ {
+ "alg" : "SHA-384",
+ "content" : "83e4c6e1698f6b9a9c2b57c34da982aa3fecf4800445ef992421760fc31b355c9353062b43b137cd913076d5e31eff2e"
+ },
+ {
+ "alg" : "SHA3-384",
+ "content" : "b5b690877c9892e1f7964b32e8cb3fe6db536fd441f1a0508f24fc5991b8169495143cb4e503003e7db85862f920c640"
+ },
+ {
+ "alg" : "SHA3-256",
+ "content" : "e719e8af7a78247495a4bc5ae0e2d1392a1d135310701840672821162643533f"
+ },
+ {
+ "alg" : "SHA3-512",
+ "content" : "b7045faf9d3467fd9e5a865e981957fe8668d7a5d131907b108d7c5eb74247a089b4a164206a169d137b79a745a519921bdaabdcff43922191c6de60529059d5"
+ }
+ ],
+ "licenses" : [
+ {
+ "license" : {
+ "id" : "Apache-2.0"
+ }
+ }
+ ],
+ "purl" : "pkg:maven/net.bytebuddy/byte-buddy@1.12.18?type=jar",
+ "externalReferences" : [
+ {
+ "type" : "issue-tracker",
+ "url" : "https://github.com/raphw/byte-buddy/issues"
+ }
+ ],
+ "type" : "library",
+ "bom-ref" : "pkg:maven/net.bytebuddy/byte-buddy@1.12.18?type=jar"
+ }
+ ],
+ "dependencies" : [
+ {
+ "ref" : "pkg:maven/br.com.test/test-backend@01.23.00?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.springframework.boot/spring-boot-starter-web@2.7.5?type=jar",
+ "pkg:maven/org.springframework.boot/spring-boot-starter-websocket@2.7.5?type=jar",
+ "pkg:maven/org.springframework.boot/spring-boot-starter-data-jpa@2.7.5?type=jar",
+ "pkg:maven/org.springframework.boot/spring-boot-starter-security@2.7.5?type=jar",
+ "pkg:maven/org.springframework.boot/spring-boot-starter-logging@2.7.5?type=jar",
+ "pkg:maven/org.springframework.boot/spring-boot-starter-validation@2.7.5?type=jar",
+ "pkg:maven/org.springframework/spring-oxm@5.3.23?type=jar",
+ "pkg:maven/com.fasterxml.jackson.datatype/jackson-datatype-jsr310@2.13.4?type=jar",
+ "pkg:maven/org.springframework.boot/spring-boot-devtools@2.7.5?type=jar",
+ "pkg:maven/org.projectlombok/lombok@1.18.24?type=jar",
+ "pkg:maven/com.unboundid/unboundid-ldapsdk@4.0.8?type=jar",
+ "pkg:maven/org.snmp4j/snmp4j@2.5.6?type=jar",
+ "pkg:maven/org.openmuc/openiec61850@1.7.0?type=jar",
+ "pkg:maven/io.cloudsoft.windows/winrm4j@0.12.3?type=jar",
+ "pkg:maven/com.fasterxml.woodstox/woodstox-core@5.3.0?type=jar",
+ "pkg:maven/org.apache.commons/commons-lang3@3.6?type=jar",
+ "pkg:maven/commons-net/commons-net@3.6?type=jar",
+ "pkg:maven/com.h2database/h2@1.4.199?type=jar",
+ "pkg:maven/ch.qos.logback/logback-classic@1.2.11?type=jar",
+ "pkg:maven/io.jsonwebtoken/jjwt-api@0.10.5?type=jar",
+ "pkg:maven/io.jsonwebtoken/jjwt-impl@0.10.5?type=jar",
+ "pkg:maven/io.jsonwebtoken/jjwt-jackson@0.10.5?type=jar",
+ "pkg:maven/org.antlr/antlr-complete@3.5.3?type=jar",
+ "pkg:maven/com.hynnet/tinyradius@1.0?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.springframework.boot/spring-boot-starter-web@2.7.5?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.springframework.boot/spring-boot-starter@2.7.5?type=jar",
+ "pkg:maven/org.springframework.boot/spring-boot-starter-json@2.7.5?type=jar",
+ "pkg:maven/org.springframework.boot/spring-boot-starter-tomcat@2.7.5?type=jar",
+ "pkg:maven/org.springframework/spring-web@5.3.23?type=jar",
+ "pkg:maven/org.springframework/spring-webmvc@5.3.23?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.springframework.boot/spring-boot-starter@2.7.5?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.springframework.boot/spring-boot@2.7.5?type=jar",
+ "pkg:maven/org.springframework.boot/spring-boot-autoconfigure@2.7.5?type=jar",
+ "pkg:maven/org.springframework.boot/spring-boot-starter-logging@2.7.5?type=jar",
+ "pkg:maven/jakarta.annotation/jakarta.annotation-api@1.3.5?type=jar",
+ "pkg:maven/org.springframework/spring-core@5.3.23?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.springframework.boot/spring-boot@2.7.5?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.springframework/spring-core@5.3.23?type=jar",
+ "pkg:maven/org.springframework/spring-context@5.3.23?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.springframework.boot/spring-boot-autoconfigure@2.7.5?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.springframework.boot/spring-boot@2.7.5?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.springframework.boot/spring-boot-starter-logging@2.7.5?type=jar",
+ "dependsOn" : [
+ "pkg:maven/ch.qos.logback/logback-classic@1.2.11?type=jar",
+ "pkg:maven/org.apache.logging.log4j/log4j-to-slf4j@2.17.2?type=jar",
+ "pkg:maven/org.slf4j/jul-to-slf4j@1.7.36?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/jakarta.annotation/jakarta.annotation-api@1.3.5?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/org.springframework/spring-core@5.3.23?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.springframework/spring-jcl@5.3.23?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.springframework.boot/spring-boot-starter-json@2.7.5?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.springframework.boot/spring-boot-starter@2.7.5?type=jar",
+ "pkg:maven/org.springframework/spring-web@5.3.23?type=jar",
+ "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.13.4.2?type=jar",
+ "pkg:maven/com.fasterxml.jackson.datatype/jackson-datatype-jdk8@2.13.4?type=jar",
+ "pkg:maven/com.fasterxml.jackson.datatype/jackson-datatype-jsr310@2.13.4?type=jar",
+ "pkg:maven/com.fasterxml.jackson.module/jackson-module-parameter-names@2.13.4?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.springframework/spring-web@5.3.23?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.springframework/spring-beans@5.3.23?type=jar",
+ "pkg:maven/org.springframework/spring-core@5.3.23?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.13.4.2?type=jar",
+ "dependsOn" : [
+ "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.13.4?type=jar",
+ "pkg:maven/com.fasterxml.jackson.core/jackson-core@2.13.4?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/com.fasterxml.jackson.datatype/jackson-datatype-jdk8@2.13.4?type=jar",
+ "dependsOn" : [
+ "pkg:maven/com.fasterxml.jackson.core/jackson-core@2.13.4?type=jar",
+ "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.13.4.2?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/com.fasterxml.jackson.core/jackson-core@2.13.4?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/com.fasterxml.jackson.datatype/jackson-datatype-jsr310@2.13.4?type=jar",
+ "dependsOn" : [
+ "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.13.4?type=jar",
+ "pkg:maven/com.fasterxml.jackson.core/jackson-core@2.13.4?type=jar",
+ "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.13.4.2?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/com.fasterxml.jackson.module/jackson-module-parameter-names@2.13.4?type=jar",
+ "dependsOn" : [
+ "pkg:maven/com.fasterxml.jackson.core/jackson-core@2.13.4?type=jar",
+ "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.13.4.2?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.springframework.boot/spring-boot-starter-tomcat@2.7.5?type=jar",
+ "dependsOn" : [
+ "pkg:maven/jakarta.annotation/jakarta.annotation-api@1.3.5?type=jar",
+ "pkg:maven/org.apache.tomcat.embed/tomcat-embed-core@9.0.68?type=jar",
+ "pkg:maven/org.apache.tomcat.embed/tomcat-embed-el@9.0.68?type=jar",
+ "pkg:maven/org.apache.tomcat.embed/tomcat-embed-websocket@9.0.68?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.apache.tomcat.embed/tomcat-embed-core@9.0.68?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/org.apache.tomcat.embed/tomcat-embed-el@9.0.68?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/org.apache.tomcat.embed/tomcat-embed-websocket@9.0.68?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.apache.tomcat.embed/tomcat-embed-core@9.0.68?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.springframework/spring-beans@5.3.23?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.springframework/spring-core@5.3.23?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.springframework/spring-webmvc@5.3.23?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.springframework/spring-aop@5.3.23?type=jar",
+ "pkg:maven/org.springframework/spring-beans@5.3.23?type=jar",
+ "pkg:maven/org.springframework/spring-context@5.3.23?type=jar",
+ "pkg:maven/org.springframework/spring-core@5.3.23?type=jar",
+ "pkg:maven/org.springframework/spring-expression@5.3.23?type=jar",
+ "pkg:maven/org.springframework/spring-web@5.3.23?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.springframework/spring-aop@5.3.23?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.springframework/spring-beans@5.3.23?type=jar",
+ "pkg:maven/org.springframework/spring-core@5.3.23?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.springframework/spring-context@5.3.23?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.springframework/spring-aop@5.3.23?type=jar",
+ "pkg:maven/org.springframework/spring-beans@5.3.23?type=jar",
+ "pkg:maven/org.springframework/spring-core@5.3.23?type=jar",
+ "pkg:maven/org.springframework/spring-expression@5.3.23?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.springframework/spring-expression@5.3.23?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.springframework/spring-core@5.3.23?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.springframework.boot/spring-boot-starter-websocket@2.7.5?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.springframework.boot/spring-boot-starter-web@2.7.5?type=jar",
+ "pkg:maven/org.springframework/spring-messaging@5.3.23?type=jar",
+ "pkg:maven/org.springframework/spring-websocket@5.3.23?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.springframework/spring-messaging@5.3.23?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.springframework/spring-beans@5.3.23?type=jar",
+ "pkg:maven/org.springframework/spring-core@5.3.23?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.springframework/spring-websocket@5.3.23?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.springframework/spring-context@5.3.23?type=jar",
+ "pkg:maven/org.springframework/spring-core@5.3.23?type=jar",
+ "pkg:maven/org.springframework/spring-web@5.3.23?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.springframework.boot/spring-boot-starter-data-jpa@2.7.5?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.springframework.boot/spring-boot-starter-aop@2.7.5?type=jar",
+ "pkg:maven/org.springframework.boot/spring-boot-starter-jdbc@2.7.5?type=jar",
+ "pkg:maven/jakarta.transaction/jakarta.transaction-api@1.3.3?type=jar",
+ "pkg:maven/jakarta.persistence/jakarta.persistence-api@2.2.3?type=jar",
+ "pkg:maven/org.hibernate/hibernate-core@5.6.12.Final?type=jar",
+ "pkg:maven/org.springframework.data/spring-data-jpa@2.7.5?type=jar",
+ "pkg:maven/org.springframework/spring-aspects@5.3.23?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.springframework.boot/spring-boot-starter-aop@2.7.5?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.springframework.boot/spring-boot-starter@2.7.5?type=jar",
+ "pkg:maven/org.springframework/spring-aop@5.3.23?type=jar",
+ "pkg:maven/org.aspectj/aspectjweaver@1.9.7?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.aspectj/aspectjweaver@1.9.7?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/org.springframework.boot/spring-boot-starter-jdbc@2.7.5?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.springframework.boot/spring-boot-starter@2.7.5?type=jar",
+ "pkg:maven/com.zaxxer/HikariCP@4.0.3?type=jar",
+ "pkg:maven/org.springframework/spring-jdbc@5.3.23?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/com.zaxxer/HikariCP@4.0.3?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.slf4j/slf4j-api@1.7.36?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.slf4j/slf4j-api@1.7.36?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/org.springframework/spring-jdbc@5.3.23?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.springframework/spring-beans@5.3.23?type=jar",
+ "pkg:maven/org.springframework/spring-core@5.3.23?type=jar",
+ "pkg:maven/org.springframework/spring-tx@5.3.23?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.springframework/spring-tx@5.3.23?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.springframework/spring-beans@5.3.23?type=jar",
+ "pkg:maven/org.springframework/spring-core@5.3.23?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/jakarta.transaction/jakarta.transaction-api@1.3.3?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/jakarta.persistence/jakarta.persistence-api@2.2.3?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/org.hibernate/hibernate-core@5.6.12.Final?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.jboss.logging/jboss-logging@3.4.3.Final?type=jar",
+ "pkg:maven/net.bytebuddy/byte-buddy@1.12.18?type=jar",
+ "pkg:maven/org.jboss/jandex@2.4.2.Final?type=jar",
+ "pkg:maven/com.fasterxml/classmate@1.5.1?type=jar",
+ "pkg:maven/org.hibernate.common/hibernate-commons-annotations@5.1.2.Final?type=jar",
+ "pkg:maven/org.glassfish.jaxb/jaxb-runtime@2.3.7?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.jboss.logging/jboss-logging@3.4.3.Final?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/javax.annotation/javax.annotation-api@1.3.2?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/net.bytebuddy/byte-buddy@1.12.18?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/org.jboss/jandex@2.4.2.Final?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/com.fasterxml/classmate@1.5.1?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/org.hibernate.common/hibernate-commons-annotations@5.1.2.Final?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.jboss.logging/jboss-logging@3.4.3.Final?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.glassfish.jaxb/jaxb-runtime@2.3.7?type=jar",
+ "dependsOn" : [
+ "pkg:maven/jakarta.xml.bind/jakarta.xml.bind-api@2.3.3?type=jar",
+ "pkg:maven/org.glassfish.jaxb/txw2@2.3.7?type=jar",
+ "pkg:maven/com.sun.istack/istack-commons-runtime@3.0.12?type=jar",
+ "pkg:maven/com.sun.activation/jakarta.activation@1.2.2?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/jakarta.xml.bind/jakarta.xml.bind-api@2.3.3?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/org.glassfish.jaxb/txw2@2.3.7?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/com.sun.istack/istack-commons-runtime@3.0.12?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/com.sun.activation/jakarta.activation@1.2.2?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/org.springframework.data/spring-data-jpa@2.7.5?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.springframework.data/spring-data-commons@2.7.5?type=jar",
+ "pkg:maven/org.springframework/spring-orm@5.3.23?type=jar",
+ "pkg:maven/org.springframework/spring-context@5.3.23?type=jar",
+ "pkg:maven/org.springframework/spring-aop@5.3.23?type=jar",
+ "pkg:maven/org.springframework/spring-tx@5.3.23?type=jar",
+ "pkg:maven/org.springframework/spring-beans@5.3.23?type=jar",
+ "pkg:maven/org.springframework/spring-core@5.3.23?type=jar",
+ "pkg:maven/org.slf4j/slf4j-api@1.7.36?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.springframework.data/spring-data-commons@2.7.5?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.springframework/spring-core@5.3.23?type=jar",
+ "pkg:maven/org.springframework/spring-beans@5.3.23?type=jar",
+ "pkg:maven/org.slf4j/slf4j-api@1.7.36?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.springframework/spring-orm@5.3.23?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.springframework/spring-beans@5.3.23?type=jar",
+ "pkg:maven/org.springframework/spring-core@5.3.23?type=jar",
+ "pkg:maven/org.springframework/spring-jdbc@5.3.23?type=jar",
+ "pkg:maven/org.springframework/spring-tx@5.3.23?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.springframework/spring-aspects@5.3.23?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.aspectj/aspectjweaver@1.9.7?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.springframework.boot/spring-boot-starter-security@2.7.5?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.springframework.boot/spring-boot-starter@2.7.5?type=jar",
+ "pkg:maven/org.springframework/spring-aop@5.3.23?type=jar",
+ "pkg:maven/org.springframework.security/spring-security-config@5.7.4?type=jar",
+ "pkg:maven/org.springframework.security/spring-security-web@5.7.4?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.springframework.security/spring-security-config@5.7.4?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.springframework.security/spring-security-core@5.7.4?type=jar",
+ "pkg:maven/org.springframework/spring-aop@5.3.23?type=jar",
+ "pkg:maven/org.springframework/spring-beans@5.3.23?type=jar",
+ "pkg:maven/org.springframework/spring-context@5.3.23?type=jar",
+ "pkg:maven/org.springframework/spring-core@5.3.23?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.springframework.security/spring-security-core@5.7.4?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.springframework.security/spring-security-crypto@5.7.4?type=jar",
+ "pkg:maven/org.springframework/spring-aop@5.3.23?type=jar",
+ "pkg:maven/org.springframework/spring-beans@5.3.23?type=jar",
+ "pkg:maven/org.springframework/spring-context@5.3.23?type=jar",
+ "pkg:maven/org.springframework/spring-core@5.3.23?type=jar",
+ "pkg:maven/org.springframework/spring-expression@5.3.23?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.springframework.security/spring-security-crypto@5.7.4?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/org.springframework.security/spring-security-web@5.7.4?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.springframework.security/spring-security-core@5.7.4?type=jar",
+ "pkg:maven/org.springframework/spring-core@5.3.23?type=jar",
+ "pkg:maven/org.springframework/spring-aop@5.3.23?type=jar",
+ "pkg:maven/org.springframework/spring-beans@5.3.23?type=jar",
+ "pkg:maven/org.springframework/spring-context@5.3.23?type=jar",
+ "pkg:maven/org.springframework/spring-expression@5.3.23?type=jar",
+ "pkg:maven/org.springframework/spring-web@5.3.23?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/ch.qos.logback/logback-classic@1.2.11?type=jar",
+ "dependsOn" : [
+ "pkg:maven/ch.qos.logback/logback-core@1.2.11?type=jar",
+ "pkg:maven/org.slf4j/slf4j-api@1.7.36?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.apache.logging.log4j/log4j-to-slf4j@2.17.2?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.slf4j/slf4j-api@1.7.36?type=jar",
+ "pkg:maven/org.apache.logging.log4j/log4j-api@2.17.2?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.apache.logging.log4j/log4j-api@2.17.2?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/org.slf4j/jul-to-slf4j@1.7.36?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.slf4j/slf4j-api@1.7.36?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.springframework.boot/spring-boot-starter-validation@2.7.5?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.springframework.boot/spring-boot-starter@2.7.5?type=jar",
+ "pkg:maven/org.apache.tomcat.embed/tomcat-embed-el@9.0.68?type=jar",
+ "pkg:maven/org.hibernate.validator/hibernate-validator@6.2.5.Final?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.hibernate.validator/hibernate-validator@6.2.5.Final?type=jar",
+ "dependsOn" : [
+ "pkg:maven/jakarta.validation/jakarta.validation-api@2.0.2?type=jar",
+ "pkg:maven/org.jboss.logging/jboss-logging@3.4.3.Final?type=jar",
+ "pkg:maven/com.fasterxml/classmate@1.5.1?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/jakarta.validation/jakarta.validation-api@2.0.2?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/org.springframework/spring-oxm@5.3.23?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.springframework/spring-beans@5.3.23?type=jar",
+ "pkg:maven/org.springframework/spring-core@5.3.23?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.springframework/spring-jcl@5.3.23?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.13.4?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/org.springframework.boot/spring-boot-devtools@2.7.5?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.springframework.boot/spring-boot@2.7.5?type=jar",
+ "pkg:maven/org.springframework.boot/spring-boot-autoconfigure@2.7.5?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.projectlombok/lombok@1.18.24?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/com.unboundid/unboundid-ldapsdk@4.0.8?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/org.snmp4j/snmp4j@2.5.6?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/org.openmuc/openiec61850@1.7.0?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.slf4j/slf4j-api@1.7.36?type=jar",
+ "pkg:maven/org.openmuc/jasn1-iec61850mod@1.10.0?type=jar",
+ "pkg:maven/ch.qos.logback/logback-classic@1.2.11?type=jar",
+ "pkg:maven/com.toedter/jcalendar@1.4?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.openmuc/jasn1-iec61850mod@1.10.0?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/com.toedter/jcalendar@1.4?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/io.cloudsoft.windows/winrm4j@0.12.3?type=jar",
+ "dependsOn" : [
+ "pkg:maven/io.cloudsoft.windows/winrm4j-client@0.12.3?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/io.cloudsoft.windows/winrm4j-client@0.12.3?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.apache.cxf/cxf-rt-transports-http@3.3.9?type=jar",
+ "pkg:maven/org.apache.cxf/cxf-rt-transports-http-hc@3.3.9?type=jar",
+ "pkg:maven/org.apache.cxf/cxf-rt-frontend-jaxws@3.3.9?type=jar",
+ "pkg:maven/org.apache.httpcomponents/httpcore-nio@4.4.15?type=jar",
+ "pkg:maven/org.apache.httpcomponents/httpclient@4.5.13?type=jar",
+ "pkg:maven/org.apache.httpcomponents/httpasyncclient@4.1.5?type=jar",
+ "pkg:maven/commons-io/commons-io@2.4?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.apache.cxf/cxf-rt-transports-http@3.3.9?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.apache.cxf/cxf-core@3.3.9?type=jar",
+ "pkg:maven/javax.annotation/javax.annotation-api@1.3.2?type=jar",
+ "pkg:maven/javax.xml.ws/jaxws-api@2.3.1?type=jar",
+ "pkg:maven/com.sun.activation/javax.activation@1.2.0?type=jar",
+ "pkg:maven/org.apache.geronimo.specs/geronimo-ws-metadata_2.0_spec@1.1.3?type=jar",
+ "pkg:maven/com.sun.xml.messaging.saaj/saaj-impl@1.5.3?type=jar",
+ "pkg:maven/org.jacorb/jacorb-omgapi@3.9?type=jar",
+ "pkg:maven/org.apache.geronimo.specs/geronimo-jta_1.1_spec@1.1.1?type=jar",
+ "pkg:maven/org.jboss.spec.javax.rmi/jboss-rmi-api_1.0_spec@1.0.6.Final?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.apache.cxf/cxf-core@3.3.9?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.glassfish.jaxb/jaxb-runtime@2.3.7?type=jar",
+ "pkg:maven/org.apache.ws.xmlschema/xmlschema-core@2.2.5?type=jar",
+ "pkg:maven/jakarta.xml.bind/jakarta.xml.bind-api@2.3.3?type=jar",
+ "pkg:maven/javax.annotation/javax.annotation-api@1.3.2?type=jar",
+ "pkg:maven/javax.xml.ws/jaxws-api@2.3.1?type=jar",
+ "pkg:maven/com.sun.activation/javax.activation@1.2.0?type=jar",
+ "pkg:maven/org.apache.geronimo.specs/geronimo-ws-metadata_2.0_spec@1.1.3?type=jar",
+ "pkg:maven/com.sun.xml.messaging.saaj/saaj-impl@1.5.3?type=jar",
+ "pkg:maven/org.jacorb/jacorb-omgapi@3.9?type=jar",
+ "pkg:maven/org.apache.geronimo.specs/geronimo-jta_1.1_spec@1.1.1?type=jar",
+ "pkg:maven/org.jboss.spec.javax.rmi/jboss-rmi-api_1.0_spec@1.0.6.Final?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.apache.ws.xmlschema/xmlschema-core@2.2.5?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/javax.xml.ws/jaxws-api@2.3.1?type=jar",
+ "dependsOn" : [
+ "pkg:maven/javax.xml.soap/javax.xml.soap-api@1.4.0?type=jar",
+ "pkg:maven/javax.annotation/javax.annotation-api@1.3.2?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/com.sun.activation/javax.activation@1.2.0?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/org.apache.geronimo.specs/geronimo-ws-metadata_2.0_spec@1.1.3?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/com.sun.xml.messaging.saaj/saaj-impl@1.5.3?type=jar",
+ "dependsOn" : [
+ "pkg:maven/jakarta.xml.soap/jakarta.xml.soap-api@1.4.2?type=jar",
+ "pkg:maven/org.jvnet.staxex/stax-ex@1.8.3?type=jar",
+ "pkg:maven/com.sun.activation/jakarta.activation@1.2.2?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.jacorb/jacorb-omgapi@3.9?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/org.apache.geronimo.specs/geronimo-jta_1.1_spec@1.1.1?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/org.jboss.spec.javax.rmi/jboss-rmi-api_1.0_spec@1.0.6.Final?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/javax.xml.soap/javax.xml.soap-api@1.4.0?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/jakarta.xml.soap/jakarta.xml.soap-api@1.4.2?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/org.jvnet.staxex/stax-ex@1.8.3?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/org.apache.cxf/cxf-rt-transports-http-hc@3.3.9?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.apache.cxf/cxf-core@3.3.9?type=jar",
+ "pkg:maven/org.apache.cxf/cxf-rt-transports-http@3.3.9?type=jar",
+ "pkg:maven/org.slf4j/slf4j-api@1.7.36?type=jar",
+ "pkg:maven/org.slf4j/jcl-over-slf4j@1.7.36?type=jar",
+ "pkg:maven/javax.annotation/javax.annotation-api@1.3.2?type=jar",
+ "pkg:maven/javax.xml.ws/jaxws-api@2.3.1?type=jar",
+ "pkg:maven/com.sun.activation/javax.activation@1.2.0?type=jar",
+ "pkg:maven/org.apache.geronimo.specs/geronimo-ws-metadata_2.0_spec@1.1.3?type=jar",
+ "pkg:maven/com.sun.xml.messaging.saaj/saaj-impl@1.5.3?type=jar",
+ "pkg:maven/org.jacorb/jacorb-omgapi@3.9?type=jar",
+ "pkg:maven/org.apache.geronimo.specs/geronimo-jta_1.1_spec@1.1.1?type=jar",
+ "pkg:maven/org.jboss.spec.javax.rmi/jboss-rmi-api_1.0_spec@1.0.6.Final?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.slf4j/jcl-over-slf4j@1.7.36?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.slf4j/slf4j-api@1.7.36?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.apache.cxf/cxf-rt-frontend-jaxws@3.3.9?type=jar",
+ "dependsOn" : [
+ "pkg:maven/xml-resolver/xml-resolver@1.2?type=jar",
+ "pkg:maven/org.ow2.asm/asm@9.0?type=jar",
+ "pkg:maven/org.apache.cxf/cxf-core@3.3.9?type=jar",
+ "pkg:maven/org.apache.cxf/cxf-rt-bindings-soap@3.3.9?type=jar",
+ "pkg:maven/org.apache.cxf/cxf-rt-bindings-xml@3.3.9?type=jar",
+ "pkg:maven/org.apache.cxf/cxf-rt-frontend-simple@3.3.9?type=jar",
+ "pkg:maven/org.apache.cxf/cxf-rt-transports-http@3.3.9?type=jar",
+ "pkg:maven/org.apache.cxf/cxf-rt-ws-addr@3.3.9?type=jar",
+ "pkg:maven/javax.annotation/javax.annotation-api@1.3.2?type=jar",
+ "pkg:maven/javax.xml.ws/jaxws-api@2.3.1?type=jar",
+ "pkg:maven/com.sun.activation/javax.activation@1.2.0?type=jar",
+ "pkg:maven/org.apache.geronimo.specs/geronimo-ws-metadata_2.0_spec@1.1.3?type=jar",
+ "pkg:maven/com.sun.xml.messaging.saaj/saaj-impl@1.5.3?type=jar",
+ "pkg:maven/org.jacorb/jacorb-omgapi@3.9?type=jar",
+ "pkg:maven/org.apache.geronimo.specs/geronimo-jta_1.1_spec@1.1.1?type=jar",
+ "pkg:maven/org.jboss.spec.javax.rmi/jboss-rmi-api_1.0_spec@1.0.6.Final?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/xml-resolver/xml-resolver@1.2?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/org.ow2.asm/asm@9.0?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/org.apache.cxf/cxf-rt-bindings-soap@3.3.9?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.apache.cxf/cxf-core@3.3.9?type=jar",
+ "pkg:maven/org.apache.cxf/cxf-rt-wsdl@3.3.9?type=jar",
+ "pkg:maven/org.apache.cxf/cxf-rt-databinding-jaxb@3.3.9?type=jar",
+ "pkg:maven/javax.annotation/javax.annotation-api@1.3.2?type=jar",
+ "pkg:maven/javax.xml.ws/jaxws-api@2.3.1?type=jar",
+ "pkg:maven/com.sun.activation/javax.activation@1.2.0?type=jar",
+ "pkg:maven/org.apache.geronimo.specs/geronimo-ws-metadata_2.0_spec@1.1.3?type=jar",
+ "pkg:maven/com.sun.xml.messaging.saaj/saaj-impl@1.5.3?type=jar",
+ "pkg:maven/org.jacorb/jacorb-omgapi@3.9?type=jar",
+ "pkg:maven/org.apache.geronimo.specs/geronimo-jta_1.1_spec@1.1.1?type=jar",
+ "pkg:maven/org.jboss.spec.javax.rmi/jboss-rmi-api_1.0_spec@1.0.6.Final?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.apache.cxf/cxf-rt-wsdl@3.3.9?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.apache.cxf/cxf-core@3.3.9?type=jar",
+ "pkg:maven/wsdl4j/wsdl4j@1.6.3?type=jar",
+ "pkg:maven/org.ow2.asm/asm@9.0?type=jar",
+ "pkg:maven/org.springframework/spring-core@5.3.23?type=jar",
+ "pkg:maven/org.springframework/spring-beans@5.3.23?type=jar",
+ "pkg:maven/org.springframework/spring-context@5.3.23?type=jar",
+ "pkg:maven/javax.annotation/javax.annotation-api@1.3.2?type=jar",
+ "pkg:maven/javax.xml.ws/jaxws-api@2.3.1?type=jar",
+ "pkg:maven/com.sun.activation/javax.activation@1.2.0?type=jar",
+ "pkg:maven/org.apache.geronimo.specs/geronimo-ws-metadata_2.0_spec@1.1.3?type=jar",
+ "pkg:maven/com.sun.xml.messaging.saaj/saaj-impl@1.5.3?type=jar",
+ "pkg:maven/org.jacorb/jacorb-omgapi@3.9?type=jar",
+ "pkg:maven/org.apache.geronimo.specs/geronimo-jta_1.1_spec@1.1.1?type=jar",
+ "pkg:maven/org.jboss.spec.javax.rmi/jboss-rmi-api_1.0_spec@1.0.6.Final?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/wsdl4j/wsdl4j@1.6.3?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/org.apache.cxf/cxf-rt-databinding-jaxb@3.3.9?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.apache.cxf/cxf-core@3.3.9?type=jar",
+ "pkg:maven/org.apache.cxf/cxf-rt-wsdl@3.3.9?type=jar",
+ "pkg:maven/javax.annotation/javax.annotation-api@1.3.2?type=jar",
+ "pkg:maven/javax.xml.ws/jaxws-api@2.3.1?type=jar",
+ "pkg:maven/com.sun.activation/javax.activation@1.2.0?type=jar",
+ "pkg:maven/org.apache.geronimo.specs/geronimo-ws-metadata_2.0_spec@1.1.3?type=jar",
+ "pkg:maven/com.sun.xml.messaging.saaj/saaj-impl@1.5.3?type=jar",
+ "pkg:maven/org.jacorb/jacorb-omgapi@3.9?type=jar",
+ "pkg:maven/org.apache.geronimo.specs/geronimo-jta_1.1_spec@1.1.1?type=jar",
+ "pkg:maven/org.jboss.spec.javax.rmi/jboss-rmi-api_1.0_spec@1.0.6.Final?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.apache.cxf/cxf-rt-bindings-xml@3.3.9?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.apache.cxf/cxf-core@3.3.9?type=jar",
+ "pkg:maven/javax.annotation/javax.annotation-api@1.3.2?type=jar",
+ "pkg:maven/javax.xml.ws/jaxws-api@2.3.1?type=jar",
+ "pkg:maven/com.sun.activation/javax.activation@1.2.0?type=jar",
+ "pkg:maven/org.apache.geronimo.specs/geronimo-ws-metadata_2.0_spec@1.1.3?type=jar",
+ "pkg:maven/com.sun.xml.messaging.saaj/saaj-impl@1.5.3?type=jar",
+ "pkg:maven/org.jacorb/jacorb-omgapi@3.9?type=jar",
+ "pkg:maven/org.apache.geronimo.specs/geronimo-jta_1.1_spec@1.1.1?type=jar",
+ "pkg:maven/org.jboss.spec.javax.rmi/jboss-rmi-api_1.0_spec@1.0.6.Final?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.apache.cxf/cxf-rt-frontend-simple@3.3.9?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.apache.cxf/cxf-core@3.3.9?type=jar",
+ "pkg:maven/org.apache.cxf/cxf-rt-bindings-soap@3.3.9?type=jar",
+ "pkg:maven/org.apache.cxf/cxf-rt-wsdl@3.3.9?type=jar",
+ "pkg:maven/javax.annotation/javax.annotation-api@1.3.2?type=jar",
+ "pkg:maven/javax.xml.ws/jaxws-api@2.3.1?type=jar",
+ "pkg:maven/com.sun.activation/javax.activation@1.2.0?type=jar",
+ "pkg:maven/org.apache.geronimo.specs/geronimo-ws-metadata_2.0_spec@1.1.3?type=jar",
+ "pkg:maven/com.sun.xml.messaging.saaj/saaj-impl@1.5.3?type=jar",
+ "pkg:maven/org.jacorb/jacorb-omgapi@3.9?type=jar",
+ "pkg:maven/org.apache.geronimo.specs/geronimo-jta_1.1_spec@1.1.1?type=jar",
+ "pkg:maven/org.jboss.spec.javax.rmi/jboss-rmi-api_1.0_spec@1.0.6.Final?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.apache.cxf/cxf-rt-ws-addr@3.3.9?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.apache.cxf/cxf-core@3.3.9?type=jar",
+ "pkg:maven/org.apache.cxf/cxf-rt-bindings-soap@3.3.9?type=jar",
+ "pkg:maven/org.apache.cxf/cxf-rt-ws-policy@3.3.9?type=jar",
+ "pkg:maven/javax.annotation/javax.annotation-api@1.3.2?type=jar",
+ "pkg:maven/javax.xml.ws/jaxws-api@2.3.1?type=jar",
+ "pkg:maven/com.sun.activation/javax.activation@1.2.0?type=jar",
+ "pkg:maven/org.apache.geronimo.specs/geronimo-ws-metadata_2.0_spec@1.1.3?type=jar",
+ "pkg:maven/com.sun.xml.messaging.saaj/saaj-impl@1.5.3?type=jar",
+ "pkg:maven/org.jacorb/jacorb-omgapi@3.9?type=jar",
+ "pkg:maven/org.apache.geronimo.specs/geronimo-jta_1.1_spec@1.1.1?type=jar",
+ "pkg:maven/org.jboss.spec.javax.rmi/jboss-rmi-api_1.0_spec@1.0.6.Final?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.apache.cxf/cxf-rt-ws-policy@3.3.9?type=jar",
+ "dependsOn" : [
+ "pkg:maven/wsdl4j/wsdl4j@1.6.3?type=jar",
+ "pkg:maven/org.apache.cxf/cxf-core@3.3.9?type=jar",
+ "pkg:maven/org.apache.neethi/neethi@3.1.1?type=jar",
+ "pkg:maven/javax.annotation/javax.annotation-api@1.3.2?type=jar",
+ "pkg:maven/javax.xml.ws/jaxws-api@2.3.1?type=jar",
+ "pkg:maven/com.sun.activation/javax.activation@1.2.0?type=jar",
+ "pkg:maven/org.apache.geronimo.specs/geronimo-ws-metadata_2.0_spec@1.1.3?type=jar",
+ "pkg:maven/com.sun.xml.messaging.saaj/saaj-impl@1.5.3?type=jar",
+ "pkg:maven/org.jacorb/jacorb-omgapi@3.9?type=jar",
+ "pkg:maven/org.apache.geronimo.specs/geronimo-jta_1.1_spec@1.1.1?type=jar",
+ "pkg:maven/org.jboss.spec.javax.rmi/jboss-rmi-api_1.0_spec@1.0.6.Final?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.apache.neethi/neethi@3.1.1?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/org.apache.httpcomponents/httpcore-nio@4.4.15?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/org.apache.httpcomponents/httpclient@4.5.13?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.apache.httpcomponents/httpcore@4.4.15?type=jar",
+ "pkg:maven/commons-codec/commons-codec@1.15?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.apache.httpcomponents/httpcore@4.4.15?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/commons-codec/commons-codec@1.15?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/org.apache.httpcomponents/httpasyncclient@4.1.5?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/commons-io/commons-io@2.4?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/com.fasterxml.woodstox/woodstox-core@5.3.0?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.codehaus.woodstox/stax2-api@4.2?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.codehaus.woodstox/stax2-api@4.2?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/org.apache.commons/commons-lang3@3.6?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/commons-net/commons-net@3.6?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/com.h2database/h2@1.4.199?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/ch.qos.logback/logback-core@1.2.11?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/io.jsonwebtoken/jjwt-api@0.10.5?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/io.jsonwebtoken/jjwt-impl@0.10.5?type=jar",
+ "dependsOn" : [
+ "pkg:maven/io.jsonwebtoken/jjwt-api@0.10.5?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/io.jsonwebtoken/jjwt-jackson@0.10.5?type=jar",
+ "dependsOn" : [
+ "pkg:maven/io.jsonwebtoken/jjwt-api@0.10.5?type=jar",
+ "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.13.4.2?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.antlr/antlr-complete@3.5.3?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.antlr/antlr@3.5.3?type=jar",
+ "pkg:maven/org.antlr/antlr-runtime@3.5.3?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.antlr/antlr@3.5.3?type=jar",
+ "dependsOn" : [
+ "pkg:maven/org.antlr/antlr-runtime@3.5.3?type=jar"
+ ]
+ },
+ {
+ "ref" : "pkg:maven/org.antlr/antlr-runtime@3.5.3?type=jar",
+ "dependsOn" : [ ]
+ },
+ {
+ "ref" : "pkg:maven/com.hynnet/tinyradius@1.0?type=jar",
+ "dependsOn" : [ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/src/LCT.PackageIdentifier/MavenProcessor.cs b/src/LCT.PackageIdentifier/MavenProcessor.cs
index 54f2c2ac..241da2e5 100644
--- a/src/LCT.PackageIdentifier/MavenProcessor.cs
+++ b/src/LCT.PackageIdentifier/MavenProcessor.cs
@@ -14,7 +14,6 @@
using log4net;
using System;
using System.Collections.Generic;
-using System.IO;
using System.Linq;
using System.Reflection;
using System.Threading.Tasks;
@@ -26,39 +25,58 @@ public class MavenProcessor : CycloneDXBomParser, IParser
static readonly ILog Logger = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
private const string NotFoundInRepo = "Not Found in JFrogRepo";
+
+
public Bom ParsePackageFile(CommonAppSettings appSettings)
{
List componentsForBOM = new();
+ List componentsToBOM = new();
+ List ListOfComponents = new();
Bom bom = new();
List dependenciesForBOM = new();
List configFiles;
if (string.IsNullOrEmpty(appSettings.CycloneDxBomFilePath))
{
- configFiles = FolderScanner.FileScanner(appSettings.PackageFilePath, appSettings.Maven);
+ configFiles = FolderScanner.FileScanner(appSettings.PackageFilePath, appSettings.Maven);
}
else
{
- configFiles = FolderScanner.FileScanner(appSettings.CycloneDxBomFilePath, appSettings.Maven);
+ configFiles = FolderScanner.FileScanner(appSettings.CycloneDxBomFilePath, appSettings.Maven);
}
-
+
foreach (string filepath in configFiles)
{
Bom bomList = ParseCycloneDXBom(filepath);
- componentsForBOM.AddRange(bomList.Components);
+
+ if (componentsForBOM.Count == 0)
+ {
+ componentsForBOM.AddRange(bomList?.Components);
+ }
+ else
+ {
+ componentsToBOM.AddRange(bomList?.Components);
+ }
+
if (bomList.Dependencies != null)
{
dependenciesForBOM.AddRange(bomList.Dependencies);
}
}
- foreach (var component in componentsForBOM)
- {
- component.Properties = new List();
- Property isDev = new() { Name = Dataconstant.Cdx_IsDevelopment, Value = "false" };
- Property identifierType = new() { Name = Dataconstant.Cdx_IdentifierType, Value = "Manually" };
- component.Properties.Add(isDev);
- component.Properties.Add(identifierType);
- }
+ //checking Dev dependency
+ DevDependencyIdentificationLogic(componentsForBOM, componentsToBOM, ref ListOfComponents);
+
+
+ BomCreator.bomKpiData.ComponentsinPackageLockJsonFile = componentsForBOM.Count + componentsToBOM.Count;
+
+ int totalComponentsIdentified = BomCreator.bomKpiData.ComponentsinPackageLockJsonFile;
+
+ //Removing if there are any other duplicates
+ componentsForBOM = ListOfComponents.Distinct(new ComponentEqualityComparer()).ToList();
+
+ BomCreator.bomKpiData.DuplicateComponents = totalComponentsIdentified - componentsForBOM.Count;
+
+
bom.Components = componentsForBOM;
bom.Dependencies = dependenciesForBOM;
BomCreator.bomKpiData.ComponentsinPackageLockJsonFile = bom.Components.Count;
@@ -67,6 +85,101 @@ public Bom ParsePackageFile(CommonAppSettings appSettings)
return bom;
}
+ public static void DevDependencyIdentificationLogic(List componentsForBOM, List componentsToBOM, ref List ListOfComponents)
+ {
+
+ List iterateBOM = componentsForBOM.Count > componentsToBOM.Count ? componentsForBOM : componentsToBOM;
+ List checkBOM = componentsForBOM.Count < componentsToBOM.Count ? componentsForBOM : componentsToBOM;
+
+
+ ListOfComponents = DevdependencyIdentification(ListOfComponents, iterateBOM, checkBOM);
+
+ }
+
+ private static List DevdependencyIdentification(List ListOfComponents, List iterateBOM, List checkBOM)
+ {
+ foreach (var item in iterateBOM)
+ {
+ //check to see if the second list is empty(which means customer has only provided one bom file)no dev dependency will be identified here
+ if (checkBOM.Count == 0)
+ {
+ SetPropertiesforBOM(ref ListOfComponents, item, "false");
+ }
+ else if (checkBOM.Exists(x => x.Name == item.Name && x.Version == item.Version)) //check t see if both list has common elements
+ {
+ SetPropertiesforBOM(ref ListOfComponents, item, "false");
+ }
+ else //incase one list has a component not present in another then it will be marked as Dev
+ {
+ SetPropertiesforBOM(ref ListOfComponents, item, "true");
+
+ BomCreator.bomKpiData.DevDependentComponents++;
+ }
+ }
+
+ return ListOfComponents;
+ }
+
+ private static void SetPropertiesforBOM(ref List componentsToBOM, Component component, string devValue)
+ {
+
+ component.Properties = new List();
+ Property isDev = new() { Name = Dataconstant.Cdx_IsDevelopment, Value = devValue };
+ Property identifierType = new() { Name = Dataconstant.Cdx_IdentifierType, Value = "Discovered" };
+ component.Properties.Add(isDev);
+ component.Properties.Add(identifierType);
+ componentsToBOM.Add(component);
+
+ }
+
+ private static void DevDependencyIdentification(List componentsForBOM, Bom bomList, ref List componentsToBOM)
+ {
+ List componentList = bomList.Components;
+
+ if (componentsForBOM?.Count >= componentList?.Count && componentsForBOM.Count != 0)
+ {
+ foreach (var entry in componentsForBOM)
+ {
+ if (componentList.Exists(x => x.Name == entry.Name))
+ {
+ SetPropertiesforBOM(ref componentsToBOM, entry, "false");
+ }
+ else
+ {
+ SetPropertiesforBOM(ref componentsToBOM, entry, "true");
+
+ BomCreator.bomKpiData.DevDependentComponents++;
+ }
+ }
+ }
+ else if (componentsForBOM?.Count <= componentList?.Count && componentsForBOM.Count != 0)
+ {
+ foreach (var entry in componentList)
+ {
+
+ if (componentsForBOM.Exists(x => x.Name == entry.Name))
+ {
+ SetPropertiesforBOM(ref componentsToBOM, entry, "false");
+
+
+ }
+ else
+ {
+ SetPropertiesforBOM(ref componentsToBOM, entry, "true");
+
+
+ BomCreator.bomKpiData.DevDependentComponents++;
+ }
+ }
+ }
+ else
+ {
+ //do nothing
+ }
+
+ }
+
+
public async Task> GetJfrogRepoDetailsOfAComponent(List componentsForBOM, CommonAppSettings appSettings,
IJFrogService jFrogService,
IBomHelper bomhelper)
@@ -82,7 +195,6 @@ public async Task> GetJfrogRepoDetailsOfAComponent(List();
diff --git a/src/LCT.PackageIdentifier/NpmProcessor.cs b/src/LCT.PackageIdentifier/NpmProcessor.cs
index 828c04db..becd02a3 100644
--- a/src/LCT.PackageIdentifier/NpmProcessor.cs
+++ b/src/LCT.PackageIdentifier/NpmProcessor.cs
@@ -51,7 +51,7 @@ public Bom ParsePackageFile(CommonAppSettings appSettings)
int totalComponentsIdentified = 0;
ParsingInputFileForBOM(appSettings, ref componentsForBOM, ref bom, ref dependencies);
-
+ totalComponentsIdentified = componentsForBOM.Count;
componentsForBOM = GetExcludedComponentsList(componentsForBOM);