Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
[![Maven metadata URL](https://img.shields.io/maven-metadata/v?metadataUrl=https%3A%2F%2Freleases.aspose.cloud%2Fjava%2Frepo%2Fcom%2Faspose%2Faspose-barcode-cloud%2Fmaven-metadata.xml)](https://releases.aspose.cloud/java/repo/com/aspose/aspose-barcode-cloud/)

- API version: 4.0
- SDK version: 26.6.0
- SDK version: 26.7.0

## SDK and API Version Compatibility:

Expand Down Expand Up @@ -77,7 +77,7 @@ Add this dependency to your project's POM:
<dependency>
<groupId>com.aspose</groupId>
<artifactId>aspose-barcode-cloud</artifactId>
<version>26.6.0</version>
<version>26.7.0</version>
<scope>compile</scope>
</dependency>
```
Expand All @@ -92,7 +92,7 @@ mvn clean package

Then manually install the following JARs:

- `target/aspose-barcode-cloud-26.6.0.jar`
- `target/aspose-barcode-cloud-26.7.0.jar`
- `target/lib/*.jar`

## Getting Started
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<artifactId>aspose-barcode-cloud</artifactId>
<packaging>jar</packaging>
<name>aspose-barcode-cloud</name>
<version>26.6.0</version>
<version>26.7.0</version>
<url>https://www.aspose.cloud</url>
<description>Aspose.BarCode Cloud SDK for Java</description>
<scm>
Expand Down
2 changes: 1 addition & 1 deletion scripts/check-badges.bash
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ pushd "${SCRIPT_DIR}/.." >/dev/null
fi
done

(grep -oP '[^/]+\.yml/badge.svg(?!\?branch=main)' "${readme_file}" || echo ) | while read -r badge_without_branch; do
(grep -oP '[^/]+\.yml/badge.svg(?!\?branch=(main|v4)\b)' "${readme_file}" || echo ) | while read -r badge_without_branch; do
if [ -z "${badge_without_branch}" ]; then continue; fi
>&2 echo "Badge without branch \"${badge_without_branch}\""
exit 1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,11 @@ Use this reference when you want the closest existing pattern before writing new
- `src/test/java/com/aspose/barcode/cloud/test/ScanApiTest.java`: scan via base64 body, multipart, and URL.
- `src/test/java/com/aspose/barcode/cloud/test/ConfigurationTest.java`: configuration defaults and `buildApiClient()` behavior.
- `src/test/java/com/aspose/barcode/cloud/test/ExceptionTest.java`: expected failures and exception behavior.
- `src/test/java/com/aspose/barcode/cloud/api/GenerateApiUnitTest.java`: request validation and generated request-path behavior.
- `src/test/java/com/aspose/barcode/cloud/api/RecognizeApiUnitTest.java`: recognize request validation, request-path behavior, and async wiring.
- `src/test/java/com/aspose/barcode/cloud/api/GenerateApiValidationUnitTest.java`: generate request validation.
- `src/test/java/com/aspose/barcode/cloud/api/GenerateApiRequestUnitTest.java`: generated request-path, query-parameter, and header behavior.
- `src/test/java/com/aspose/barcode/cloud/api/GenerateApiBodyUnitTest.java`: generate request content types and payload serialization.
- `src/test/java/com/aspose/barcode/cloud/api/GenerateApiMethodCoverageUnitTest.java`: generate sync/async method wiring.
- `src/test/java/com/aspose/barcode/cloud/api/RecognizeApiValidationUnitTest.java`: recognize request validation.
- `src/test/java/com/aspose/barcode/cloud/api/RecognizeApiRequestUnitTest.java`: recognize request-path, query-parameter, and content-type behavior.
- `src/test/java/com/aspose/barcode/cloud/api/RecognizeApiMethodCoverageUnitTest.java`: recognize sync/async method wiring.
- `src/test/java/com/aspose/barcode/cloud/api/ScanApiUnitTest.java`: scan request validation, request-path behavior, and async wiring.
2 changes: 1 addition & 1 deletion snippets/dependency.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<dependency>
<groupId>com.aspose</groupId>
<artifactId>aspose-barcode-cloud</artifactId>
<version>26.6.0</version>
<version>26.7.0</version>
</dependency>
<!-- Add other dependencies here -->
</dependencies>
4 changes: 2 additions & 2 deletions src/main/java/com/aspose/barcode/cloud/ApiClient.java
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
/** ApiClient. */
public class ApiClient {
public final String apiVersion = "v4.0";
public final String clientVersion = "26.6.0";
public final String clientVersion = "26.7.0";

private String baseUrl = "https://api.aspose.cloud";
private String tokenUrl = "https://id.aspose.cloud/connect/token";
Expand Down Expand Up @@ -88,7 +88,7 @@ protected ApiClient(long readTimeoutMillis) {
json = new JSON();

// Set default User-Agent.
setUserAgent("OpenApi-Generator/26.6.0/java");
setUserAgent("OpenApi-Generator/26.7.0/java");

addDefaultHeader("x-aspose-client", "java sdk");
addDefaultHeader("x-aspose-client-version", clientVersion);
Expand Down
91 changes: 0 additions & 91 deletions src/main/java/com/aspose/barcode/cloud/ServerConfiguration.java

This file was deleted.

49 changes: 0 additions & 49 deletions src/main/java/com/aspose/barcode/cloud/ServerVariable.java

This file was deleted.

This file was deleted.

Loading