Skip to content

Commit 43c3520

Browse files
authored
Merge pull request #78 from aspose-pdf-cloud/develop
update to 25.2
2 parents 36f5309 + 7eb89d6 commit 43c3520

File tree

5 files changed

+14
-25
lines changed

5 files changed

+14
-25
lines changed

README.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,8 @@ XLS, XLSX, PPTX, DOC, DOCX, MobiXML, JPEG, EMF, PNG, BMP, GIF, TIFF, Text
3030
## Read PDF Formats
3131
MHT, PCL, PS, XSLFO, MD
3232

33-
## Enhancements in Version 25.1
33+
## Enhancements in Version 25.2
3434
- A new version of Aspose.PDF Cloud was prepared using the latest version of Aspose.PDF for .NET.
35-
3635
## Installation
3736
To install the API client library to your local Maven repository, simply execute:
3837

@@ -55,7 +54,7 @@ Add this dependency to your project's POM:
5554
<dependency>
5655
<groupId>com.aspose</groupId>
5756
<artifactId>aspose-cloud-pdf</artifactId>
58-
<version>25.1.0</version>
57+
<version>25.2.0</version>
5958
<scope>compile</scope>
6059
</dependency>
6160
```
@@ -64,7 +63,7 @@ Add this dependency to your project's POM:
6463
Add this dependency to your project's build file:
6564

6665
```groovy
67-
compile "com.aspose:aspose-cloud-pdf:25.1.0"
66+
compile "com.aspose:aspose-cloud-pdf:25.2.0"
6867
```
6968

7069
### Others
@@ -74,7 +73,7 @@ At first generate the JAR by executing:
7473

7574
Then manually install the following JARs:
7675

77-
* target/aspose-cloud-pdf-25.1.0.jar
76+
* target/aspose-cloud-pdf-25.2.0.jar
7877
* target/lib/*.jar
7978

8079
## Getting Started

build.gradle

Lines changed: 7 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,14 @@ apply plugin: 'idea'
2020
apply plugin: 'eclipse'
2121

2222
group = 'com.aspose'
23-
version = '25.1.0'
23+
version = '25.2.0'
2424

2525
buildscript {
2626
repositories {
2727
jcenter()
2828
}
2929
dependencies {
3030
classpath 'com.android.tools.build:gradle:2.3.+'
31-
classpath 'com.novoda:bintray-release:0.3.4'
3231
}
3332
}
3433

@@ -38,17 +37,20 @@ repositories {
3837

3938
apply plugin: 'java'
4039
apply plugin: 'maven'
41-
apply plugin: 'com.novoda.bintray-release'
4240

43-
sourceCompatibility = JavaVersion.VERSION_1_7
44-
targetCompatibility = JavaVersion.VERSION_1_7
41+
sourceCompatibility = project.hasProperty('sourceCompatibility') ? project.property('sourceCompatibility') : JavaVersion.VERSION_1_7
42+
targetCompatibility = project.hasProperty('targetCompatibility') ? project.property('targetCompatibility') : JavaVersion.VERSION_1_7
4543

4644
install {
4745
repositories.mavenInstaller {
4846
pom.artifactId = 'aspose-pdf-cloud'
4947
}
5048
}
5149

50+
tasks.withType(Javadoc) {
51+
options.encoding = 'UTF-8'
52+
}
53+
5254
task execute(type:JavaExec) {
5355
main = System.getProperty('mainClass')
5456
classpath = sourceSets.main.runtimeClasspath
@@ -78,15 +80,3 @@ dependencies {
7880
compile 'org.threeten:threetenbp:1.3.5'
7981
testCompile 'junit:junit:4.12'
8082
}
81-
82-
// bintray-release
83-
// https://github.com/novoda/bintray-release/wiki/Configuration-of-the-publish-closure
84-
publish {
85-
groupId = 'com.aspose'
86-
artifactId = 'aspose-pdf-cloud'
87-
publishVersion = '25.1.0'
88-
desc = 'Aspose.PDF Cloud is a REST API for creating and editing PDF files. Most popular features proposed by Aspose.PDF Cloud: PDF to Word, Convert PDF to Image, Merge PDF, Split PDF, Add Images to PDF, Rotate PDF. It can also be used to convert PDF files to different formats like DOC, HTML, XPS, TIFF and many more. Aspose.PDF Cloud gives you control: create PDFs from scratch or from HTML, XML, template, database, XPS or an image. Render PDFs to image formats such as JPEG, PNG, GIF, BMP, TIFF and many others. Aspose.PDF Cloud helps you manipulate elements of a PDF file like text, annotations, watermarks, signatures, bookmarks, stamps and so on. Its REST API also allows you to manage PDF pages by using features like merging, splitting, and inserting. Add images to a PDF file or convert PDF pages to images.'
89-
licences = ['MIT']
90-
website = 'https://products.aspose.cloud/pdf/cloud'
91-
repository = 'https://github.com/aspose-pdf-cloud/aspose-pdf-cloud.git'
92-
}

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-3.3-bin.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-6.9.1-bin.zip

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<artifactId>aspose-pdf-cloud</artifactId>
77
<packaging>jar</packaging>
88
<name>aspose-pdf-cloud</name>
9-
<version>25.1.0</version>
9+
<version>25.2.0</version>
1010
<url>https://www.aspose.cloud/</url>
1111
<description>Aspose.PDF Cloud is a REST API for creating and editing PDF files.
1212
Most popular features proposed by Aspose.PDF Cloud: PDF to Word, Convert PDF to Image, Merge PDF, Split PDF, Add Images to PDF, Rotate PDF.

src/main/java/com/aspose/asposecloudpdf/ApiClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ public ApiClient() {
9494

9595
// Add custom headers
9696
addDefaultHeader("x-aspose-client", "java sdk");
97-
addDefaultHeader("x-aspose-client-version", "25.1.0");
97+
addDefaultHeader("x-aspose-client-version", "25.2.0");
9898

9999
// PDFCLOUD-418 Set default Connect Timeout
100100
setConnectTimeout(5 * 60 * 1000);

0 commit comments

Comments
 (0)