From a9268f047a8f12835cf9a1877b9a3cc07a6ecd81 Mon Sep 17 00:00:00 2001 From: Ildiko Eigel Date: Wed, 5 Nov 2025 15:55:58 +0100 Subject: [PATCH 1/2] Revert "Update version 0.10.9 -> 0.10.10" This reverts commit dcdf5d62fb8c54b3dcf4e1975d58e97cdec38af5. --- .bumpversion.toml | 2 +- README.md | 34 +- docs/Changes_Follower.md | 4 +- docs/Examples.md | 2 +- docs/Pagination.md | 18 +- docs/README.md | 2 +- modules/cloudant/pom.xml | 6 +- modules/common/pom.xml | 4 +- modules/coverage-reports/pom.xml | 2 +- modules/examples/pom.xml | 2 +- pom.xml | 2 +- whitesource/checkPolicies-json.txt | 1342 --------------------- whitesource/index.html | 1410 ----------------------- whitesource/policyRejectionSummary.json | 6 - 14 files changed, 39 insertions(+), 2797 deletions(-) delete mode 100644 whitesource/checkPolicies-json.txt delete mode 100644 whitesource/index.html delete mode 100644 whitesource/policyRejectionSummary.json diff --git a/.bumpversion.toml b/.bumpversion.toml index 767719977..a21c5e67d 100644 --- a/.bumpversion.toml +++ b/.bumpversion.toml @@ -1,5 +1,5 @@ [tool.bumpversion] -current_version = "0.10.10" +current_version = "0.10.9" commit = true message = "Update version {current_version} -> {new_version}" parse = "^(?P0|[1-9]\\d*)\\.(?P0|[1-9]\\d*)\\.(?P0|[1-9]\\d*)(?:-(?P(?:0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*)(?:\\.(?:0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*))*))?(?:\\+(?P[0-9a-zA-Z-]+(?:\\.[0-9a-zA-Z-]+)*))?$" diff --git a/README.md b/README.md index 161dc9bfd..fa0651b56 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ [![Release](https://img.shields.io/github/v/release/IBM/cloudant-java-sdk?include_prereleases&sort=semver)](https://github.com/IBM/cloudant-java-sdk/releases/latest) [![Docs](https://img.shields.io/static/v1?label=Javadoc&message=latest&color=blue)](https://ibm.github.io/cloudant-java-sdk/) -# IBM Cloudant Java SDK Version 0.10.10 +# IBM Cloudant Java SDK Version 0.10.9 IBM Cloudant Java SDK is a client library that interacts with the [IBM Cloudant APIs](https://cloud.ibm.com/apidocs/cloudant?code=java). @@ -67,8 +67,8 @@ project: - Handles the authentication. - Familiar user experience with IBM Cloud SDKs. - Flexibility to use either built-in models or byte-based requests and responses for documents. -- Built-in [Changes feed follower](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.10/docs/Changes_Follower.md) -- Built-in [Pagination](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.10/docs/Pagination.md) (beta) +- Built-in [Changes feed follower](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.9/docs/Changes_Follower.md) +- Built-in [Pagination](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.9/docs/Pagination.md) (beta) - HTTP2 support for higher performance connections to IBM Cloudant. - Perform requests either synchronously or asynchronously. - Instances of the client are unconditionally thread-safe. @@ -85,7 +85,7 @@ project: ## Installation -The current version of this SDK is: 0.10.10 +The current version of this SDK is: 0.10.9 The project artifacts are published on the [Maven Central](https://repo1.maven.org/maven2/com/ibm/cloud/cloudant/). @@ -112,7 +112,7 @@ Extend *Maven dependencies* in your `pom.xml` file with the `cloudant` library. com.ibm.cloud cloudant - 0.10.10 + 0.10.9 ``` @@ -124,7 +124,7 @@ Add the `cloudant` library to the *dependencies* in your `build.gradle` file: ```groovy dependencies { // other dependencies... - implementation group: "com.ibm.cloud", name: "cloudant", version: "0.10.10" + implementation group: "com.ibm.cloud", name: "cloudant", version: "0.10.9" } ``` @@ -138,16 +138,16 @@ account. There are several ways to **set** these authentication properties: -1. As [environment variables](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.10/docs/Authentication.md#authentication-with-environment-variables) -2. The [programmatic approach](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.10/docs/Authentication.md#programmatic-authentication) -3. With an [external credentials file](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.10/docs/Authentication.md#authentication-with-external-configuration) +1. As [environment variables](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.9/docs/Authentication.md#authentication-with-environment-variables) +2. The [programmatic approach](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.9/docs/Authentication.md#programmatic-authentication) +3. With an [external credentials file](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.9/docs/Authentication.md#authentication-with-external-configuration) The following section describes the different authentication types and provides environment variable examples. Examples for other configuration methods are available by following the provided links. ### Authentication -Consult the [authentication document](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.10/docs/Authentication.md) +Consult the [authentication document](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.9/docs/Authentication.md) for comprehensive details of all the available authentication methods and how to configure them with environment settings or programmatically. @@ -196,10 +196,10 @@ List response = System.out.println(response); ``` -[More tutorial examples](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.10/docs/Examples.md) for creating a database +[More tutorial examples](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.9/docs/Examples.md) for creating a database and document create, read, update and delete operations. -For a complete list of code examples, see the [examples directory](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.10/examples#examples-for-java). +For a complete list of code examples, see the [examples directory](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.9/examples#examples-for-java). ### Error handling @@ -222,7 +222,7 @@ Response byte stream is supported in functions with the suffix of `AsStream`. The returned byte stream allows the response body to be consumed without triggering JSON unmarshalling that is typically performed by the SDK. -The [update document](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.10/docs/Examples.md#3-update-your-previously-created-document) section +The [update document](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.9/docs/Examples.md#3-update-your-previously-created-document) section contains examples for both request and response byte stream cases. The API reference contains further examples of using byte streams. @@ -238,7 +238,7 @@ Expand them to see examples of: ### Further resources -- [Cloudant Java SDK feature docs](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.10/docs) +- [Cloudant Java SDK feature docs](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.9/docs) - [Cloudant API docs](https://cloud.ibm.com/apidocs/cloudant?code=java): API reference including usage examples for Cloudant Java SDK API. - [Javadoc](https://ibm.github.io/cloudant-java-sdk/): @@ -261,7 +261,7 @@ If you encounter an issue with the project, you are welcome to submit a Before you submit a bug report, search for [similar issues](https://github.com/IBM/cloudant-java-sdk/issues?q=is%3Aissue) and review the -[KNOWN_ISSUES file](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.10/KNOWN_ISSUES.md) to verify that your issue hasn't been reported yet. +[KNOWN_ISSUES file](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.9/KNOWN_ISSUES.md) to verify that your issue hasn't been reported yet. Please consult the [security policy](https://github.com/IBM/cloudant-java-sdk/security/policy) before opening security related issues. @@ -291,8 +291,8 @@ Find more open source projects on the [IBM GitHub](http://ibm.github.io/) page. ## Contributing -For more information, see [CONTRIBUTING](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.10/CONTRIBUTING.md). +For more information, see [CONTRIBUTING](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.9/CONTRIBUTING.md). ## License -This SDK is released under the Apache 2.0 license. To read the full text of the license, see [LICENSE](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.10/LICENSE). +This SDK is released under the Apache 2.0 license. To read the full text of the license, see [LICENSE](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.9/LICENSE). diff --git a/docs/Changes_Follower.md b/docs/Changes_Follower.md index 704dfa2e1..919e0b0ea 100644 --- a/docs/Changes_Follower.md +++ b/docs/Changes_Follower.md @@ -67,7 +67,7 @@ The changes follower requires the client to have HTTP timeouts of at least 1 min instantiation if it is insufficient. The default client configuration has sufficiently long timeouts. For use-cases where these configuration limitations are too restrictive then write code to use the SDK's -[POST `_changes` API](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.10/examples#postchanges) instead of the follower. +[POST `_changes` API](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.9/examples#postchanges) instead of the follower. ## Error suppression @@ -101,7 +101,7 @@ The follower is not optimized for some use cases and it is not recommended to us * Setting `include_docs` and larger document sizes (for example > 10 kiB). * The volume of changes is very high (if the rate of changes in the database exceeds the follower's rate of pulling them it can never catch-up). -In these use-cases use the SDK's [POST `_changes` API](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.10/examples#postchanges) +In these use-cases use the SDK's [POST `_changes` API](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.9/examples#postchanges) for specific control over the number of change requests made and the content size of the responses. ## Checkpoints diff --git a/docs/Examples.md b/docs/Examples.md index 921b40768..f4963e447 100644 --- a/docs/Examples.md +++ b/docs/Examples.md @@ -421,4 +421,4 @@ You have deleted the document. ## Further code examples -For a complete list of code examples, see the [examples directory](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.10/examples#examples-for-java). +For a complete list of code examples, see the [examples directory](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.9/examples#examples-for-java). diff --git a/docs/Pagination.md b/docs/Pagination.md index 970391393..3ea994fa4 100644 --- a/docs/Pagination.md +++ b/docs/Pagination.md @@ -73,22 +73,22 @@ then a `429 Too Many Requests` error occurs. Pagination is available for these operations: * Query all documents [global](https://cloud.ibm.com/apidocs/cloudant?code=java#postalldocs) and [partitioned](https://cloud.ibm.com/apidocs/cloudant?code=java#postpartitionalldocs) - * [Global all documents examples](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.10/modules/examples/src/main/java/features/pagination/AllDocsPagination.java) - * [Partitioned all documents examples](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.10/modules/examples/src/main/java/features/pagination/PartitionAllDocsPagination.java) + * [Global all documents examples](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.9/modules/examples/src/main/java/features/pagination/AllDocsPagination.java) + * [Partitioned all documents examples](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.9/modules/examples/src/main/java/features/pagination/PartitionAllDocsPagination.java) * Query all [design documents](https://cloud.ibm.com/apidocs/cloudant?code=java#postdesigndocs) - * [Design documents examples](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.10/modules/examples/src/main/java/features/pagination/DesignDocsPagination.java) + * [Design documents examples](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.9/modules/examples/src/main/java/features/pagination/DesignDocsPagination.java) * Query with selector syntax [global](https://cloud.ibm.com/apidocs/cloudant?code=java#postfind) and [partitioned](https://cloud.ibm.com/apidocs/cloudant?code=java#postpartitionfind) - * [Global find selector query examples](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.10/modules/examples/src/main/java/features/pagination/FindPagination.java) - * [Partitioned find selector query examples](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.10/modules/examples/src/main/java/features/pagination/PartitionFindPagination.java) + * [Global find selector query examples](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.9/modules/examples/src/main/java/features/pagination/FindPagination.java) + * [Partitioned find selector query examples](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.9/modules/examples/src/main/java/features/pagination/PartitionFindPagination.java) * Query a search index [global](https://cloud.ibm.com/apidocs/cloudant?code=java#postsearch) and [partitioned](https://cloud.ibm.com/apidocs/cloudant?code=java#postpartitionsearch) - * [Global search examples](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.10/modules/examples/src/main/java/features/pagination/SearchPagination.java) - * [Partitioned search examples](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.10/modules/examples/src/main/java/features/pagination/PartitionSearchPagination.java) + * [Global search examples](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.9/modules/examples/src/main/java/features/pagination/SearchPagination.java) + * [Partitioned search examples](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.9/modules/examples/src/main/java/features/pagination/PartitionSearchPagination.java) * Query a MapReduce view [global](https://cloud.ibm.com/apidocs/cloudant?code=java#postview) and [partitioned](https://cloud.ibm.com/apidocs/cloudant?code=java#postpartitionview) - * [Global view examples](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.10/modules/examples/src/main/java/features/pagination/ViewPagination.java) - * [Partitioned view examples](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.10/modules/examples/src/main/java/features/pagination/PartitionViewPagination.java) + * [Global view examples](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.9/modules/examples/src/main/java/features/pagination/ViewPagination.java) + * [Partitioned view examples](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.9/modules/examples/src/main/java/features/pagination/PartitionViewPagination.java) The examples presented in this `README` are for all documents in a partition. The links in the list are to equivalent examples for each of the other available operations. diff --git a/docs/README.md b/docs/README.md index 9dfd7b13f..14f3aebb1 100644 --- a/docs/README.md +++ b/docs/README.md @@ -1,4 +1,4 @@ -# IBM Cloudant Java SDK Version 0.10.10 Detailed Documentation +# IBM Cloudant Java SDK Version 0.10.9 Detailed Documentation ## Table of Contents diff --git a/modules/cloudant/pom.xml b/modules/cloudant/pom.xml index a7f00d5de..bb45451c4 100644 --- a/modules/cloudant/pom.xml +++ b/modules/cloudant/pom.xml @@ -4,7 +4,7 @@ com.ibm.cloud cloudant-parent - 0.10.10 + 0.10.9 ../.. @@ -16,12 +16,12 @@ com.ibm.cloud cloudant-common - 0.10.10 + 0.10.9 com.ibm.cloud cloudant-common - 0.10.10 + 0.10.9 test-jar tests test diff --git a/modules/common/pom.xml b/modules/common/pom.xml index 034202f63..e22cb6a5e 100644 --- a/modules/common/pom.xml +++ b/modules/common/pom.xml @@ -4,13 +4,13 @@ cloudant-parent com.ibm.cloud - 0.10.10 + 0.10.9 ../.. com.ibm.cloud cloudant-common - 0.10.10 + 0.10.9 Cloudant Common Library jar diff --git a/modules/coverage-reports/pom.xml b/modules/coverage-reports/pom.xml index ef4e501c5..8053645d7 100644 --- a/modules/coverage-reports/pom.xml +++ b/modules/coverage-reports/pom.xml @@ -3,7 +3,7 @@ cloudant-parent com.ibm.cloud - 0.10.10 + 0.10.9 ../.. 4.0.0 diff --git a/modules/examples/pom.xml b/modules/examples/pom.xml index fe434fa9a..ef6ac1493 100644 --- a/modules/examples/pom.xml +++ b/modules/examples/pom.xml @@ -6,7 +6,7 @@ cloudant-parent com.ibm.cloud - 0.10.10 + 0.10.9 ../.. diff --git a/pom.xml b/pom.xml index ebd3b4420..5e8bece00 100644 --- a/pom.xml +++ b/pom.xml @@ -11,7 +11,7 @@ https://github.com/IBM/cloudant-java-sdk com.ibm.cloud - 0.10.10 + 0.10.9 pom diff --git a/whitesource/checkPolicies-json.txt b/whitesource/checkPolicies-json.txt deleted file mode 100644 index c44c1a158..000000000 --- a/whitesource/checkPolicies-json.txt +++ /dev/null @@ -1,1342 +0,0 @@ -{ - "organization" : "Products", - "requestToken" : "05857a5fb2a92497984af4917bb24f0741762351643255", - "existingProjects" : { - "cloudant-java-sdk" : { - "children" : [ { - "resource" : { - "displayName" : "sdk-core-9.24.3.jar", - "link" : "https://ibmets.whitesourcesoftware.com/Wss/WSS.html#!libraryDetails;project=10304597;uuid=f1fe24fa-df30-4c2d-b28c-bf59cf629c8b", - "licenses" : [ "Apache 2.0" ], - "sha1" : "b23915f4442911ef0437c3560c54763463d6cd3e", - "vulnerabilities" : [ ], - "ignoredVulnerabilities" : [ ], - "keyUuid" : "f1fe24fa-df30-4c2d-b28c-bf59cf629c8b", - "systemPath" : "/home/jenkins/.m2/repository/com/ibm/cloud/sdk-core/9.24.3/sdk-core-9.24.3.jar", - "manifestFileSystemPath" : "/home/jenkins/agent/workspace/dant-sdks_cloudant-java-sdk_main/modules/common/pom.xml" - }, - "children" : [ { - "resource" : { - "displayName" : "okhttp-4.12.0.jar", - "link" : "https://ibmets.whitesourcesoftware.com/Wss/WSS.html#!libraryDetails;project=10304597;uuid=8af91326-7e24-4570-8c42-3bf4fbc69b8c", - "licenses" : [ "Apache 2.0" ], - "sha1" : "2f4525d4a200e97e1b87449c2cd9bd2e25b7e8cd", - "vulnerabilities" : [ ], - "ignoredVulnerabilities" : [ ], - "keyUuid" : "8af91326-7e24-4570-8c42-3bf4fbc69b8c", - "systemPath" : "/home/jenkins/.m2/repository/com/squareup/okhttp3/okhttp/4.12.0/okhttp-4.12.0.jar", - "manifestFileSystemPath" : "/home/jenkins/agent/workspace/dant-sdks_cloudant-java-sdk_main/modules/common/pom.xml" - }, - "children" : [ { - "resource" : { - "displayName" : "okio-3.6.0.jar", - "link" : "https://ibmets.whitesourcesoftware.com/Wss/WSS.html#!libraryDetails;project=10304597;uuid=f94fe2c7-f22c-4694-b79c-677358acbd42", - "licenses" : [ "Apache 2.0" ], - "sha1" : "8bf9683c80762d7dd47db12b68e99abea2a7ae05", - "vulnerabilities" : [ ], - "ignoredVulnerabilities" : [ ], - "keyUuid" : "f94fe2c7-f22c-4694-b79c-677358acbd42", - "systemPath" : "/home/jenkins/.m2/repository/com/squareup/okio/okio/3.6.0/okio-3.6.0.jar", - "manifestFileSystemPath" : "/home/jenkins/agent/workspace/dant-sdks_cloudant-java-sdk_main/modules/examples/pom.xml" - }, - "children" : [ { - "resource" : { - "displayName" : "okio-jvm-3.6.0.jar", - "link" : "https://ibmets.whitesourcesoftware.com/Wss/WSS.html#!libraryDetails;project=10304597;uuid=b61add4d-2cb0-453f-a3bb-cc05d9c6f693", - "licenses" : [ "Apache 2.0" ], - "sha1" : "5600569133b7bdefe1daf9ec7f4abeb6d13e1786", - "vulnerabilities" : [ ], - "ignoredVulnerabilities" : [ ], - "keyUuid" : "b61add4d-2cb0-453f-a3bb-cc05d9c6f693", - "systemPath" : "/home/jenkins/.m2/repository/com/squareup/okio/okio-jvm/3.6.0/okio-jvm-3.6.0.jar", - "manifestFileSystemPath" : "/home/jenkins/agent/workspace/dant-sdks_cloudant-java-sdk_main/modules/common/pom.xml" - }, - "children" : [ { - "resource" : { - "displayName" : "kotlin-stdlib-jdk8-1.9.25.jar", - "link" : "https://ibmets.whitesourcesoftware.com/Wss/WSS.html#!libraryDetails;project=10304597;uuid=4899aef5-62d2-4778-ab6b-1d4f34202725", - "licenses" : [ "Apache 2.0" ], - "sha1" : "20d44e880a284f7b5cd99dd69450b403073f49b2", - "vulnerabilities" : [ ], - "ignoredVulnerabilities" : [ ], - "keyUuid" : "4899aef5-62d2-4778-ab6b-1d4f34202725", - "systemPath" : "/home/jenkins/.m2/repository/org/jetbrains/kotlin/kotlin-stdlib-jdk8/1.9.25/kotlin-stdlib-jdk8-1.9.25.jar", - "manifestFileSystemPath" : "/home/jenkins/agent/workspace/dant-sdks_cloudant-java-sdk_main/modules/common/pom.xml" - }, - "children" : [ { - "resource" : { - "displayName" : "kotlin-stdlib-1.9.25.jar", - "link" : "https://ibmets.whitesourcesoftware.com/Wss/WSS.html#!libraryDetails;project=10304597;uuid=d3afea16-cbdb-4b78-ac8d-6d47ab345318", - "licenses" : [ "Apache 2.0" ], - "sha1" : "f700a2f2b8f0d6d0fde48f56d894dc722fb029d7", - "vulnerabilities" : [ ], - "ignoredVulnerabilities" : [ ], - "keyUuid" : "d3afea16-cbdb-4b78-ac8d-6d47ab345318", - "systemPath" : "/home/jenkins/.m2/repository/org/jetbrains/kotlin/kotlin-stdlib/1.9.25/kotlin-stdlib-1.9.25.jar", - "manifestFileSystemPath" : "/home/jenkins/agent/workspace/dant-sdks_cloudant-java-sdk_main/modules/examples/pom.xml" - }, - "children" : [ { - "resource" : { - "displayName" : "annotations-13.0.jar", - "link" : "https://ibmets.whitesourcesoftware.com/Wss/WSS.html#!libraryDetails;project=10304597;uuid=e7c1fc86-5dc9-408b-a912-65e7b9ea34ef", - "licenses" : [ "Apache 2.0" ], - "sha1" : "919f0dfe192fb4e063e7dacadee7f8bb9a2672a9", - "vulnerabilities" : [ ], - "ignoredVulnerabilities" : [ ], - "keyUuid" : "e7c1fc86-5dc9-408b-a912-65e7b9ea34ef", - "systemPath" : "/home/jenkins/.m2/repository/org/jetbrains/annotations/13.0/annotations-13.0.jar", - "manifestFileSystemPath" : "/home/jenkins/agent/workspace/dant-sdks_cloudant-java-sdk_main/modules/common/pom.xml" - }, - "children" : [ ] - } ] - }, { - "resource" : { - "displayName" : "kotlin-stdlib-jdk7-1.9.25.jar", - "link" : "https://ibmets.whitesourcesoftware.com/Wss/WSS.html#!libraryDetails;project=10304597;uuid=52692c35-88ea-4792-abf5-8e344580a5f8", - "licenses" : [ "Apache 2.0" ], - "sha1" : "1c166692314a2639e5edfed0d23ed7eee4a5c7a5", - "vulnerabilities" : [ ], - "ignoredVulnerabilities" : [ ], - "keyUuid" : "52692c35-88ea-4792-abf5-8e344580a5f8", - "systemPath" : "/home/jenkins/.m2/repository/org/jetbrains/kotlin/kotlin-stdlib-jdk7/1.9.25/kotlin-stdlib-jdk7-1.9.25.jar", - "manifestFileSystemPath" : "/home/jenkins/agent/workspace/dant-sdks_cloudant-java-sdk_main/modules/coverage-reports/pom.xml" - }, - "children" : [ ] - } ] - }, { - "resource" : { - "displayName" : "kotlin-stdlib-common-1.9.10.jar", - "link" : "https://ibmets.whitesourcesoftware.com/Wss/WSS.html#!libraryDetails;project=10304597;uuid=aa3fc623-4286-4965-8448-c44143909696", - "licenses" : [ "Apache 2.0" ], - "sha1" : "dafaf2c27f27c09220cee312df10917d9a5d97ce", - "vulnerabilities" : [ ], - "ignoredVulnerabilities" : [ ], - "keyUuid" : "aa3fc623-4286-4965-8448-c44143909696", - "systemPath" : "/home/jenkins/.m2/repository/org/jetbrains/kotlin/kotlin-stdlib-common/1.9.10/kotlin-stdlib-common-1.9.10.jar", - "manifestFileSystemPath" : "/home/jenkins/agent/workspace/dant-sdks_cloudant-java-sdk_main/modules/common/pom.xml" - }, - "children" : [ ] - } ] - } ] - } ] - }, { - "resource" : { - "displayName" : "logging-interceptor-4.12.0.jar", - "link" : "https://ibmets.whitesourcesoftware.com/Wss/WSS.html#!libraryDetails;project=10304597;uuid=5dbb4982-a93c-469a-9b47-f3743665ec28", - "licenses" : [ "Apache 2.0" ], - "sha1" : "e922c1f14d365c0f2bed140cc0825e18462c2778", - "vulnerabilities" : [ ], - "ignoredVulnerabilities" : [ ], - "keyUuid" : "5dbb4982-a93c-469a-9b47-f3743665ec28", - "systemPath" : "/home/jenkins/.m2/repository/com/squareup/okhttp3/logging-interceptor/4.12.0/logging-interceptor-4.12.0.jar", - "manifestFileSystemPath" : "/home/jenkins/agent/workspace/dant-sdks_cloudant-java-sdk_main/modules/examples/pom.xml" - }, - "children" : [ ] - }, { - "resource" : { - "displayName" : "okhttp-urlconnection-4.12.0.jar", - "link" : "https://ibmets.whitesourcesoftware.com/Wss/WSS.html#!libraryDetails;project=10304597;uuid=34103b14-866e-4f45-87c4-bd6d05feba17", - "licenses" : [ "Apache 2.0" ], - "sha1" : "f182bfa2eaca0bb8086904c8b5710976e5b55d65", - "vulnerabilities" : [ ], - "ignoredVulnerabilities" : [ ], - "keyUuid" : "34103b14-866e-4f45-87c4-bd6d05feba17", - "systemPath" : "/home/jenkins/.m2/repository/com/squareup/okhttp3/okhttp-urlconnection/4.12.0/okhttp-urlconnection-4.12.0.jar", - "manifestFileSystemPath" : "/home/jenkins/agent/workspace/dant-sdks_cloudant-java-sdk_main/modules/common/pom.xml" - }, - "children" : [ ] - }, { - "resource" : { - "displayName" : "commons-codec-1.18.0.jar", - "link" : "https://ibmets.whitesourcesoftware.com/Wss/WSS.html#!libraryDetails;project=10304597;uuid=cd1ee589-a637-41fd-b26a-da99d12bbd14", - "licenses" : [ "Apache 2.0" ], - "sha1" : "ee45d1cf6ec2cc2b809ff04b4dc7aec858e0df8f", - "vulnerabilities" : [ ], - "ignoredVulnerabilities" : [ ], - "keyUuid" : "cd1ee589-a637-41fd-b26a-da99d12bbd14", - "systemPath" : "/home/jenkins/.m2/repository/commons-codec/commons-codec/1.18.0/commons-codec-1.18.0.jar", - "manifestFileSystemPath" : "/home/jenkins/agent/workspace/dant-sdks_cloudant-java-sdk_main/modules/common/pom.xml" - }, - "children" : [ ] - }, { - "resource" : { - "displayName" : "commons-io-2.19.0.jar", - "link" : "https://ibmets.whitesourcesoftware.com/Wss/WSS.html#!libraryDetails;project=10304597;uuid=9783240f-4fc0-4c65-92f8-cf3eb65374c5", - "licenses" : [ "Apache 2.0" ], - "sha1" : "1f8d4a99ba72b77aa69101175efc79b0c7dcdd7e", - "vulnerabilities" : [ ], - "ignoredVulnerabilities" : [ ], - "keyUuid" : "9783240f-4fc0-4c65-92f8-cf3eb65374c5", - "systemPath" : "/home/jenkins/.m2/repository/commons-io/commons-io/2.19.0/commons-io-2.19.0.jar", - "manifestFileSystemPath" : "/home/jenkins/agent/workspace/dant-sdks_cloudant-java-sdk_main/modules/cloudant/pom.xml" - }, - "children" : [ ] - }, { - "resource" : { - "displayName" : "commons-lang3-3.18.0.jar", - "link" : "https://ibmets.whitesourcesoftware.com/Wss/WSS.html#!libraryDetails;project=10304597;uuid=112272a2-40d4-49f7-9ffc-5766b9ec9261", - "licenses" : [ "Apache 2.0" ], - "sha1" : "fb14946f0e39748a6571de0635acbe44e7885491", - "vulnerabilities" : [ ], - "ignoredVulnerabilities" : [ ], - "keyUuid" : "112272a2-40d4-49f7-9ffc-5766b9ec9261", - "systemPath" : "/home/jenkins/.m2/repository/org/apache/commons/commons-lang3/3.18.0/commons-lang3-3.18.0.jar", - "manifestFileSystemPath" : "/home/jenkins/agent/workspace/dant-sdks_cloudant-java-sdk_main/modules/coverage-reports/pom.xml" - }, - "children" : [ ] - }, { - "resource" : { - "displayName" : "gson-2.13.1.jar", - "link" : "https://ibmets.whitesourcesoftware.com/Wss/WSS.html#!libraryDetails;project=10304597;uuid=787fe0be-a7f3-46dd-b3ac-9934eb6b0ee0", - "licenses" : [ "Apache 2.0" ], - "sha1" : "853ce06c11316b33a8eae5e9095da096a9528b8f", - "vulnerabilities" : [ ], - "ignoredVulnerabilities" : [ ], - "keyUuid" : "787fe0be-a7f3-46dd-b3ac-9934eb6b0ee0", - "systemPath" : "/home/jenkins/.m2/repository/com/google/code/gson/gson/2.13.1/gson-2.13.1.jar", - "manifestFileSystemPath" : "/home/jenkins/agent/workspace/dant-sdks_cloudant-java-sdk_main/modules/common/pom.xml" - }, - "children" : [ { - "resource" : { - "displayName" : "error_prone_annotations-2.38.0.jar", - "link" : "https://ibmets.whitesourcesoftware.com/Wss/WSS.html#!libraryDetails;project=10304597;uuid=d9bc6a49-eef4-4316-b55f-d940d4e68874", - "licenses" : [ "Apache 2.0" ], - "sha1" : "fc0ae991433e8590ba51cd558421478318a74c8c", - "vulnerabilities" : [ ], - "ignoredVulnerabilities" : [ ], - "keyUuid" : "d9bc6a49-eef4-4316-b55f-d940d4e68874", - "systemPath" : "/home/jenkins/.m2/repository/com/google/errorprone/error_prone_annotations/2.38.0/error_prone_annotations-2.38.0.jar", - "manifestFileSystemPath" : "/home/jenkins/agent/workspace/dant-sdks_cloudant-java-sdk_main/modules/common/pom.xml" - }, - "children" : [ ] - } ] - }, { - "resource" : { - "displayName" : "rxjava-2.2.21.jar", - "link" : "https://ibmets.whitesourcesoftware.com/Wss/WSS.html#!libraryDetails;project=10304597;uuid=8af8902b-5ab3-4827-94a8-73f16c845276", - "licenses" : [ "Apache 2.0" ], - "sha1" : "6f13f24c44567fc660aab94d639cda9f0fe95628", - "vulnerabilities" : [ ], - "ignoredVulnerabilities" : [ ], - "keyUuid" : "8af8902b-5ab3-4827-94a8-73f16c845276", - "systemPath" : "/home/jenkins/.m2/repository/io/reactivex/rxjava2/rxjava/2.2.21/rxjava-2.2.21.jar", - "manifestFileSystemPath" : "/home/jenkins/agent/workspace/dant-sdks_cloudant-java-sdk_main/modules/cloudant/pom.xml" - }, - "children" : [ { - "resource" : { - "displayName" : "reactive-streams-1.0.3.jar", - "link" : "https://ibmets.whitesourcesoftware.com/Wss/WSS.html#!libraryDetails;project=10304597;uuid=bd17901f-ebb2-4651-8f9c-f66fbf789cd6", - "licenses" : [ "CC0" ], - "sha1" : "d9fb7a7926ffa635b3dcaa5049fb2bfa25b3e7d0", - "vulnerabilities" : [ ], - "ignoredVulnerabilities" : [ ], - "keyUuid" : "bd17901f-ebb2-4651-8f9c-f66fbf789cd6", - "systemPath" : "/home/jenkins/.m2/repository/org/reactivestreams/reactive-streams/1.0.3/reactive-streams-1.0.3.jar", - "manifestFileSystemPath" : "/home/jenkins/agent/workspace/dant-sdks_cloudant-java-sdk_main/modules/common/pom.xml" - }, - "children" : [ ] - } ] - } ] - }, { - "resource" : { - "displayName" : "cloudant-common-0.10.9.jar", - "link" : "https://ibmets.whitesourcesoftware.com/Wss/WSS.html#!libraryDetails;project=10304597;uuid=7a3edd53-7d9e-4724-888a-9242d663bc09", - "licenses" : [ "Apache 2.0" ], - "sha1" : "460276f890cb04468c18309668dd48ceb5bd782e", - "vulnerabilities" : [ ], - "ignoredVulnerabilities" : [ ], - "keyUuid" : "7a3edd53-7d9e-4724-888a-9242d663bc09", - "systemPath" : "/home/jenkins/.m2/repository/com/ibm/cloud/cloudant-common/0.10.9/cloudant-common-0.10.9.jar", - "manifestFileSystemPath" : "/home/jenkins/agent/workspace/dant-sdks_cloudant-java-sdk_main/modules/cloudant/pom.xml" - }, - "children" : [ { - "resource" : { - "displayName" : "sdk-core-9.24.3.jar", - "link" : "https://ibmets.whitesourcesoftware.com/Wss/WSS.html#!libraryDetails;project=10304597;uuid=f1fe24fa-df30-4c2d-b28c-bf59cf629c8b", - "licenses" : [ "Apache 2.0" ], - "sha1" : "b23915f4442911ef0437c3560c54763463d6cd3e", - "vulnerabilities" : [ ], - "ignoredVulnerabilities" : [ ], - "keyUuid" : "f1fe24fa-df30-4c2d-b28c-bf59cf629c8b", - "systemPath" : "/home/jenkins/.m2/repository/com/ibm/cloud/sdk-core/9.24.3/sdk-core-9.24.3.jar", - "manifestFileSystemPath" : "/home/jenkins/agent/workspace/dant-sdks_cloudant-java-sdk_main/modules/common/pom.xml" - }, - "children" : [ { - "resource" : { - "displayName" : "okhttp-4.12.0.jar", - "link" : "https://ibmets.whitesourcesoftware.com/Wss/WSS.html#!libraryDetails;project=10304597;uuid=8af91326-7e24-4570-8c42-3bf4fbc69b8c", - "licenses" : [ "Apache 2.0" ], - "sha1" : "2f4525d4a200e97e1b87449c2cd9bd2e25b7e8cd", - "vulnerabilities" : [ ], - "ignoredVulnerabilities" : [ ], - "keyUuid" : "8af91326-7e24-4570-8c42-3bf4fbc69b8c", - "systemPath" : "/home/jenkins/.m2/repository/com/squareup/okhttp3/okhttp/4.12.0/okhttp-4.12.0.jar", - "manifestFileSystemPath" : "/home/jenkins/agent/workspace/dant-sdks_cloudant-java-sdk_main/modules/common/pom.xml" - }, - "children" : [ { - "resource" : { - "displayName" : "okio-3.6.0.jar", - "link" : "https://ibmets.whitesourcesoftware.com/Wss/WSS.html#!libraryDetails;project=10304597;uuid=f94fe2c7-f22c-4694-b79c-677358acbd42", - "licenses" : [ "Apache 2.0" ], - "sha1" : "8bf9683c80762d7dd47db12b68e99abea2a7ae05", - "vulnerabilities" : [ ], - "ignoredVulnerabilities" : [ ], - "keyUuid" : "f94fe2c7-f22c-4694-b79c-677358acbd42", - "systemPath" : "/home/jenkins/.m2/repository/com/squareup/okio/okio/3.6.0/okio-3.6.0.jar", - "manifestFileSystemPath" : "/home/jenkins/agent/workspace/dant-sdks_cloudant-java-sdk_main/modules/examples/pom.xml" - }, - "children" : [ { - "resource" : { - "displayName" : "okio-jvm-3.6.0.jar", - "link" : "https://ibmets.whitesourcesoftware.com/Wss/WSS.html#!libraryDetails;project=10304597;uuid=b61add4d-2cb0-453f-a3bb-cc05d9c6f693", - "licenses" : [ "Apache 2.0" ], - "sha1" : "5600569133b7bdefe1daf9ec7f4abeb6d13e1786", - "vulnerabilities" : [ ], - "ignoredVulnerabilities" : [ ], - "keyUuid" : "b61add4d-2cb0-453f-a3bb-cc05d9c6f693", - "systemPath" : "/home/jenkins/.m2/repository/com/squareup/okio/okio-jvm/3.6.0/okio-jvm-3.6.0.jar", - "manifestFileSystemPath" : "/home/jenkins/agent/workspace/dant-sdks_cloudant-java-sdk_main/modules/common/pom.xml" - }, - "children" : [ { - "resource" : { - "displayName" : "kotlin-stdlib-jdk8-1.8.21.jar", - "link" : "https://ibmets.whitesourcesoftware.com/Wss/WSS.html#!libraryDetails;project=10304597;uuid=121dd260-1001-4130-968b-77e9aa207ab7", - "licenses" : [ "Apache 2.0" ], - "sha1" : "67f57e154437cd9e6e9cf368394b95814836ff88", - "vulnerabilities" : [ ], - "ignoredVulnerabilities" : [ ], - "keyUuid" : "121dd260-1001-4130-968b-77e9aa207ab7", - "systemPath" : "/home/jenkins/.m2/repository/org/jetbrains/kotlin/kotlin-stdlib-jdk8/1.8.21/kotlin-stdlib-jdk8-1.8.21.jar", - "manifestFileSystemPath" : "/home/jenkins/agent/workspace/dant-sdks_cloudant-java-sdk_main/modules/cloudant/pom.xml" - }, - "children" : [ { - "resource" : { - "displayName" : "kotlin-stdlib-1.9.25.jar", - "link" : "https://ibmets.whitesourcesoftware.com/Wss/WSS.html#!libraryDetails;project=10304597;uuid=d3afea16-cbdb-4b78-ac8d-6d47ab345318", - "licenses" : [ "Apache 2.0" ], - "sha1" : "f700a2f2b8f0d6d0fde48f56d894dc722fb029d7", - "vulnerabilities" : [ ], - "ignoredVulnerabilities" : [ ], - "keyUuid" : "d3afea16-cbdb-4b78-ac8d-6d47ab345318", - "systemPath" : "/home/jenkins/.m2/repository/org/jetbrains/kotlin/kotlin-stdlib/1.9.25/kotlin-stdlib-1.9.25.jar", - "manifestFileSystemPath" : "/home/jenkins/agent/workspace/dant-sdks_cloudant-java-sdk_main/modules/examples/pom.xml" - }, - "children" : [ { - "resource" : { - "displayName" : "annotations-13.0.jar", - "link" : "https://ibmets.whitesourcesoftware.com/Wss/WSS.html#!libraryDetails;project=10304597;uuid=e7c1fc86-5dc9-408b-a912-65e7b9ea34ef", - "licenses" : [ "Apache 2.0" ], - "sha1" : "919f0dfe192fb4e063e7dacadee7f8bb9a2672a9", - "vulnerabilities" : [ ], - "ignoredVulnerabilities" : [ ], - "keyUuid" : "e7c1fc86-5dc9-408b-a912-65e7b9ea34ef", - "systemPath" : "/home/jenkins/.m2/repository/org/jetbrains/annotations/13.0/annotations-13.0.jar", - "manifestFileSystemPath" : "/home/jenkins/agent/workspace/dant-sdks_cloudant-java-sdk_main/modules/common/pom.xml" - }, - "children" : [ ] - } ] - }, { - "resource" : { - "displayName" : "kotlin-stdlib-jdk7-1.8.21.jar", - "link" : "https://ibmets.whitesourcesoftware.com/Wss/WSS.html#!libraryDetails;project=10304597;uuid=7b7d031a-13a5-4f91-b73b-516e23c2760f", - "licenses" : [ "Apache 2.0" ], - "sha1" : "7473b8cd3c0ef9932345baf569bc398e8a717046", - "vulnerabilities" : [ ], - "ignoredVulnerabilities" : [ ], - "keyUuid" : "7b7d031a-13a5-4f91-b73b-516e23c2760f", - "systemPath" : "/home/jenkins/.m2/repository/org/jetbrains/kotlin/kotlin-stdlib-jdk7/1.8.21/kotlin-stdlib-jdk7-1.8.21.jar", - "manifestFileSystemPath" : "/home/jenkins/agent/workspace/dant-sdks_cloudant-java-sdk_main/modules/cloudant/pom.xml" - }, - "children" : [ ] - } ] - }, { - "resource" : { - "displayName" : "kotlin-stdlib-common-1.9.10.jar", - "link" : "https://ibmets.whitesourcesoftware.com/Wss/WSS.html#!libraryDetails;project=10304597;uuid=aa3fc623-4286-4965-8448-c44143909696", - "licenses" : [ "Apache 2.0" ], - "sha1" : "dafaf2c27f27c09220cee312df10917d9a5d97ce", - "vulnerabilities" : [ ], - "ignoredVulnerabilities" : [ ], - "keyUuid" : "aa3fc623-4286-4965-8448-c44143909696", - "systemPath" : "/home/jenkins/.m2/repository/org/jetbrains/kotlin/kotlin-stdlib-common/1.9.10/kotlin-stdlib-common-1.9.10.jar", - "manifestFileSystemPath" : "/home/jenkins/agent/workspace/dant-sdks_cloudant-java-sdk_main/modules/common/pom.xml" - }, - "children" : [ ] - } ] - } ] - } ] - }, { - "resource" : { - "displayName" : "logging-interceptor-4.12.0.jar", - "link" : "https://ibmets.whitesourcesoftware.com/Wss/WSS.html#!libraryDetails;project=10304597;uuid=5dbb4982-a93c-469a-9b47-f3743665ec28", - "licenses" : [ "Apache 2.0" ], - "sha1" : "e922c1f14d365c0f2bed140cc0825e18462c2778", - "vulnerabilities" : [ ], - "ignoredVulnerabilities" : [ ], - "keyUuid" : "5dbb4982-a93c-469a-9b47-f3743665ec28", - "systemPath" : "/home/jenkins/.m2/repository/com/squareup/okhttp3/logging-interceptor/4.12.0/logging-interceptor-4.12.0.jar", - "manifestFileSystemPath" : "/home/jenkins/agent/workspace/dant-sdks_cloudant-java-sdk_main/modules/examples/pom.xml" - }, - "children" : [ ] - }, { - "resource" : { - "displayName" : "okhttp-urlconnection-4.12.0.jar", - "link" : "https://ibmets.whitesourcesoftware.com/Wss/WSS.html#!libraryDetails;project=10304597;uuid=34103b14-866e-4f45-87c4-bd6d05feba17", - "licenses" : [ "Apache 2.0" ], - "sha1" : "f182bfa2eaca0bb8086904c8b5710976e5b55d65", - "vulnerabilities" : [ ], - "ignoredVulnerabilities" : [ ], - "keyUuid" : "34103b14-866e-4f45-87c4-bd6d05feba17", - "systemPath" : "/home/jenkins/.m2/repository/com/squareup/okhttp3/okhttp-urlconnection/4.12.0/okhttp-urlconnection-4.12.0.jar", - "manifestFileSystemPath" : "/home/jenkins/agent/workspace/dant-sdks_cloudant-java-sdk_main/modules/common/pom.xml" - }, - "children" : [ ] - }, { - "resource" : { - "displayName" : "commons-codec-1.18.0.jar", - "link" : "https://ibmets.whitesourcesoftware.com/Wss/WSS.html#!libraryDetails;project=10304597;uuid=cd1ee589-a637-41fd-b26a-da99d12bbd14", - "licenses" : [ "Apache 2.0" ], - "sha1" : "ee45d1cf6ec2cc2b809ff04b4dc7aec858e0df8f", - "vulnerabilities" : [ ], - "ignoredVulnerabilities" : [ ], - "keyUuid" : "cd1ee589-a637-41fd-b26a-da99d12bbd14", - "systemPath" : "/home/jenkins/.m2/repository/commons-codec/commons-codec/1.18.0/commons-codec-1.18.0.jar", - "manifestFileSystemPath" : "/home/jenkins/agent/workspace/dant-sdks_cloudant-java-sdk_main/modules/common/pom.xml" - }, - "children" : [ ] - }, { - "resource" : { - "displayName" : "commons-io-2.19.0.jar", - "link" : "https://ibmets.whitesourcesoftware.com/Wss/WSS.html#!libraryDetails;project=10304597;uuid=9783240f-4fc0-4c65-92f8-cf3eb65374c5", - "licenses" : [ "Apache 2.0" ], - "sha1" : "1f8d4a99ba72b77aa69101175efc79b0c7dcdd7e", - "vulnerabilities" : [ ], - "ignoredVulnerabilities" : [ ], - "keyUuid" : "9783240f-4fc0-4c65-92f8-cf3eb65374c5", - "systemPath" : "/home/jenkins/.m2/repository/commons-io/commons-io/2.19.0/commons-io-2.19.0.jar", - "manifestFileSystemPath" : "/home/jenkins/agent/workspace/dant-sdks_cloudant-java-sdk_main/modules/cloudant/pom.xml" - }, - "children" : [ ] - }, { - "resource" : { - "displayName" : "commons-lang3-3.18.0.jar", - "link" : "https://ibmets.whitesourcesoftware.com/Wss/WSS.html#!libraryDetails;project=10304597;uuid=112272a2-40d4-49f7-9ffc-5766b9ec9261", - "licenses" : [ "Apache 2.0" ], - "sha1" : "fb14946f0e39748a6571de0635acbe44e7885491", - "vulnerabilities" : [ ], - "ignoredVulnerabilities" : [ ], - "keyUuid" : "112272a2-40d4-49f7-9ffc-5766b9ec9261", - "systemPath" : "/home/jenkins/.m2/repository/org/apache/commons/commons-lang3/3.18.0/commons-lang3-3.18.0.jar", - "manifestFileSystemPath" : "/home/jenkins/agent/workspace/dant-sdks_cloudant-java-sdk_main/modules/coverage-reports/pom.xml" - }, - "children" : [ ] - }, { - "resource" : { - "displayName" : "gson-2.13.2.jar", - "link" : "https://ibmets.whitesourcesoftware.com/Wss/WSS.html#!libraryDetails;project=10304597;uuid=a3e6b623-f12f-4919-96be-511453aaa73e", - "licenses" : [ "Apache 2.0" ], - "sha1" : "48b8230771e573b54ce6e867a9001e75977fe78e", - "vulnerabilities" : [ ], - "ignoredVulnerabilities" : [ ], - "keyUuid" : "a3e6b623-f12f-4919-96be-511453aaa73e", - "systemPath" : "/home/jenkins/.m2/repository/com/google/code/gson/gson/2.13.2/gson-2.13.2.jar", - "manifestFileSystemPath" : "/home/jenkins/agent/workspace/dant-sdks_cloudant-java-sdk_main/modules/coverage-reports/pom.xml" - }, - "children" : [ { - "resource" : { - "displayName" : "error_prone_annotations-2.41.0.jar", - "link" : "https://ibmets.whitesourcesoftware.com/Wss/WSS.html#!libraryDetails;project=10304597;uuid=283e1b99-b290-4516-b4d4-83ea4b50d5c9", - "licenses" : [ "Apache 2.0" ], - "sha1" : "4381275efdef6ddfae38f002c31e84cd001c97f0", - "vulnerabilities" : [ ], - "ignoredVulnerabilities" : [ ], - "keyUuid" : "283e1b99-b290-4516-b4d4-83ea4b50d5c9", - "systemPath" : "/home/jenkins/.m2/repository/com/google/errorprone/error_prone_annotations/2.41.0/error_prone_annotations-2.41.0.jar", - "manifestFileSystemPath" : "/home/jenkins/agent/workspace/dant-sdks_cloudant-java-sdk_main/modules/cloudant/pom.xml" - }, - "children" : [ ] - } ] - }, { - "resource" : { - "displayName" : "rxjava-2.2.21.jar", - "link" : "https://ibmets.whitesourcesoftware.com/Wss/WSS.html#!libraryDetails;project=10304597;uuid=8af8902b-5ab3-4827-94a8-73f16c845276", - "licenses" : [ "Apache 2.0" ], - "sha1" : "6f13f24c44567fc660aab94d639cda9f0fe95628", - "vulnerabilities" : [ ], - "ignoredVulnerabilities" : [ ], - "keyUuid" : "8af8902b-5ab3-4827-94a8-73f16c845276", - "systemPath" : "/home/jenkins/.m2/repository/io/reactivex/rxjava2/rxjava/2.2.21/rxjava-2.2.21.jar", - "manifestFileSystemPath" : "/home/jenkins/agent/workspace/dant-sdks_cloudant-java-sdk_main/modules/cloudant/pom.xml" - }, - "children" : [ { - "resource" : { - "displayName" : "reactive-streams-1.0.3.jar", - "link" : "https://ibmets.whitesourcesoftware.com/Wss/WSS.html#!libraryDetails;project=10304597;uuid=bd17901f-ebb2-4651-8f9c-f66fbf789cd6", - "licenses" : [ "CC0" ], - "sha1" : "d9fb7a7926ffa635b3dcaa5049fb2bfa25b3e7d0", - "vulnerabilities" : [ ], - "ignoredVulnerabilities" : [ ], - "keyUuid" : "bd17901f-ebb2-4651-8f9c-f66fbf789cd6", - "systemPath" : "/home/jenkins/.m2/repository/org/reactivestreams/reactive-streams/1.0.3/reactive-streams-1.0.3.jar", - "manifestFileSystemPath" : "/home/jenkins/agent/workspace/dant-sdks_cloudant-java-sdk_main/modules/common/pom.xml" - }, - "children" : [ ] - } ] - } ] - } ] - }, { - "resource" : { - "displayName" : "cloudant-common-0.10.9.jar", - "link" : "https://ibmets.whitesourcesoftware.com/Wss/WSS.html#!libraryDetails;project=10304597;uuid=7a3edd53-7d9e-4724-888a-9242d663bc09", - "licenses" : [ "Apache 2.0" ], - "sha1" : "460276f890cb04468c18309668dd48ceb5bd782e", - "vulnerabilities" : [ ], - "ignoredVulnerabilities" : [ ], - "keyUuid" : "7a3edd53-7d9e-4724-888a-9242d663bc09", - "systemPath" : "/home/jenkins/.m2/repository/com/ibm/cloud/cloudant-common/0.10.9/cloudant-common-0.10.9.jar", - "manifestFileSystemPath" : "/home/jenkins/agent/workspace/dant-sdks_cloudant-java-sdk_main/modules/cloudant/pom.xml" - }, - "children" : [ { - "resource" : { - "displayName" : "sdk-core-9.24.3.jar", - "link" : "https://ibmets.whitesourcesoftware.com/Wss/WSS.html#!libraryDetails;project=10304597;uuid=f1fe24fa-df30-4c2d-b28c-bf59cf629c8b", - "licenses" : [ "Apache 2.0" ], - "sha1" : "b23915f4442911ef0437c3560c54763463d6cd3e", - "vulnerabilities" : [ ], - "ignoredVulnerabilities" : [ ], - "keyUuid" : "f1fe24fa-df30-4c2d-b28c-bf59cf629c8b", - "systemPath" : "/home/jenkins/.m2/repository/com/ibm/cloud/sdk-core/9.24.3/sdk-core-9.24.3.jar", - "manifestFileSystemPath" : "/home/jenkins/agent/workspace/dant-sdks_cloudant-java-sdk_main/modules/common/pom.xml" - }, - "children" : [ { - "resource" : { - "displayName" : "okhttp-4.12.0.jar", - "link" : "https://ibmets.whitesourcesoftware.com/Wss/WSS.html#!libraryDetails;project=10304597;uuid=8af91326-7e24-4570-8c42-3bf4fbc69b8c", - "licenses" : [ "Apache 2.0" ], - "sha1" : "2f4525d4a200e97e1b87449c2cd9bd2e25b7e8cd", - "vulnerabilities" : [ ], - "ignoredVulnerabilities" : [ ], - "keyUuid" : "8af91326-7e24-4570-8c42-3bf4fbc69b8c", - "systemPath" : "/home/jenkins/.m2/repository/com/squareup/okhttp3/okhttp/4.12.0/okhttp-4.12.0.jar", - "manifestFileSystemPath" : "/home/jenkins/agent/workspace/dant-sdks_cloudant-java-sdk_main/modules/common/pom.xml" - }, - "children" : [ { - "resource" : { - "displayName" : "okio-3.6.0.jar", - "link" : "https://ibmets.whitesourcesoftware.com/Wss/WSS.html#!libraryDetails;project=10304597;uuid=f94fe2c7-f22c-4694-b79c-677358acbd42", - "licenses" : [ "Apache 2.0" ], - "sha1" : "8bf9683c80762d7dd47db12b68e99abea2a7ae05", - "vulnerabilities" : [ ], - "ignoredVulnerabilities" : [ ], - "keyUuid" : "f94fe2c7-f22c-4694-b79c-677358acbd42", - "systemPath" : "/home/jenkins/.m2/repository/com/squareup/okio/okio/3.6.0/okio-3.6.0.jar", - "manifestFileSystemPath" : "/home/jenkins/agent/workspace/dant-sdks_cloudant-java-sdk_main/modules/examples/pom.xml" - }, - "children" : [ { - "resource" : { - "displayName" : "okio-jvm-3.6.0.jar", - "link" : "https://ibmets.whitesourcesoftware.com/Wss/WSS.html#!libraryDetails;project=10304597;uuid=b61add4d-2cb0-453f-a3bb-cc05d9c6f693", - "licenses" : [ "Apache 2.0" ], - "sha1" : "5600569133b7bdefe1daf9ec7f4abeb6d13e1786", - "vulnerabilities" : [ ], - "ignoredVulnerabilities" : [ ], - "keyUuid" : "b61add4d-2cb0-453f-a3bb-cc05d9c6f693", - "systemPath" : "/home/jenkins/.m2/repository/com/squareup/okio/okio-jvm/3.6.0/okio-jvm-3.6.0.jar", - "manifestFileSystemPath" : "/home/jenkins/agent/workspace/dant-sdks_cloudant-java-sdk_main/modules/common/pom.xml" - }, - "children" : [ { - "resource" : { - "displayName" : "kotlin-stdlib-jdk8-1.9.25.jar", - "link" : "https://ibmets.whitesourcesoftware.com/Wss/WSS.html#!libraryDetails;project=10304597;uuid=4899aef5-62d2-4778-ab6b-1d4f34202725", - "licenses" : [ "Apache 2.0" ], - "sha1" : "20d44e880a284f7b5cd99dd69450b403073f49b2", - "vulnerabilities" : [ ], - "ignoredVulnerabilities" : [ ], - "keyUuid" : "4899aef5-62d2-4778-ab6b-1d4f34202725", - "systemPath" : "/home/jenkins/.m2/repository/org/jetbrains/kotlin/kotlin-stdlib-jdk8/1.9.25/kotlin-stdlib-jdk8-1.9.25.jar", - "manifestFileSystemPath" : "/home/jenkins/agent/workspace/dant-sdks_cloudant-java-sdk_main/modules/common/pom.xml" - }, - "children" : [ { - "resource" : { - "displayName" : "kotlin-stdlib-1.9.25.jar", - "link" : "https://ibmets.whitesourcesoftware.com/Wss/WSS.html#!libraryDetails;project=10304597;uuid=d3afea16-cbdb-4b78-ac8d-6d47ab345318", - "licenses" : [ "Apache 2.0" ], - "sha1" : "f700a2f2b8f0d6d0fde48f56d894dc722fb029d7", - "vulnerabilities" : [ ], - "ignoredVulnerabilities" : [ ], - "keyUuid" : "d3afea16-cbdb-4b78-ac8d-6d47ab345318", - "systemPath" : "/home/jenkins/.m2/repository/org/jetbrains/kotlin/kotlin-stdlib/1.9.25/kotlin-stdlib-1.9.25.jar", - "manifestFileSystemPath" : "/home/jenkins/agent/workspace/dant-sdks_cloudant-java-sdk_main/modules/examples/pom.xml" - }, - "children" : [ { - "resource" : { - "displayName" : "annotations-13.0.jar", - "link" : "https://ibmets.whitesourcesoftware.com/Wss/WSS.html#!libraryDetails;project=10304597;uuid=e7c1fc86-5dc9-408b-a912-65e7b9ea34ef", - "licenses" : [ "Apache 2.0" ], - "sha1" : "919f0dfe192fb4e063e7dacadee7f8bb9a2672a9", - "vulnerabilities" : [ ], - "ignoredVulnerabilities" : [ ], - "keyUuid" : "e7c1fc86-5dc9-408b-a912-65e7b9ea34ef", - "systemPath" : "/home/jenkins/.m2/repository/org/jetbrains/annotations/13.0/annotations-13.0.jar", - "manifestFileSystemPath" : "/home/jenkins/agent/workspace/dant-sdks_cloudant-java-sdk_main/modules/common/pom.xml" - }, - "children" : [ ] - } ] - }, { - "resource" : { - "displayName" : "kotlin-stdlib-jdk7-1.9.25.jar", - "link" : "https://ibmets.whitesourcesoftware.com/Wss/WSS.html#!libraryDetails;project=10304597;uuid=52692c35-88ea-4792-abf5-8e344580a5f8", - "licenses" : [ "Apache 2.0" ], - "sha1" : "1c166692314a2639e5edfed0d23ed7eee4a5c7a5", - "vulnerabilities" : [ ], - "ignoredVulnerabilities" : [ ], - "keyUuid" : "52692c35-88ea-4792-abf5-8e344580a5f8", - "systemPath" : "/home/jenkins/.m2/repository/org/jetbrains/kotlin/kotlin-stdlib-jdk7/1.9.25/kotlin-stdlib-jdk7-1.9.25.jar", - "manifestFileSystemPath" : "/home/jenkins/agent/workspace/dant-sdks_cloudant-java-sdk_main/modules/coverage-reports/pom.xml" - }, - "children" : [ ] - } ] - }, { - "resource" : { - "displayName" : "kotlin-stdlib-common-1.9.10.jar", - "link" : "https://ibmets.whitesourcesoftware.com/Wss/WSS.html#!libraryDetails;project=10304597;uuid=aa3fc623-4286-4965-8448-c44143909696", - "licenses" : [ "Apache 2.0" ], - "sha1" : "dafaf2c27f27c09220cee312df10917d9a5d97ce", - "vulnerabilities" : [ ], - "ignoredVulnerabilities" : [ ], - "keyUuid" : "aa3fc623-4286-4965-8448-c44143909696", - "systemPath" : "/home/jenkins/.m2/repository/org/jetbrains/kotlin/kotlin-stdlib-common/1.9.10/kotlin-stdlib-common-1.9.10.jar", - "manifestFileSystemPath" : "/home/jenkins/agent/workspace/dant-sdks_cloudant-java-sdk_main/modules/common/pom.xml" - }, - "children" : [ ] - } ] - } ] - } ] - }, { - "resource" : { - "displayName" : "logging-interceptor-4.12.0.jar", - "link" : "https://ibmets.whitesourcesoftware.com/Wss/WSS.html#!libraryDetails;project=10304597;uuid=5dbb4982-a93c-469a-9b47-f3743665ec28", - "licenses" : [ "Apache 2.0" ], - "sha1" : "e922c1f14d365c0f2bed140cc0825e18462c2778", - "vulnerabilities" : [ ], - "ignoredVulnerabilities" : [ ], - "keyUuid" : "5dbb4982-a93c-469a-9b47-f3743665ec28", - "systemPath" : "/home/jenkins/.m2/repository/com/squareup/okhttp3/logging-interceptor/4.12.0/logging-interceptor-4.12.0.jar", - "manifestFileSystemPath" : "/home/jenkins/agent/workspace/dant-sdks_cloudant-java-sdk_main/modules/examples/pom.xml" - }, - "children" : [ ] - }, { - "resource" : { - "displayName" : "okhttp-urlconnection-4.12.0.jar", - "link" : "https://ibmets.whitesourcesoftware.com/Wss/WSS.html#!libraryDetails;project=10304597;uuid=34103b14-866e-4f45-87c4-bd6d05feba17", - "licenses" : [ "Apache 2.0" ], - "sha1" : "f182bfa2eaca0bb8086904c8b5710976e5b55d65", - "vulnerabilities" : [ ], - "ignoredVulnerabilities" : [ ], - "keyUuid" : "34103b14-866e-4f45-87c4-bd6d05feba17", - "systemPath" : "/home/jenkins/.m2/repository/com/squareup/okhttp3/okhttp-urlconnection/4.12.0/okhttp-urlconnection-4.12.0.jar", - "manifestFileSystemPath" : "/home/jenkins/agent/workspace/dant-sdks_cloudant-java-sdk_main/modules/common/pom.xml" - }, - "children" : [ ] - }, { - "resource" : { - "displayName" : "commons-codec-1.18.0.jar", - "link" : "https://ibmets.whitesourcesoftware.com/Wss/WSS.html#!libraryDetails;project=10304597;uuid=cd1ee589-a637-41fd-b26a-da99d12bbd14", - "licenses" : [ "Apache 2.0" ], - "sha1" : "ee45d1cf6ec2cc2b809ff04b4dc7aec858e0df8f", - "vulnerabilities" : [ ], - "ignoredVulnerabilities" : [ ], - "keyUuid" : "cd1ee589-a637-41fd-b26a-da99d12bbd14", - "systemPath" : "/home/jenkins/.m2/repository/commons-codec/commons-codec/1.18.0/commons-codec-1.18.0.jar", - "manifestFileSystemPath" : "/home/jenkins/agent/workspace/dant-sdks_cloudant-java-sdk_main/modules/common/pom.xml" - }, - "children" : [ ] - }, { - "resource" : { - "displayName" : "commons-io-2.19.0.jar", - "link" : "https://ibmets.whitesourcesoftware.com/Wss/WSS.html#!libraryDetails;project=10304597;uuid=9783240f-4fc0-4c65-92f8-cf3eb65374c5", - "licenses" : [ "Apache 2.0" ], - "sha1" : "1f8d4a99ba72b77aa69101175efc79b0c7dcdd7e", - "vulnerabilities" : [ ], - "ignoredVulnerabilities" : [ ], - "keyUuid" : "9783240f-4fc0-4c65-92f8-cf3eb65374c5", - "systemPath" : "/home/jenkins/.m2/repository/commons-io/commons-io/2.19.0/commons-io-2.19.0.jar", - "manifestFileSystemPath" : "/home/jenkins/agent/workspace/dant-sdks_cloudant-java-sdk_main/modules/cloudant/pom.xml" - }, - "children" : [ ] - }, { - "resource" : { - "displayName" : "commons-lang3-3.18.0.jar", - "link" : "https://ibmets.whitesourcesoftware.com/Wss/WSS.html#!libraryDetails;project=10304597;uuid=112272a2-40d4-49f7-9ffc-5766b9ec9261", - "licenses" : [ "Apache 2.0" ], - "sha1" : "fb14946f0e39748a6571de0635acbe44e7885491", - "vulnerabilities" : [ ], - "ignoredVulnerabilities" : [ ], - "keyUuid" : "112272a2-40d4-49f7-9ffc-5766b9ec9261", - "systemPath" : "/home/jenkins/.m2/repository/org/apache/commons/commons-lang3/3.18.0/commons-lang3-3.18.0.jar", - "manifestFileSystemPath" : "/home/jenkins/agent/workspace/dant-sdks_cloudant-java-sdk_main/modules/coverage-reports/pom.xml" - }, - "children" : [ ] - }, { - "resource" : { - "displayName" : "gson-2.13.2.jar", - "link" : "https://ibmets.whitesourcesoftware.com/Wss/WSS.html#!libraryDetails;project=10304597;uuid=a3e6b623-f12f-4919-96be-511453aaa73e", - "licenses" : [ "Apache 2.0" ], - "sha1" : "48b8230771e573b54ce6e867a9001e75977fe78e", - "vulnerabilities" : [ ], - "ignoredVulnerabilities" : [ ], - "keyUuid" : "a3e6b623-f12f-4919-96be-511453aaa73e", - "systemPath" : "/home/jenkins/.m2/repository/com/google/code/gson/gson/2.13.2/gson-2.13.2.jar", - "manifestFileSystemPath" : "/home/jenkins/agent/workspace/dant-sdks_cloudant-java-sdk_main/modules/coverage-reports/pom.xml" - }, - "children" : [ { - "resource" : { - "displayName" : "error_prone_annotations-2.41.0.jar", - "link" : "https://ibmets.whitesourcesoftware.com/Wss/WSS.html#!libraryDetails;project=10304597;uuid=283e1b99-b290-4516-b4d4-83ea4b50d5c9", - "licenses" : [ "Apache 2.0" ], - "sha1" : "4381275efdef6ddfae38f002c31e84cd001c97f0", - "vulnerabilities" : [ ], - "ignoredVulnerabilities" : [ ], - "keyUuid" : "283e1b99-b290-4516-b4d4-83ea4b50d5c9", - "systemPath" : "/home/jenkins/.m2/repository/com/google/errorprone/error_prone_annotations/2.41.0/error_prone_annotations-2.41.0.jar", - "manifestFileSystemPath" : "/home/jenkins/agent/workspace/dant-sdks_cloudant-java-sdk_main/modules/cloudant/pom.xml" - }, - "children" : [ ] - } ] - }, { - "resource" : { - "displayName" : "rxjava-2.2.21.jar", - "link" : "https://ibmets.whitesourcesoftware.com/Wss/WSS.html#!libraryDetails;project=10304597;uuid=8af8902b-5ab3-4827-94a8-73f16c845276", - "licenses" : [ "Apache 2.0" ], - "sha1" : "6f13f24c44567fc660aab94d639cda9f0fe95628", - "vulnerabilities" : [ ], - "ignoredVulnerabilities" : [ ], - "keyUuid" : "8af8902b-5ab3-4827-94a8-73f16c845276", - "systemPath" : "/home/jenkins/.m2/repository/io/reactivex/rxjava2/rxjava/2.2.21/rxjava-2.2.21.jar", - "manifestFileSystemPath" : "/home/jenkins/agent/workspace/dant-sdks_cloudant-java-sdk_main/modules/cloudant/pom.xml" - }, - "children" : [ { - "resource" : { - "displayName" : "reactive-streams-1.0.3.jar", - "link" : "https://ibmets.whitesourcesoftware.com/Wss/WSS.html#!libraryDetails;project=10304597;uuid=bd17901f-ebb2-4651-8f9c-f66fbf789cd6", - "licenses" : [ "CC0" ], - "sha1" : "d9fb7a7926ffa635b3dcaa5049fb2bfa25b3e7d0", - "vulnerabilities" : [ ], - "ignoredVulnerabilities" : [ ], - "keyUuid" : "bd17901f-ebb2-4651-8f9c-f66fbf789cd6", - "systemPath" : "/home/jenkins/.m2/repository/org/reactivestreams/reactive-streams/1.0.3/reactive-streams-1.0.3.jar", - "manifestFileSystemPath" : "/home/jenkins/agent/workspace/dant-sdks_cloudant-java-sdk_main/modules/common/pom.xml" - }, - "children" : [ ] - } ] - } ] - } ] - }, { - "resource" : { - "displayName" : "cloudant-0.10.9.jar", - "link" : "https://ibmets.whitesourcesoftware.com/Wss/WSS.html#!libraryDetails;project=10304597;uuid=8fd9ab85-5207-40b2-beb0-51e6570b179c", - "licenses" : [ "Apache 2.0" ], - "sha1" : "81e7d38fc7234ae7c766723c32336db012d1d40e", - "vulnerabilities" : [ ], - "ignoredVulnerabilities" : [ ], - "keyUuid" : "8fd9ab85-5207-40b2-beb0-51e6570b179c", - "systemPath" : "/home/jenkins/.m2/repository/com/ibm/cloud/cloudant/0.10.9/cloudant-0.10.9.jar", - "manifestFileSystemPath" : "/home/jenkins/agent/workspace/dant-sdks_cloudant-java-sdk_main/modules/coverage-reports/pom.xml" - }, - "children" : [ ] - }, { - "resource" : { - "displayName" : "cloudant-0.10.9.jar", - "link" : "https://ibmets.whitesourcesoftware.com/Wss/WSS.html#!libraryDetails;project=10304597;uuid=8fd9ab85-5207-40b2-beb0-51e6570b179c", - "licenses" : [ "Apache 2.0" ], - "sha1" : "81e7d38fc7234ae7c766723c32336db012d1d40e", - "vulnerabilities" : [ ], - "ignoredVulnerabilities" : [ ], - "keyUuid" : "8fd9ab85-5207-40b2-beb0-51e6570b179c", - "systemPath" : "/home/jenkins/.m2/repository/com/ibm/cloud/cloudant/0.10.9/cloudant-0.10.9.jar", - "manifestFileSystemPath" : "/home/jenkins/agent/workspace/dant-sdks_cloudant-java-sdk_main/modules/coverage-reports/pom.xml" - }, - "children" : [ { - "resource" : { - "displayName" : "cloudant-common-0.10.9.jar", - "link" : "https://ibmets.whitesourcesoftware.com/Wss/WSS.html#!libraryDetails;project=10304597;uuid=7a3edd53-7d9e-4724-888a-9242d663bc09", - "licenses" : [ "Apache 2.0" ], - "sha1" : "460276f890cb04468c18309668dd48ceb5bd782e", - "vulnerabilities" : [ ], - "ignoredVulnerabilities" : [ ], - "keyUuid" : "7a3edd53-7d9e-4724-888a-9242d663bc09", - "systemPath" : "/home/jenkins/.m2/repository/com/ibm/cloud/cloudant-common/0.10.9/cloudant-common-0.10.9.jar", - "manifestFileSystemPath" : "/home/jenkins/agent/workspace/dant-sdks_cloudant-java-sdk_main/modules/cloudant/pom.xml" - }, - "children" : [ { - "resource" : { - "displayName" : "sdk-core-9.24.3.jar", - "link" : "https://ibmets.whitesourcesoftware.com/Wss/WSS.html#!libraryDetails;project=10304597;uuid=f1fe24fa-df30-4c2d-b28c-bf59cf629c8b", - "licenses" : [ "Apache 2.0" ], - "sha1" : "b23915f4442911ef0437c3560c54763463d6cd3e", - "vulnerabilities" : [ ], - "ignoredVulnerabilities" : [ ], - "keyUuid" : "f1fe24fa-df30-4c2d-b28c-bf59cf629c8b", - "systemPath" : "/home/jenkins/.m2/repository/com/ibm/cloud/sdk-core/9.24.3/sdk-core-9.24.3.jar", - "manifestFileSystemPath" : "/home/jenkins/agent/workspace/dant-sdks_cloudant-java-sdk_main/modules/common/pom.xml" - }, - "children" : [ { - "resource" : { - "displayName" : "okhttp-4.12.0.jar", - "link" : "https://ibmets.whitesourcesoftware.com/Wss/WSS.html#!libraryDetails;project=10304597;uuid=8af91326-7e24-4570-8c42-3bf4fbc69b8c", - "licenses" : [ "Apache 2.0" ], - "sha1" : "2f4525d4a200e97e1b87449c2cd9bd2e25b7e8cd", - "vulnerabilities" : [ ], - "ignoredVulnerabilities" : [ ], - "keyUuid" : "8af91326-7e24-4570-8c42-3bf4fbc69b8c", - "systemPath" : "/home/jenkins/.m2/repository/com/squareup/okhttp3/okhttp/4.12.0/okhttp-4.12.0.jar", - "manifestFileSystemPath" : "/home/jenkins/agent/workspace/dant-sdks_cloudant-java-sdk_main/modules/common/pom.xml" - }, - "children" : [ { - "resource" : { - "displayName" : "okio-3.6.0.jar", - "link" : "https://ibmets.whitesourcesoftware.com/Wss/WSS.html#!libraryDetails;project=10304597;uuid=f94fe2c7-f22c-4694-b79c-677358acbd42", - "licenses" : [ "Apache 2.0" ], - "sha1" : "8bf9683c80762d7dd47db12b68e99abea2a7ae05", - "vulnerabilities" : [ ], - "ignoredVulnerabilities" : [ ], - "keyUuid" : "f94fe2c7-f22c-4694-b79c-677358acbd42", - "systemPath" : "/home/jenkins/.m2/repository/com/squareup/okio/okio/3.6.0/okio-3.6.0.jar", - "manifestFileSystemPath" : "/home/jenkins/agent/workspace/dant-sdks_cloudant-java-sdk_main/modules/examples/pom.xml" - }, - "children" : [ { - "resource" : { - "displayName" : "okio-jvm-3.6.0.jar", - "link" : "https://ibmets.whitesourcesoftware.com/Wss/WSS.html#!libraryDetails;project=10304597;uuid=b61add4d-2cb0-453f-a3bb-cc05d9c6f693", - "licenses" : [ "Apache 2.0" ], - "sha1" : "5600569133b7bdefe1daf9ec7f4abeb6d13e1786", - "vulnerabilities" : [ ], - "ignoredVulnerabilities" : [ ], - "keyUuid" : "b61add4d-2cb0-453f-a3bb-cc05d9c6f693", - "systemPath" : "/home/jenkins/.m2/repository/com/squareup/okio/okio-jvm/3.6.0/okio-jvm-3.6.0.jar", - "manifestFileSystemPath" : "/home/jenkins/agent/workspace/dant-sdks_cloudant-java-sdk_main/modules/common/pom.xml" - }, - "children" : [ { - "resource" : { - "displayName" : "kotlin-stdlib-jdk8-1.9.25.jar", - "link" : "https://ibmets.whitesourcesoftware.com/Wss/WSS.html#!libraryDetails;project=10304597;uuid=4899aef5-62d2-4778-ab6b-1d4f34202725", - "licenses" : [ "Apache 2.0" ], - "sha1" : "20d44e880a284f7b5cd99dd69450b403073f49b2", - "vulnerabilities" : [ ], - "ignoredVulnerabilities" : [ ], - "keyUuid" : "4899aef5-62d2-4778-ab6b-1d4f34202725", - "systemPath" : "/home/jenkins/.m2/repository/org/jetbrains/kotlin/kotlin-stdlib-jdk8/1.9.25/kotlin-stdlib-jdk8-1.9.25.jar", - "manifestFileSystemPath" : "/home/jenkins/agent/workspace/dant-sdks_cloudant-java-sdk_main/modules/common/pom.xml" - }, - "children" : [ { - "resource" : { - "displayName" : "kotlin-stdlib-1.9.25.jar", - "link" : "https://ibmets.whitesourcesoftware.com/Wss/WSS.html#!libraryDetails;project=10304597;uuid=d3afea16-cbdb-4b78-ac8d-6d47ab345318", - "licenses" : [ "Apache 2.0" ], - "sha1" : "f700a2f2b8f0d6d0fde48f56d894dc722fb029d7", - "vulnerabilities" : [ ], - "ignoredVulnerabilities" : [ ], - "keyUuid" : "d3afea16-cbdb-4b78-ac8d-6d47ab345318", - "systemPath" : "/home/jenkins/.m2/repository/org/jetbrains/kotlin/kotlin-stdlib/1.9.25/kotlin-stdlib-1.9.25.jar", - "manifestFileSystemPath" : "/home/jenkins/agent/workspace/dant-sdks_cloudant-java-sdk_main/modules/examples/pom.xml" - }, - "children" : [ { - "resource" : { - "displayName" : "annotations-13.0.jar", - "link" : "https://ibmets.whitesourcesoftware.com/Wss/WSS.html#!libraryDetails;project=10304597;uuid=e7c1fc86-5dc9-408b-a912-65e7b9ea34ef", - "licenses" : [ "Apache 2.0" ], - "sha1" : "919f0dfe192fb4e063e7dacadee7f8bb9a2672a9", - "vulnerabilities" : [ ], - "ignoredVulnerabilities" : [ ], - "keyUuid" : "e7c1fc86-5dc9-408b-a912-65e7b9ea34ef", - "systemPath" : "/home/jenkins/.m2/repository/org/jetbrains/annotations/13.0/annotations-13.0.jar", - "manifestFileSystemPath" : "/home/jenkins/agent/workspace/dant-sdks_cloudant-java-sdk_main/modules/common/pom.xml" - }, - "children" : [ ] - } ] - }, { - "resource" : { - "displayName" : "kotlin-stdlib-jdk7-1.9.25.jar", - "link" : "https://ibmets.whitesourcesoftware.com/Wss/WSS.html#!libraryDetails;project=10304597;uuid=52692c35-88ea-4792-abf5-8e344580a5f8", - "licenses" : [ "Apache 2.0" ], - "sha1" : "1c166692314a2639e5edfed0d23ed7eee4a5c7a5", - "vulnerabilities" : [ ], - "ignoredVulnerabilities" : [ ], - "keyUuid" : "52692c35-88ea-4792-abf5-8e344580a5f8", - "systemPath" : "/home/jenkins/.m2/repository/org/jetbrains/kotlin/kotlin-stdlib-jdk7/1.9.25/kotlin-stdlib-jdk7-1.9.25.jar", - "manifestFileSystemPath" : "/home/jenkins/agent/workspace/dant-sdks_cloudant-java-sdk_main/modules/coverage-reports/pom.xml" - }, - "children" : [ ] - } ] - }, { - "resource" : { - "displayName" : "kotlin-stdlib-common-1.9.10.jar", - "link" : "https://ibmets.whitesourcesoftware.com/Wss/WSS.html#!libraryDetails;project=10304597;uuid=aa3fc623-4286-4965-8448-c44143909696", - "licenses" : [ "Apache 2.0" ], - "sha1" : "dafaf2c27f27c09220cee312df10917d9a5d97ce", - "vulnerabilities" : [ ], - "ignoredVulnerabilities" : [ ], - "keyUuid" : "aa3fc623-4286-4965-8448-c44143909696", - "systemPath" : "/home/jenkins/.m2/repository/org/jetbrains/kotlin/kotlin-stdlib-common/1.9.10/kotlin-stdlib-common-1.9.10.jar", - "manifestFileSystemPath" : "/home/jenkins/agent/workspace/dant-sdks_cloudant-java-sdk_main/modules/common/pom.xml" - }, - "children" : [ ] - } ] - } ] - } ] - }, { - "resource" : { - "displayName" : "logging-interceptor-4.12.0.jar", - "link" : "https://ibmets.whitesourcesoftware.com/Wss/WSS.html#!libraryDetails;project=10304597;uuid=5dbb4982-a93c-469a-9b47-f3743665ec28", - "licenses" : [ "Apache 2.0" ], - "sha1" : "e922c1f14d365c0f2bed140cc0825e18462c2778", - "vulnerabilities" : [ ], - "ignoredVulnerabilities" : [ ], - "keyUuid" : "5dbb4982-a93c-469a-9b47-f3743665ec28", - "systemPath" : "/home/jenkins/.m2/repository/com/squareup/okhttp3/logging-interceptor/4.12.0/logging-interceptor-4.12.0.jar", - "manifestFileSystemPath" : "/home/jenkins/agent/workspace/dant-sdks_cloudant-java-sdk_main/modules/examples/pom.xml" - }, - "children" : [ ] - }, { - "resource" : { - "displayName" : "okhttp-urlconnection-4.12.0.jar", - "link" : "https://ibmets.whitesourcesoftware.com/Wss/WSS.html#!libraryDetails;project=10304597;uuid=34103b14-866e-4f45-87c4-bd6d05feba17", - "licenses" : [ "Apache 2.0" ], - "sha1" : "f182bfa2eaca0bb8086904c8b5710976e5b55d65", - "vulnerabilities" : [ ], - "ignoredVulnerabilities" : [ ], - "keyUuid" : "34103b14-866e-4f45-87c4-bd6d05feba17", - "systemPath" : "/home/jenkins/.m2/repository/com/squareup/okhttp3/okhttp-urlconnection/4.12.0/okhttp-urlconnection-4.12.0.jar", - "manifestFileSystemPath" : "/home/jenkins/agent/workspace/dant-sdks_cloudant-java-sdk_main/modules/common/pom.xml" - }, - "children" : [ ] - }, { - "resource" : { - "displayName" : "commons-codec-1.18.0.jar", - "link" : "https://ibmets.whitesourcesoftware.com/Wss/WSS.html#!libraryDetails;project=10304597;uuid=cd1ee589-a637-41fd-b26a-da99d12bbd14", - "licenses" : [ "Apache 2.0" ], - "sha1" : "ee45d1cf6ec2cc2b809ff04b4dc7aec858e0df8f", - "vulnerabilities" : [ ], - "ignoredVulnerabilities" : [ ], - "keyUuid" : "cd1ee589-a637-41fd-b26a-da99d12bbd14", - "systemPath" : "/home/jenkins/.m2/repository/commons-codec/commons-codec/1.18.0/commons-codec-1.18.0.jar", - "manifestFileSystemPath" : "/home/jenkins/agent/workspace/dant-sdks_cloudant-java-sdk_main/modules/common/pom.xml" - }, - "children" : [ ] - }, { - "resource" : { - "displayName" : "commons-io-2.19.0.jar", - "link" : "https://ibmets.whitesourcesoftware.com/Wss/WSS.html#!libraryDetails;project=10304597;uuid=9783240f-4fc0-4c65-92f8-cf3eb65374c5", - "licenses" : [ "Apache 2.0" ], - "sha1" : "1f8d4a99ba72b77aa69101175efc79b0c7dcdd7e", - "vulnerabilities" : [ ], - "ignoredVulnerabilities" : [ ], - "keyUuid" : "9783240f-4fc0-4c65-92f8-cf3eb65374c5", - "systemPath" : "/home/jenkins/.m2/repository/commons-io/commons-io/2.19.0/commons-io-2.19.0.jar", - "manifestFileSystemPath" : "/home/jenkins/agent/workspace/dant-sdks_cloudant-java-sdk_main/modules/cloudant/pom.xml" - }, - "children" : [ ] - }, { - "resource" : { - "displayName" : "commons-lang3-3.18.0.jar", - "link" : "https://ibmets.whitesourcesoftware.com/Wss/WSS.html#!libraryDetails;project=10304597;uuid=112272a2-40d4-49f7-9ffc-5766b9ec9261", - "licenses" : [ "Apache 2.0" ], - "sha1" : "fb14946f0e39748a6571de0635acbe44e7885491", - "vulnerabilities" : [ ], - "ignoredVulnerabilities" : [ ], - "keyUuid" : "112272a2-40d4-49f7-9ffc-5766b9ec9261", - "systemPath" : "/home/jenkins/.m2/repository/org/apache/commons/commons-lang3/3.18.0/commons-lang3-3.18.0.jar", - "manifestFileSystemPath" : "/home/jenkins/agent/workspace/dant-sdks_cloudant-java-sdk_main/modules/coverage-reports/pom.xml" - }, - "children" : [ ] - }, { - "resource" : { - "displayName" : "gson-2.13.2.jar", - "link" : "https://ibmets.whitesourcesoftware.com/Wss/WSS.html#!libraryDetails;project=10304597;uuid=a3e6b623-f12f-4919-96be-511453aaa73e", - "licenses" : [ "Apache 2.0" ], - "sha1" : "48b8230771e573b54ce6e867a9001e75977fe78e", - "vulnerabilities" : [ ], - "ignoredVulnerabilities" : [ ], - "keyUuid" : "a3e6b623-f12f-4919-96be-511453aaa73e", - "systemPath" : "/home/jenkins/.m2/repository/com/google/code/gson/gson/2.13.2/gson-2.13.2.jar", - "manifestFileSystemPath" : "/home/jenkins/agent/workspace/dant-sdks_cloudant-java-sdk_main/modules/coverage-reports/pom.xml" - }, - "children" : [ { - "resource" : { - "displayName" : "error_prone_annotations-2.41.0.jar", - "link" : "https://ibmets.whitesourcesoftware.com/Wss/WSS.html#!libraryDetails;project=10304597;uuid=283e1b99-b290-4516-b4d4-83ea4b50d5c9", - "licenses" : [ "Apache 2.0" ], - "sha1" : "4381275efdef6ddfae38f002c31e84cd001c97f0", - "vulnerabilities" : [ ], - "ignoredVulnerabilities" : [ ], - "keyUuid" : "283e1b99-b290-4516-b4d4-83ea4b50d5c9", - "systemPath" : "/home/jenkins/.m2/repository/com/google/errorprone/error_prone_annotations/2.41.0/error_prone_annotations-2.41.0.jar", - "manifestFileSystemPath" : "/home/jenkins/agent/workspace/dant-sdks_cloudant-java-sdk_main/modules/cloudant/pom.xml" - }, - "children" : [ ] - } ] - }, { - "resource" : { - "displayName" : "rxjava-2.2.21.jar", - "link" : "https://ibmets.whitesourcesoftware.com/Wss/WSS.html#!libraryDetails;project=10304597;uuid=8af8902b-5ab3-4827-94a8-73f16c845276", - "licenses" : [ "Apache 2.0" ], - "sha1" : "6f13f24c44567fc660aab94d639cda9f0fe95628", - "vulnerabilities" : [ ], - "ignoredVulnerabilities" : [ ], - "keyUuid" : "8af8902b-5ab3-4827-94a8-73f16c845276", - "systemPath" : "/home/jenkins/.m2/repository/io/reactivex/rxjava2/rxjava/2.2.21/rxjava-2.2.21.jar", - "manifestFileSystemPath" : "/home/jenkins/agent/workspace/dant-sdks_cloudant-java-sdk_main/modules/cloudant/pom.xml" - }, - "children" : [ { - "resource" : { - "displayName" : "reactive-streams-1.0.3.jar", - "link" : "https://ibmets.whitesourcesoftware.com/Wss/WSS.html#!libraryDetails;project=10304597;uuid=bd17901f-ebb2-4651-8f9c-f66fbf789cd6", - "licenses" : [ "CC0" ], - "sha1" : "d9fb7a7926ffa635b3dcaa5049fb2bfa25b3e7d0", - "vulnerabilities" : [ ], - "ignoredVulnerabilities" : [ ], - "keyUuid" : "bd17901f-ebb2-4651-8f9c-f66fbf789cd6", - "systemPath" : "/home/jenkins/.m2/repository/org/reactivestreams/reactive-streams/1.0.3/reactive-streams-1.0.3.jar", - "manifestFileSystemPath" : "/home/jenkins/agent/workspace/dant-sdks_cloudant-java-sdk_main/modules/common/pom.xml" - }, - "children" : [ ] - } ] - } ] - } ] - } ] - }, { - "resource" : { - "displayName" : "slf4j-jdk14-2.0.17.jar", - "link" : "https://ibmets.whitesourcesoftware.com/Wss/WSS.html#!libraryDetails;project=10304597;uuid=b2fce785-e0dc-4174-8b5b-7e4bbb21e62a", - "licenses" : [ "MIT" ], - "sha1" : "69829f245d0720a6e7a796e4920f2393f29bdece", - "vulnerabilities" : [ ], - "ignoredVulnerabilities" : [ ], - "keyUuid" : "b2fce785-e0dc-4174-8b5b-7e4bbb21e62a", - "systemPath" : "/home/jenkins/.m2/repository/org/slf4j/slf4j-jdk14/2.0.17/slf4j-jdk14-2.0.17.jar", - "manifestFileSystemPath" : "/home/jenkins/agent/workspace/dant-sdks_cloudant-java-sdk_main/modules/examples/pom.xml" - }, - "children" : [ { - "resource" : { - "displayName" : "slf4j-api-2.0.17.jar", - "link" : "https://ibmets.whitesourcesoftware.com/Wss/WSS.html#!libraryDetails;project=10304597;uuid=8fe9a90d-f740-4335-9ffb-106de293de5e", - "licenses" : [ "MIT" ], - "sha1" : "d9e58ac9c7779ba3bf8142aff6c830617a7fe60f", - "vulnerabilities" : [ ], - "ignoredVulnerabilities" : [ ], - "keyUuid" : "8fe9a90d-f740-4335-9ffb-106de293de5e", - "systemPath" : "/home/jenkins/.m2/repository/org/slf4j/slf4j-api/2.0.17/slf4j-api-2.0.17.jar", - "manifestFileSystemPath" : "/home/jenkins/agent/workspace/dant-sdks_cloudant-java-sdk_main/modules/examples/pom.xml" - }, - "children" : [ ] - } ] - }, { - "resource" : { - "displayName" : "cloudant-java-sdk Unmatched Source Files", - "link" : "https://ibmets.whitesourcesoftware.com/Wss/WSS.html#!libraryDetails;project=10304597;uuid=68d0d263-9ea5-483a-b991-a909ded12378", - "licenses" : [ ], - "sha1" : "f61219d0007fb6300be0ae6ba0eede484125d550", - "vulnerabilities" : [ ], - "ignoredVulnerabilities" : [ ], - "keyUuid" : "68d0d263-9ea5-483a-b991-a909ded12378", - "systemPath" : "/home/jenkins/agent/workspace/dant-sdks_cloudant-java-sdk_main/modules/cloudant/src/main/java/com/ibm/cloud/cloudant/v1/model/CapacityThroughputInformation.java" - }, - "children" : [ ] - }, { - "resource" : { - "displayName" : "cloudant-java-sdk-v0.10.9", - "link" : "https://ibmets.whitesourcesoftware.com/Wss/WSS.html#!libraryDetails;project=10304597;uuid=6e6ecf0b-a566-4825-8385-0bda3e40b71e", - "licenses" : [ "Apache 2.0" ], - "sha1" : "92034df908dc94e4998c53ecdcbcf144c0960c70", - "vulnerabilities" : [ ], - "ignoredVulnerabilities" : [ ], - "keyUuid" : "6e6ecf0b-a566-4825-8385-0bda3e40b71e", - "systemPath" : "/home/jenkins/agent/workspace/dant-sdks_cloudant-java-sdk_main/examples/snippets/putSecurity/example_request.java" - }, - "children" : [ ] - } ] - } - }, - "newProjects" : { }, - "projectNewResources" : { - "cloudant-java-sdk" : [ { - "displayName" : "gson-2.13.1.jar", - "link" : "https://ibmets.whitesourcesoftware.com/Wss/WSS.html#!libraryDetails;project=10304597;uuid=787fe0be-a7f3-46dd-b3ac-9934eb6b0ee0", - "licenses" : [ "Apache 2.0" ], - "sha1" : "853ce06c11316b33a8eae5e9095da096a9528b8f", - "vulnerabilities" : [ ], - "ignoredVulnerabilities" : [ ], - "keyUuid" : "787fe0be-a7f3-46dd-b3ac-9934eb6b0ee0", - "systemPath" : "/home/jenkins/.m2/repository/com/google/code/gson/gson/2.13.1/gson-2.13.1.jar", - "manifestFileSystemPath" : "/home/jenkins/agent/workspace/dant-sdks_cloudant-java-sdk_main/modules/common/pom.xml" - }, { - "displayName" : "cloudant-java-sdk Unmatched Source Files", - "link" : "https://ibmets.whitesourcesoftware.com/Wss/WSS.html#!libraryDetails;project=10304597;uuid=68d0d263-9ea5-483a-b991-a909ded12378", - "licenses" : [ ], - "sha1" : "f61219d0007fb6300be0ae6ba0eede484125d550", - "vulnerabilities" : [ ], - "ignoredVulnerabilities" : [ ], - "keyUuid" : "68d0d263-9ea5-483a-b991-a909ded12378", - "systemPath" : "/home/jenkins/agent/workspace/dant-sdks_cloudant-java-sdk_main/modules/cloudant/src/main/java/com/ibm/cloud/cloudant/v1/model/CapacityThroughputInformation.java" - }, { - "displayName" : "logging-interceptor-4.12.0.jar", - "link" : "https://ibmets.whitesourcesoftware.com/Wss/WSS.html#!libraryDetails;project=10304597;uuid=5dbb4982-a93c-469a-9b47-f3743665ec28", - "licenses" : [ "Apache 2.0" ], - "sha1" : "e922c1f14d365c0f2bed140cc0825e18462c2778", - "vulnerabilities" : [ ], - "ignoredVulnerabilities" : [ ], - "keyUuid" : "5dbb4982-a93c-469a-9b47-f3743665ec28", - "systemPath" : "/home/jenkins/.m2/repository/com/squareup/okhttp3/logging-interceptor/4.12.0/logging-interceptor-4.12.0.jar", - "manifestFileSystemPath" : "/home/jenkins/agent/workspace/dant-sdks_cloudant-java-sdk_main/modules/examples/pom.xml" - }, { - "displayName" : "rxjava-2.2.21.jar", - "link" : "https://ibmets.whitesourcesoftware.com/Wss/WSS.html#!libraryDetails;project=10304597;uuid=8af8902b-5ab3-4827-94a8-73f16c845276", - "licenses" : [ "Apache 2.0" ], - "sha1" : "6f13f24c44567fc660aab94d639cda9f0fe95628", - "vulnerabilities" : [ ], - "ignoredVulnerabilities" : [ ], - "keyUuid" : "8af8902b-5ab3-4827-94a8-73f16c845276", - "systemPath" : "/home/jenkins/.m2/repository/io/reactivex/rxjava2/rxjava/2.2.21/rxjava-2.2.21.jar", - "manifestFileSystemPath" : "/home/jenkins/agent/workspace/dant-sdks_cloudant-java-sdk_main/modules/cloudant/pom.xml" - }, { - "displayName" : "okio-3.6.0.jar", - "link" : "https://ibmets.whitesourcesoftware.com/Wss/WSS.html#!libraryDetails;project=10304597;uuid=f94fe2c7-f22c-4694-b79c-677358acbd42", - "licenses" : [ "Apache 2.0" ], - "sha1" : "8bf9683c80762d7dd47db12b68e99abea2a7ae05", - "vulnerabilities" : [ ], - "ignoredVulnerabilities" : [ ], - "keyUuid" : "f94fe2c7-f22c-4694-b79c-677358acbd42", - "systemPath" : "/home/jenkins/.m2/repository/com/squareup/okio/okio/3.6.0/okio-3.6.0.jar", - "manifestFileSystemPath" : "/home/jenkins/agent/workspace/dant-sdks_cloudant-java-sdk_main/modules/examples/pom.xml" - }, { - "displayName" : "cloudant-java-sdk-v0.10.9", - "link" : "https://ibmets.whitesourcesoftware.com/Wss/WSS.html#!libraryDetails;project=10304597;uuid=6e6ecf0b-a566-4825-8385-0bda3e40b71e", - "licenses" : [ "Apache 2.0" ], - "sha1" : "92034df908dc94e4998c53ecdcbcf144c0960c70", - "vulnerabilities" : [ ], - "ignoredVulnerabilities" : [ ], - "keyUuid" : "6e6ecf0b-a566-4825-8385-0bda3e40b71e", - "systemPath" : "/home/jenkins/agent/workspace/dant-sdks_cloudant-java-sdk_main/examples/snippets/putSecurity/example_request.java" - }, { - "displayName" : "reactive-streams-1.0.3.jar", - "link" : "https://ibmets.whitesourcesoftware.com/Wss/WSS.html#!libraryDetails;project=10304597;uuid=bd17901f-ebb2-4651-8f9c-f66fbf789cd6", - "licenses" : [ "CC0" ], - "sha1" : "d9fb7a7926ffa635b3dcaa5049fb2bfa25b3e7d0", - "vulnerabilities" : [ ], - "ignoredVulnerabilities" : [ ], - "keyUuid" : "bd17901f-ebb2-4651-8f9c-f66fbf789cd6", - "systemPath" : "/home/jenkins/.m2/repository/org/reactivestreams/reactive-streams/1.0.3/reactive-streams-1.0.3.jar", - "manifestFileSystemPath" : "/home/jenkins/agent/workspace/dant-sdks_cloudant-java-sdk_main/modules/common/pom.xml" - }, { - "displayName" : "kotlin-stdlib-jdk8-1.8.21.jar", - "link" : "https://ibmets.whitesourcesoftware.com/Wss/WSS.html#!libraryDetails;project=10304597;uuid=121dd260-1001-4130-968b-77e9aa207ab7", - "licenses" : [ "Apache 2.0" ], - "sha1" : "67f57e154437cd9e6e9cf368394b95814836ff88", - "vulnerabilities" : [ ], - "ignoredVulnerabilities" : [ ], - "keyUuid" : "121dd260-1001-4130-968b-77e9aa207ab7", - "systemPath" : "/home/jenkins/.m2/repository/org/jetbrains/kotlin/kotlin-stdlib-jdk8/1.8.21/kotlin-stdlib-jdk8-1.8.21.jar", - "manifestFileSystemPath" : "/home/jenkins/agent/workspace/dant-sdks_cloudant-java-sdk_main/modules/cloudant/pom.xml" - }, { - "displayName" : "slf4j-api-2.0.17.jar", - "link" : "https://ibmets.whitesourcesoftware.com/Wss/WSS.html#!libraryDetails;project=10304597;uuid=8fe9a90d-f740-4335-9ffb-106de293de5e", - "licenses" : [ "MIT" ], - "sha1" : "d9e58ac9c7779ba3bf8142aff6c830617a7fe60f", - "vulnerabilities" : [ ], - "ignoredVulnerabilities" : [ ], - "keyUuid" : "8fe9a90d-f740-4335-9ffb-106de293de5e", - "systemPath" : "/home/jenkins/.m2/repository/org/slf4j/slf4j-api/2.0.17/slf4j-api-2.0.17.jar", - "manifestFileSystemPath" : "/home/jenkins/agent/workspace/dant-sdks_cloudant-java-sdk_main/modules/examples/pom.xml" - }, { - "displayName" : "commons-lang3-3.18.0.jar", - "link" : "https://ibmets.whitesourcesoftware.com/Wss/WSS.html#!libraryDetails;project=10304597;uuid=112272a2-40d4-49f7-9ffc-5766b9ec9261", - "licenses" : [ "Apache 2.0" ], - "sha1" : "fb14946f0e39748a6571de0635acbe44e7885491", - "vulnerabilities" : [ ], - "ignoredVulnerabilities" : [ ], - "keyUuid" : "112272a2-40d4-49f7-9ffc-5766b9ec9261", - "systemPath" : "/home/jenkins/.m2/repository/org/apache/commons/commons-lang3/3.18.0/commons-lang3-3.18.0.jar", - "manifestFileSystemPath" : "/home/jenkins/agent/workspace/dant-sdks_cloudant-java-sdk_main/modules/coverage-reports/pom.xml" - }, { - "displayName" : "kotlin-stdlib-1.9.25.jar", - "link" : "https://ibmets.whitesourcesoftware.com/Wss/WSS.html#!libraryDetails;project=10304597;uuid=d3afea16-cbdb-4b78-ac8d-6d47ab345318", - "licenses" : [ "Apache 2.0" ], - "sha1" : "f700a2f2b8f0d6d0fde48f56d894dc722fb029d7", - "vulnerabilities" : [ ], - "ignoredVulnerabilities" : [ ], - "keyUuid" : "d3afea16-cbdb-4b78-ac8d-6d47ab345318", - "systemPath" : "/home/jenkins/.m2/repository/org/jetbrains/kotlin/kotlin-stdlib/1.9.25/kotlin-stdlib-1.9.25.jar", - "manifestFileSystemPath" : "/home/jenkins/agent/workspace/dant-sdks_cloudant-java-sdk_main/modules/examples/pom.xml" - }, { - "displayName" : "commons-io-2.19.0.jar", - "link" : "https://ibmets.whitesourcesoftware.com/Wss/WSS.html#!libraryDetails;project=10304597;uuid=9783240f-4fc0-4c65-92f8-cf3eb65374c5", - "licenses" : [ "Apache 2.0" ], - "sha1" : "1f8d4a99ba72b77aa69101175efc79b0c7dcdd7e", - "vulnerabilities" : [ ], - "ignoredVulnerabilities" : [ ], - "keyUuid" : "9783240f-4fc0-4c65-92f8-cf3eb65374c5", - "systemPath" : "/home/jenkins/.m2/repository/commons-io/commons-io/2.19.0/commons-io-2.19.0.jar", - "manifestFileSystemPath" : "/home/jenkins/agent/workspace/dant-sdks_cloudant-java-sdk_main/modules/cloudant/pom.xml" - }, { - "displayName" : "okhttp-4.12.0.jar", - "link" : "https://ibmets.whitesourcesoftware.com/Wss/WSS.html#!libraryDetails;project=10304597;uuid=8af91326-7e24-4570-8c42-3bf4fbc69b8c", - "licenses" : [ "Apache 2.0" ], - "sha1" : "2f4525d4a200e97e1b87449c2cd9bd2e25b7e8cd", - "vulnerabilities" : [ ], - "ignoredVulnerabilities" : [ ], - "keyUuid" : "8af91326-7e24-4570-8c42-3bf4fbc69b8c", - "systemPath" : "/home/jenkins/.m2/repository/com/squareup/okhttp3/okhttp/4.12.0/okhttp-4.12.0.jar", - "manifestFileSystemPath" : "/home/jenkins/agent/workspace/dant-sdks_cloudant-java-sdk_main/modules/common/pom.xml" - }, { - "displayName" : "cloudant-0.10.9.jar", - "link" : "https://ibmets.whitesourcesoftware.com/Wss/WSS.html#!libraryDetails;project=10304597;uuid=8fd9ab85-5207-40b2-beb0-51e6570b179c", - "licenses" : [ "Apache 2.0" ], - "sha1" : "81e7d38fc7234ae7c766723c32336db012d1d40e", - "vulnerabilities" : [ ], - "ignoredVulnerabilities" : [ ], - "keyUuid" : "8fd9ab85-5207-40b2-beb0-51e6570b179c", - "systemPath" : "/home/jenkins/.m2/repository/com/ibm/cloud/cloudant/0.10.9/cloudant-0.10.9.jar", - "manifestFileSystemPath" : "/home/jenkins/agent/workspace/dant-sdks_cloudant-java-sdk_main/modules/coverage-reports/pom.xml" - }, { - "displayName" : "kotlin-stdlib-common-1.9.10.jar", - "link" : "https://ibmets.whitesourcesoftware.com/Wss/WSS.html#!libraryDetails;project=10304597;uuid=aa3fc623-4286-4965-8448-c44143909696", - "licenses" : [ "Apache 2.0" ], - "sha1" : "dafaf2c27f27c09220cee312df10917d9a5d97ce", - "vulnerabilities" : [ ], - "ignoredVulnerabilities" : [ ], - "keyUuid" : "aa3fc623-4286-4965-8448-c44143909696", - "systemPath" : "/home/jenkins/.m2/repository/org/jetbrains/kotlin/kotlin-stdlib-common/1.9.10/kotlin-stdlib-common-1.9.10.jar", - "manifestFileSystemPath" : "/home/jenkins/agent/workspace/dant-sdks_cloudant-java-sdk_main/modules/common/pom.xml" - }, { - "displayName" : "okhttp-urlconnection-4.12.0.jar", - "link" : "https://ibmets.whitesourcesoftware.com/Wss/WSS.html#!libraryDetails;project=10304597;uuid=34103b14-866e-4f45-87c4-bd6d05feba17", - "licenses" : [ "Apache 2.0" ], - "sha1" : "f182bfa2eaca0bb8086904c8b5710976e5b55d65", - "vulnerabilities" : [ ], - "ignoredVulnerabilities" : [ ], - "keyUuid" : "34103b14-866e-4f45-87c4-bd6d05feba17", - "systemPath" : "/home/jenkins/.m2/repository/com/squareup/okhttp3/okhttp-urlconnection/4.12.0/okhttp-urlconnection-4.12.0.jar", - "manifestFileSystemPath" : "/home/jenkins/agent/workspace/dant-sdks_cloudant-java-sdk_main/modules/common/pom.xml" - }, { - "displayName" : "okio-jvm-3.6.0.jar", - "link" : "https://ibmets.whitesourcesoftware.com/Wss/WSS.html#!libraryDetails;project=10304597;uuid=b61add4d-2cb0-453f-a3bb-cc05d9c6f693", - "licenses" : [ "Apache 2.0" ], - "sha1" : "5600569133b7bdefe1daf9ec7f4abeb6d13e1786", - "vulnerabilities" : [ ], - "ignoredVulnerabilities" : [ ], - "keyUuid" : "b61add4d-2cb0-453f-a3bb-cc05d9c6f693", - "systemPath" : "/home/jenkins/.m2/repository/com/squareup/okio/okio-jvm/3.6.0/okio-jvm-3.6.0.jar", - "manifestFileSystemPath" : "/home/jenkins/agent/workspace/dant-sdks_cloudant-java-sdk_main/modules/common/pom.xml" - }, { - "displayName" : "kotlin-stdlib-jdk7-1.8.21.jar", - "link" : "https://ibmets.whitesourcesoftware.com/Wss/WSS.html#!libraryDetails;project=10304597;uuid=7b7d031a-13a5-4f91-b73b-516e23c2760f", - "licenses" : [ "Apache 2.0" ], - "sha1" : "7473b8cd3c0ef9932345baf569bc398e8a717046", - "vulnerabilities" : [ ], - "ignoredVulnerabilities" : [ ], - "keyUuid" : "7b7d031a-13a5-4f91-b73b-516e23c2760f", - "systemPath" : "/home/jenkins/.m2/repository/org/jetbrains/kotlin/kotlin-stdlib-jdk7/1.8.21/kotlin-stdlib-jdk7-1.8.21.jar", - "manifestFileSystemPath" : "/home/jenkins/agent/workspace/dant-sdks_cloudant-java-sdk_main/modules/cloudant/pom.xml" - }, { - "displayName" : "commons-codec-1.18.0.jar", - "link" : "https://ibmets.whitesourcesoftware.com/Wss/WSS.html#!libraryDetails;project=10304597;uuid=cd1ee589-a637-41fd-b26a-da99d12bbd14", - "licenses" : [ "Apache 2.0" ], - "sha1" : "ee45d1cf6ec2cc2b809ff04b4dc7aec858e0df8f", - "vulnerabilities" : [ ], - "ignoredVulnerabilities" : [ ], - "keyUuid" : "cd1ee589-a637-41fd-b26a-da99d12bbd14", - "systemPath" : "/home/jenkins/.m2/repository/commons-codec/commons-codec/1.18.0/commons-codec-1.18.0.jar", - "manifestFileSystemPath" : "/home/jenkins/agent/workspace/dant-sdks_cloudant-java-sdk_main/modules/common/pom.xml" - }, { - "displayName" : "error_prone_annotations-2.41.0.jar", - "link" : "https://ibmets.whitesourcesoftware.com/Wss/WSS.html#!libraryDetails;project=10304597;uuid=283e1b99-b290-4516-b4d4-83ea4b50d5c9", - "licenses" : [ "Apache 2.0" ], - "sha1" : "4381275efdef6ddfae38f002c31e84cd001c97f0", - "vulnerabilities" : [ ], - "ignoredVulnerabilities" : [ ], - "keyUuid" : "283e1b99-b290-4516-b4d4-83ea4b50d5c9", - "systemPath" : "/home/jenkins/.m2/repository/com/google/errorprone/error_prone_annotations/2.41.0/error_prone_annotations-2.41.0.jar", - "manifestFileSystemPath" : "/home/jenkins/agent/workspace/dant-sdks_cloudant-java-sdk_main/modules/cloudant/pom.xml" - }, { - "displayName" : "kotlin-stdlib-jdk7-1.9.25.jar", - "link" : "https://ibmets.whitesourcesoftware.com/Wss/WSS.html#!libraryDetails;project=10304597;uuid=52692c35-88ea-4792-abf5-8e344580a5f8", - "licenses" : [ "Apache 2.0" ], - "sha1" : "1c166692314a2639e5edfed0d23ed7eee4a5c7a5", - "vulnerabilities" : [ ], - "ignoredVulnerabilities" : [ ], - "keyUuid" : "52692c35-88ea-4792-abf5-8e344580a5f8", - "systemPath" : "/home/jenkins/.m2/repository/org/jetbrains/kotlin/kotlin-stdlib-jdk7/1.9.25/kotlin-stdlib-jdk7-1.9.25.jar", - "manifestFileSystemPath" : "/home/jenkins/agent/workspace/dant-sdks_cloudant-java-sdk_main/modules/coverage-reports/pom.xml" - }, { - "displayName" : "annotations-13.0.jar", - "link" : "https://ibmets.whitesourcesoftware.com/Wss/WSS.html#!libraryDetails;project=10304597;uuid=e7c1fc86-5dc9-408b-a912-65e7b9ea34ef", - "licenses" : [ "Apache 2.0" ], - "sha1" : "919f0dfe192fb4e063e7dacadee7f8bb9a2672a9", - "vulnerabilities" : [ ], - "ignoredVulnerabilities" : [ ], - "keyUuid" : "e7c1fc86-5dc9-408b-a912-65e7b9ea34ef", - "systemPath" : "/home/jenkins/.m2/repository/org/jetbrains/annotations/13.0/annotations-13.0.jar", - "manifestFileSystemPath" : "/home/jenkins/agent/workspace/dant-sdks_cloudant-java-sdk_main/modules/common/pom.xml" - }, { - "displayName" : "cloudant-common-0.10.9.jar", - "link" : "https://ibmets.whitesourcesoftware.com/Wss/WSS.html#!libraryDetails;project=10304597;uuid=7a3edd53-7d9e-4724-888a-9242d663bc09", - "licenses" : [ "Apache 2.0" ], - "sha1" : "460276f890cb04468c18309668dd48ceb5bd782e", - "vulnerabilities" : [ ], - "ignoredVulnerabilities" : [ ], - "keyUuid" : "7a3edd53-7d9e-4724-888a-9242d663bc09", - "systemPath" : "/home/jenkins/.m2/repository/com/ibm/cloud/cloudant-common/0.10.9/cloudant-common-0.10.9.jar", - "manifestFileSystemPath" : "/home/jenkins/agent/workspace/dant-sdks_cloudant-java-sdk_main/modules/cloudant/pom.xml" - }, { - "displayName" : "kotlin-stdlib-jdk8-1.9.25.jar", - "link" : "https://ibmets.whitesourcesoftware.com/Wss/WSS.html#!libraryDetails;project=10304597;uuid=4899aef5-62d2-4778-ab6b-1d4f34202725", - "licenses" : [ "Apache 2.0" ], - "sha1" : "20d44e880a284f7b5cd99dd69450b403073f49b2", - "vulnerabilities" : [ ], - "ignoredVulnerabilities" : [ ], - "keyUuid" : "4899aef5-62d2-4778-ab6b-1d4f34202725", - "systemPath" : "/home/jenkins/.m2/repository/org/jetbrains/kotlin/kotlin-stdlib-jdk8/1.9.25/kotlin-stdlib-jdk8-1.9.25.jar", - "manifestFileSystemPath" : "/home/jenkins/agent/workspace/dant-sdks_cloudant-java-sdk_main/modules/common/pom.xml" - }, { - "displayName" : "slf4j-jdk14-2.0.17.jar", - "link" : "https://ibmets.whitesourcesoftware.com/Wss/WSS.html#!libraryDetails;project=10304597;uuid=b2fce785-e0dc-4174-8b5b-7e4bbb21e62a", - "licenses" : [ "MIT" ], - "sha1" : "69829f245d0720a6e7a796e4920f2393f29bdece", - "vulnerabilities" : [ ], - "ignoredVulnerabilities" : [ ], - "keyUuid" : "b2fce785-e0dc-4174-8b5b-7e4bbb21e62a", - "systemPath" : "/home/jenkins/.m2/repository/org/slf4j/slf4j-jdk14/2.0.17/slf4j-jdk14-2.0.17.jar", - "manifestFileSystemPath" : "/home/jenkins/agent/workspace/dant-sdks_cloudant-java-sdk_main/modules/examples/pom.xml" - }, { - "displayName" : "sdk-core-9.24.3.jar", - "link" : "https://ibmets.whitesourcesoftware.com/Wss/WSS.html#!libraryDetails;project=10304597;uuid=f1fe24fa-df30-4c2d-b28c-bf59cf629c8b", - "licenses" : [ "Apache 2.0" ], - "sha1" : "b23915f4442911ef0437c3560c54763463d6cd3e", - "vulnerabilities" : [ ], - "ignoredVulnerabilities" : [ ], - "keyUuid" : "f1fe24fa-df30-4c2d-b28c-bf59cf629c8b", - "systemPath" : "/home/jenkins/.m2/repository/com/ibm/cloud/sdk-core/9.24.3/sdk-core-9.24.3.jar", - "manifestFileSystemPath" : "/home/jenkins/agent/workspace/dant-sdks_cloudant-java-sdk_main/modules/common/pom.xml" - }, { - "displayName" : "gson-2.13.2.jar", - "link" : "https://ibmets.whitesourcesoftware.com/Wss/WSS.html#!libraryDetails;project=10304597;uuid=a3e6b623-f12f-4919-96be-511453aaa73e", - "licenses" : [ "Apache 2.0" ], - "sha1" : "48b8230771e573b54ce6e867a9001e75977fe78e", - "vulnerabilities" : [ ], - "ignoredVulnerabilities" : [ ], - "keyUuid" : "a3e6b623-f12f-4919-96be-511453aaa73e", - "systemPath" : "/home/jenkins/.m2/repository/com/google/code/gson/gson/2.13.2/gson-2.13.2.jar", - "manifestFileSystemPath" : "/home/jenkins/agent/workspace/dant-sdks_cloudant-java-sdk_main/modules/coverage-reports/pom.xml" - }, { - "displayName" : "error_prone_annotations-2.38.0.jar", - "link" : "https://ibmets.whitesourcesoftware.com/Wss/WSS.html#!libraryDetails;project=10304597;uuid=d9bc6a49-eef4-4316-b55f-d940d4e68874", - "licenses" : [ "Apache 2.0" ], - "sha1" : "fc0ae991433e8590ba51cd558421478318a74c8c", - "vulnerabilities" : [ ], - "ignoredVulnerabilities" : [ ], - "keyUuid" : "d9bc6a49-eef4-4316-b55f-d940d4e68874", - "systemPath" : "/home/jenkins/.m2/repository/com/google/errorprone/error_prone_annotations/2.38.0/error_prone_annotations-2.38.0.jar", - "manifestFileSystemPath" : "/home/jenkins/agent/workspace/dant-sdks_cloudant-java-sdk_main/modules/common/pom.xml" - } ] - } -} \ No newline at end of file diff --git a/whitesource/index.html b/whitesource/index.html deleted file mode 100644 index 25b89a4d0..000000000 --- a/whitesource/index.html +++ /dev/null @@ -1,1410 +0,0 @@ - - - - WhiteSource - Policy Check Summary - - - - - - - - -
-
- - - - -
-

Policy Check Summary

-

- No Policy Violations

-
- -
-
- - -
- Report creation time - 2025-11-05 14:07:36 -
- -
-
-
- -
-
No new projects found
-
-
Existing Projects
- (found 1 existing projects) -
- -
-
-
- - - - -
-
cloudant-java-sdk
-
-
- - - - -
-
- No Policy Violations
-
- show details -
-
-
- - -
- -
- - -
-
-
License Distribution
-
- - - - - - -
- - - - - - -
- 24 - -
- - - - -
-
-
-
- - - - - - -
- 2 - -
- - - - -
-
-
-
- - - - - - -
- 1 - -
- - - - -
-
-
-
- - - - - - -
- - - - -
- Apache 2.0 -
-
- - - - -
- MIT -
-
- - - - -
- CC0 -
-
-
-
-
- - diff --git a/whitesource/policyRejectionSummary.json b/whitesource/policyRejectionSummary.json deleted file mode 100644 index 47c1d3f43..000000000 --- a/whitesource/policyRejectionSummary.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "rejectingPolicies" : [ ], - "summary" : { - "totalRejectedLibraries" : 0 - } -} \ No newline at end of file From af8bf0fa00184d39adabfd168077f5a45f611a32 Mon Sep 17 00:00:00 2001 From: Ildiko Eigel Date: Wed, 5 Nov 2025 15:58:26 +0100 Subject: [PATCH 2/2] build: re-add the version changes files --- .bumpversion.toml | 2 +- README.md | 34 ++++++++++++++++---------------- docs/Changes_Follower.md | 4 ++-- docs/Examples.md | 2 +- docs/Pagination.md | 18 ++++++++--------- docs/README.md | 2 +- modules/cloudant/pom.xml | 6 +++--- modules/common/pom.xml | 4 ++-- modules/coverage-reports/pom.xml | 2 +- modules/examples/pom.xml | 2 +- pom.xml | 2 +- 11 files changed, 39 insertions(+), 39 deletions(-) diff --git a/.bumpversion.toml b/.bumpversion.toml index a21c5e67d..767719977 100644 --- a/.bumpversion.toml +++ b/.bumpversion.toml @@ -1,5 +1,5 @@ [tool.bumpversion] -current_version = "0.10.9" +current_version = "0.10.10" commit = true message = "Update version {current_version} -> {new_version}" parse = "^(?P0|[1-9]\\d*)\\.(?P0|[1-9]\\d*)\\.(?P0|[1-9]\\d*)(?:-(?P(?:0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*)(?:\\.(?:0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*))*))?(?:\\+(?P[0-9a-zA-Z-]+(?:\\.[0-9a-zA-Z-]+)*))?$" diff --git a/README.md b/README.md index fa0651b56..161dc9bfd 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ [![Release](https://img.shields.io/github/v/release/IBM/cloudant-java-sdk?include_prereleases&sort=semver)](https://github.com/IBM/cloudant-java-sdk/releases/latest) [![Docs](https://img.shields.io/static/v1?label=Javadoc&message=latest&color=blue)](https://ibm.github.io/cloudant-java-sdk/) -# IBM Cloudant Java SDK Version 0.10.9 +# IBM Cloudant Java SDK Version 0.10.10 IBM Cloudant Java SDK is a client library that interacts with the [IBM Cloudant APIs](https://cloud.ibm.com/apidocs/cloudant?code=java). @@ -67,8 +67,8 @@ project: - Handles the authentication. - Familiar user experience with IBM Cloud SDKs. - Flexibility to use either built-in models or byte-based requests and responses for documents. -- Built-in [Changes feed follower](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.9/docs/Changes_Follower.md) -- Built-in [Pagination](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.9/docs/Pagination.md) (beta) +- Built-in [Changes feed follower](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.10/docs/Changes_Follower.md) +- Built-in [Pagination](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.10/docs/Pagination.md) (beta) - HTTP2 support for higher performance connections to IBM Cloudant. - Perform requests either synchronously or asynchronously. - Instances of the client are unconditionally thread-safe. @@ -85,7 +85,7 @@ project: ## Installation -The current version of this SDK is: 0.10.9 +The current version of this SDK is: 0.10.10 The project artifacts are published on the [Maven Central](https://repo1.maven.org/maven2/com/ibm/cloud/cloudant/). @@ -112,7 +112,7 @@ Extend *Maven dependencies* in your `pom.xml` file with the `cloudant` library. com.ibm.cloud cloudant - 0.10.9 + 0.10.10 ``` @@ -124,7 +124,7 @@ Add the `cloudant` library to the *dependencies* in your `build.gradle` file: ```groovy dependencies { // other dependencies... - implementation group: "com.ibm.cloud", name: "cloudant", version: "0.10.9" + implementation group: "com.ibm.cloud", name: "cloudant", version: "0.10.10" } ``` @@ -138,16 +138,16 @@ account. There are several ways to **set** these authentication properties: -1. As [environment variables](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.9/docs/Authentication.md#authentication-with-environment-variables) -2. The [programmatic approach](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.9/docs/Authentication.md#programmatic-authentication) -3. With an [external credentials file](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.9/docs/Authentication.md#authentication-with-external-configuration) +1. As [environment variables](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.10/docs/Authentication.md#authentication-with-environment-variables) +2. The [programmatic approach](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.10/docs/Authentication.md#programmatic-authentication) +3. With an [external credentials file](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.10/docs/Authentication.md#authentication-with-external-configuration) The following section describes the different authentication types and provides environment variable examples. Examples for other configuration methods are available by following the provided links. ### Authentication -Consult the [authentication document](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.9/docs/Authentication.md) +Consult the [authentication document](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.10/docs/Authentication.md) for comprehensive details of all the available authentication methods and how to configure them with environment settings or programmatically. @@ -196,10 +196,10 @@ List response = System.out.println(response); ``` -[More tutorial examples](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.9/docs/Examples.md) for creating a database +[More tutorial examples](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.10/docs/Examples.md) for creating a database and document create, read, update and delete operations. -For a complete list of code examples, see the [examples directory](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.9/examples#examples-for-java). +For a complete list of code examples, see the [examples directory](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.10/examples#examples-for-java). ### Error handling @@ -222,7 +222,7 @@ Response byte stream is supported in functions with the suffix of `AsStream`. The returned byte stream allows the response body to be consumed without triggering JSON unmarshalling that is typically performed by the SDK. -The [update document](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.9/docs/Examples.md#3-update-your-previously-created-document) section +The [update document](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.10/docs/Examples.md#3-update-your-previously-created-document) section contains examples for both request and response byte stream cases. The API reference contains further examples of using byte streams. @@ -238,7 +238,7 @@ Expand them to see examples of: ### Further resources -- [Cloudant Java SDK feature docs](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.9/docs) +- [Cloudant Java SDK feature docs](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.10/docs) - [Cloudant API docs](https://cloud.ibm.com/apidocs/cloudant?code=java): API reference including usage examples for Cloudant Java SDK API. - [Javadoc](https://ibm.github.io/cloudant-java-sdk/): @@ -261,7 +261,7 @@ If you encounter an issue with the project, you are welcome to submit a Before you submit a bug report, search for [similar issues](https://github.com/IBM/cloudant-java-sdk/issues?q=is%3Aissue) and review the -[KNOWN_ISSUES file](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.9/KNOWN_ISSUES.md) to verify that your issue hasn't been reported yet. +[KNOWN_ISSUES file](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.10/KNOWN_ISSUES.md) to verify that your issue hasn't been reported yet. Please consult the [security policy](https://github.com/IBM/cloudant-java-sdk/security/policy) before opening security related issues. @@ -291,8 +291,8 @@ Find more open source projects on the [IBM GitHub](http://ibm.github.io/) page. ## Contributing -For more information, see [CONTRIBUTING](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.9/CONTRIBUTING.md). +For more information, see [CONTRIBUTING](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.10/CONTRIBUTING.md). ## License -This SDK is released under the Apache 2.0 license. To read the full text of the license, see [LICENSE](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.9/LICENSE). +This SDK is released under the Apache 2.0 license. To read the full text of the license, see [LICENSE](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.10/LICENSE). diff --git a/docs/Changes_Follower.md b/docs/Changes_Follower.md index 919e0b0ea..704dfa2e1 100644 --- a/docs/Changes_Follower.md +++ b/docs/Changes_Follower.md @@ -67,7 +67,7 @@ The changes follower requires the client to have HTTP timeouts of at least 1 min instantiation if it is insufficient. The default client configuration has sufficiently long timeouts. For use-cases where these configuration limitations are too restrictive then write code to use the SDK's -[POST `_changes` API](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.9/examples#postchanges) instead of the follower. +[POST `_changes` API](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.10/examples#postchanges) instead of the follower. ## Error suppression @@ -101,7 +101,7 @@ The follower is not optimized for some use cases and it is not recommended to us * Setting `include_docs` and larger document sizes (for example > 10 kiB). * The volume of changes is very high (if the rate of changes in the database exceeds the follower's rate of pulling them it can never catch-up). -In these use-cases use the SDK's [POST `_changes` API](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.9/examples#postchanges) +In these use-cases use the SDK's [POST `_changes` API](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.10/examples#postchanges) for specific control over the number of change requests made and the content size of the responses. ## Checkpoints diff --git a/docs/Examples.md b/docs/Examples.md index f4963e447..921b40768 100644 --- a/docs/Examples.md +++ b/docs/Examples.md @@ -421,4 +421,4 @@ You have deleted the document. ## Further code examples -For a complete list of code examples, see the [examples directory](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.9/examples#examples-for-java). +For a complete list of code examples, see the [examples directory](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.10/examples#examples-for-java). diff --git a/docs/Pagination.md b/docs/Pagination.md index 3ea994fa4..970391393 100644 --- a/docs/Pagination.md +++ b/docs/Pagination.md @@ -73,22 +73,22 @@ then a `429 Too Many Requests` error occurs. Pagination is available for these operations: * Query all documents [global](https://cloud.ibm.com/apidocs/cloudant?code=java#postalldocs) and [partitioned](https://cloud.ibm.com/apidocs/cloudant?code=java#postpartitionalldocs) - * [Global all documents examples](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.9/modules/examples/src/main/java/features/pagination/AllDocsPagination.java) - * [Partitioned all documents examples](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.9/modules/examples/src/main/java/features/pagination/PartitionAllDocsPagination.java) + * [Global all documents examples](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.10/modules/examples/src/main/java/features/pagination/AllDocsPagination.java) + * [Partitioned all documents examples](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.10/modules/examples/src/main/java/features/pagination/PartitionAllDocsPagination.java) * Query all [design documents](https://cloud.ibm.com/apidocs/cloudant?code=java#postdesigndocs) - * [Design documents examples](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.9/modules/examples/src/main/java/features/pagination/DesignDocsPagination.java) + * [Design documents examples](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.10/modules/examples/src/main/java/features/pagination/DesignDocsPagination.java) * Query with selector syntax [global](https://cloud.ibm.com/apidocs/cloudant?code=java#postfind) and [partitioned](https://cloud.ibm.com/apidocs/cloudant?code=java#postpartitionfind) - * [Global find selector query examples](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.9/modules/examples/src/main/java/features/pagination/FindPagination.java) - * [Partitioned find selector query examples](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.9/modules/examples/src/main/java/features/pagination/PartitionFindPagination.java) + * [Global find selector query examples](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.10/modules/examples/src/main/java/features/pagination/FindPagination.java) + * [Partitioned find selector query examples](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.10/modules/examples/src/main/java/features/pagination/PartitionFindPagination.java) * Query a search index [global](https://cloud.ibm.com/apidocs/cloudant?code=java#postsearch) and [partitioned](https://cloud.ibm.com/apidocs/cloudant?code=java#postpartitionsearch) - * [Global search examples](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.9/modules/examples/src/main/java/features/pagination/SearchPagination.java) - * [Partitioned search examples](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.9/modules/examples/src/main/java/features/pagination/PartitionSearchPagination.java) + * [Global search examples](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.10/modules/examples/src/main/java/features/pagination/SearchPagination.java) + * [Partitioned search examples](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.10/modules/examples/src/main/java/features/pagination/PartitionSearchPagination.java) * Query a MapReduce view [global](https://cloud.ibm.com/apidocs/cloudant?code=java#postview) and [partitioned](https://cloud.ibm.com/apidocs/cloudant?code=java#postpartitionview) - * [Global view examples](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.9/modules/examples/src/main/java/features/pagination/ViewPagination.java) - * [Partitioned view examples](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.9/modules/examples/src/main/java/features/pagination/PartitionViewPagination.java) + * [Global view examples](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.10/modules/examples/src/main/java/features/pagination/ViewPagination.java) + * [Partitioned view examples](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.10/modules/examples/src/main/java/features/pagination/PartitionViewPagination.java) The examples presented in this `README` are for all documents in a partition. The links in the list are to equivalent examples for each of the other available operations. diff --git a/docs/README.md b/docs/README.md index 14f3aebb1..9dfd7b13f 100644 --- a/docs/README.md +++ b/docs/README.md @@ -1,4 +1,4 @@ -# IBM Cloudant Java SDK Version 0.10.9 Detailed Documentation +# IBM Cloudant Java SDK Version 0.10.10 Detailed Documentation ## Table of Contents diff --git a/modules/cloudant/pom.xml b/modules/cloudant/pom.xml index bb45451c4..a7f00d5de 100644 --- a/modules/cloudant/pom.xml +++ b/modules/cloudant/pom.xml @@ -4,7 +4,7 @@ com.ibm.cloud cloudant-parent - 0.10.9 + 0.10.10 ../.. @@ -16,12 +16,12 @@ com.ibm.cloud cloudant-common - 0.10.9 + 0.10.10 com.ibm.cloud cloudant-common - 0.10.9 + 0.10.10 test-jar tests test diff --git a/modules/common/pom.xml b/modules/common/pom.xml index e22cb6a5e..034202f63 100644 --- a/modules/common/pom.xml +++ b/modules/common/pom.xml @@ -4,13 +4,13 @@ cloudant-parent com.ibm.cloud - 0.10.9 + 0.10.10 ../.. com.ibm.cloud cloudant-common - 0.10.9 + 0.10.10 Cloudant Common Library jar diff --git a/modules/coverage-reports/pom.xml b/modules/coverage-reports/pom.xml index 8053645d7..ef4e501c5 100644 --- a/modules/coverage-reports/pom.xml +++ b/modules/coverage-reports/pom.xml @@ -3,7 +3,7 @@ cloudant-parent com.ibm.cloud - 0.10.9 + 0.10.10 ../.. 4.0.0 diff --git a/modules/examples/pom.xml b/modules/examples/pom.xml index ef6ac1493..fe434fa9a 100644 --- a/modules/examples/pom.xml +++ b/modules/examples/pom.xml @@ -6,7 +6,7 @@ cloudant-parent com.ibm.cloud - 0.10.9 + 0.10.10 ../.. diff --git a/pom.xml b/pom.xml index 5e8bece00..ebd3b4420 100644 --- a/pom.xml +++ b/pom.xml @@ -11,7 +11,7 @@ https://github.com/IBM/cloudant-java-sdk com.ibm.cloud - 0.10.9 + 0.10.10 pom