Skip to content

Commit 5e56e05

Browse files
committed
Updated sources
1 parent 5344ad7 commit 5e56e05

File tree

106 files changed

+435
-118
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

106 files changed

+435
-118
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ repositories {
2525
...
2626
dependencies {
2727
...
28-
implementation 'com.groupdocs:groupdocs-viewer-cloud-android:21.12'
28+
implementation 'com.groupdocs:groupdocs-viewer-cloud-android:23.3'
2929
}
3030
```
3131

pom.xml

Lines changed: 20 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<artifactId>groupdocs-viewer-cloud-android</artifactId>
66
<packaging>jar</packaging>
77
<name>groupdocs-viewer-cloud-android</name>
8-
<version>21.12</version>
8+
<version>23.3</version>
99
<url>https://github.com/groupdocs-viewer-cloud/groupdocs-viewer-cloud-android</url>
1010
<description>Java library for communicating with the GroupDocs.Viewer Cloud API</description>
1111
<scm>
@@ -94,7 +94,9 @@
9494
<plugin>
9595
<groupId>org.apache.maven.plugins</groupId>
9696
<artifactId>maven-javadoc-plugin</artifactId>
97-
<version>3.0.1</version>
97+
<configuration>
98+
<source>8</source>
99+
</configuration>
98100
<executions>
99101
<execution>
100102
<id>attach-javadocs</id>
@@ -118,6 +120,13 @@
118120
</executions>
119121
</plugin>
120122
</plugins>
123+
<extensions>
124+
<extension>
125+
<groupId>com.github.seahen</groupId>
126+
<artifactId>maven-s3-wagon</artifactId>
127+
<version>1.3.3</version>
128+
</extension>
129+
</extensions>
121130
</build>
122131

123132
<profiles>
@@ -181,8 +190,8 @@
181190
<goal>deploy-file</goal>
182191
</goals>
183192
<configuration>
184-
<repositoryId>Groupdocs-Cloud-QA</repositoryId>
185-
<url>https://repository-qa.groupdocs.cloud/repo</url>
193+
<repositoryId>groupdocs-cloud-s3-repo-ci-qa</repositoryId>
194+
<url>s3://data-qa.repository.groupdocs.cloud/java/repo/</url>
186195
<file>target/groupdocs-viewer-cloud-android-${project.version}.jar</file>
187196
<javadoc>target/groupdocs-viewer-cloud-android-${project.version}-javadoc.jar</javadoc>
188197
<pomFile>simplified-pom.xml</pomFile>
@@ -195,9 +204,9 @@
195204
</build>
196205
<distributionManagement>
197206
<repository>
198-
<id>Groupdocs-Cloud-QA</id>
207+
<id>groupdocs-cloud-s3-repo-ci-qa</id>
199208
<name>artifactory-cloud-qa</name>
200-
<url>https://repository-qa.groupdocs.cloud/repo</url>
209+
<url>s3://data-qa.repository.groupdocs.cloud/java/repo/</url>
201210
</repository>
202211
</distributionManagement>
203212
</profile>
@@ -262,8 +271,8 @@
262271
<goal>deploy-file</goal>
263272
</goals>
264273
<configuration>
265-
<repositoryId>Groupdocs-Cloud-PROD</repositoryId>
266-
<url>https://repository.groupdocs.cloud/repo</url>
274+
<repositoryId>groupdocs-cloud-s3-repo-ci</repositoryId>
275+
<url>s3://data.repository.groupdocs.cloud/java/repo/</url>
267276
<file>target/groupdocs-viewer-cloud-android-${project.version}.jar</file>
268277
<javadoc>target/groupdocs-viewer-cloud-android-${project.version}-javadoc.jar</javadoc>
269278
<pomFile>simplified-pom.xml</pomFile>
@@ -276,9 +285,9 @@
276285
</build>
277286
<distributionManagement>
278287
<repository>
279-
<id>Groupdocs-Cloud-PROD</id>
288+
<id>groupdocs-cloud-s3-repo-ci</id>
280289
<name>artifactory-cloud-prod</name>
281-
<url>https://repository.groupdocs.cloud/repo</url>
290+
<url>s3://data.repository.groupdocs.cloud/java/repo/</url>
282291
</repository>
283292
</distributionManagement>
284293
</profile>
@@ -331,7 +340,7 @@
331340
<gson-fire-version>1.8.0</gson-fire-version>
332341
<swagger-core-version>1.5.15</swagger-core-version>
333342
<okhttp-version>2.7.5</okhttp-version>
334-
<gson-version>2.8.1</gson-version>
343+
<gson-version>2.9.0</gson-version>
335344
<threetenbp-version>1.3.5</threetenbp-version>
336345
<maven-plugin-version>1.0.0</maven-plugin-version>
337346
<junit-version>4.13.1</junit-version>

src/main/java/com/groupdocs/cloud/viewer/api/FileApi.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* --------------------------------------------------------------------------------------------------------------------
33
* <copyright company="Aspose Pty Ltd" file="FileApi.java">
4-
* Copyright (c) 2003-2021 Aspose Pty Ltd
4+
* Copyright (c) 2003-2023 Aspose Pty Ltd
55
* </copyright>
66
* <summary>
77
* Permission is hereby granted, free of charge, to any person obtaining a copy

src/main/java/com/groupdocs/cloud/viewer/api/FolderApi.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* --------------------------------------------------------------------------------------------------------------------
33
* <copyright company="Aspose Pty Ltd" file="FolderApi.java">
4-
* Copyright (c) 2003-2021 Aspose Pty Ltd
4+
* Copyright (c) 2003-2023 Aspose Pty Ltd
55
* </copyright>
66
* <summary>
77
* Permission is hereby granted, free of charge, to any person obtaining a copy

src/main/java/com/groupdocs/cloud/viewer/api/InfoApi.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* --------------------------------------------------------------------------------------------------------------------
33
* <copyright company="Aspose Pty Ltd" file="InfoApi.java">
4-
* Copyright (c) 2003-2021 Aspose Pty Ltd
4+
* Copyright (c) 2003-2023 Aspose Pty Ltd
55
* </copyright>
66
* <summary>
77
* Permission is hereby granted, free of charge, to any person obtaining a copy

src/main/java/com/groupdocs/cloud/viewer/api/LicenseApi.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* --------------------------------------------------------------------------------------------------------------------
33
* <copyright company="Aspose Pty Ltd" file="LicenseApi.java">
4-
* Copyright (c) 2003-2021 Aspose Pty Ltd
4+
* Copyright (c) 2003-2023 Aspose Pty Ltd
55
* </copyright>
66
* <summary>
77
* Permission is hereby granted, free of charge, to any person obtaining a copy

src/main/java/com/groupdocs/cloud/viewer/api/StorageApi.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* --------------------------------------------------------------------------------------------------------------------
33
* <copyright company="Aspose Pty Ltd" file="StorageApi.java">
4-
* Copyright (c) 2003-2021 Aspose Pty Ltd
4+
* Copyright (c) 2003-2023 Aspose Pty Ltd
55
* </copyright>
66
* <summary>
77
* Permission is hereby granted, free of charge, to any person obtaining a copy

src/main/java/com/groupdocs/cloud/viewer/api/ViewApi.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* --------------------------------------------------------------------------------------------------------------------
33
* <copyright company="Aspose Pty Ltd" file="ViewApi.java">
4-
* Copyright (c) 2003-2021 Aspose Pty Ltd
4+
* Copyright (c) 2003-2023 Aspose Pty Ltd
55
* </copyright>
66
* <summary>
77
* Permission is hereby granted, free of charge, to any person obtaining a copy

src/main/java/com/groupdocs/cloud/viewer/client/ApiCallback.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* --------------------------------------------------------------------------------------------------------------------
33
* <copyright company="Aspose Pty Ltd" file="ApiCallback.java">
4-
* Copyright (c) 2003-2021 Aspose Pty Ltd
4+
* Copyright (c) 2003-2023 Aspose Pty Ltd
55
* </copyright>
66
* <summary>
77
* Permission is hereby granted, free of charge, to any person obtaining a copy

src/main/java/com/groupdocs/cloud/viewer/client/ApiClient.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* --------------------------------------------------------------------------------------------------------------------
33
* <copyright company="Aspose Pty Ltd" file="ApiClient.java">
4-
* Copyright (c) 2003-2021 Aspose Pty Ltd
4+
* Copyright (c) 2003-2023 Aspose Pty Ltd
55
* </copyright>
66
* <summary>
77
* Permission is hereby granted, free of charge, to any person obtaining a copy
@@ -97,7 +97,7 @@ public ApiClient(Configuration configuration) {
9797
this.json = new JSON();
9898

9999
// Set default User-Agent.
100-
setUserAgent("java-sdk/21.12");
100+
setUserAgent("java-sdk/23.3");
101101

102102
// Set connection timeout
103103
setConnectTimeout(configuration.getTimeout());

0 commit comments

Comments
 (0)