Skip to content

Commit 81d738e

Browse files
committed
Updated sources
1 parent 99b2b8f commit 81d738e

107 files changed

Lines changed: 440 additions & 139 deletions

File tree

Some content is hidden

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

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Add following repository and dependency to your project's POM
2424
<dependency>
2525
<groupId>com.groupdocs</groupId>
2626
<artifactId>groupdocs-viewer-cloud</artifactId>
27-
<version>21.12</version>
27+
<version>23.3</version>
2828
<scope>compile</scope>
2929
</dependency>
3030
```
@@ -43,7 +43,7 @@ repositories {
4343
...
4444
dependencies {
4545
...
46-
implementation 'com.groupdocs:groupdocs-viewer-cloud:21.12'
46+
implementation 'com.groupdocs:groupdocs-viewer-cloud:23.3'
4747
}
4848
```
4949

@@ -100,7 +100,7 @@ mvn package -D maven.test.skip=true
100100

101101
Then manually install the following JARs:
102102

103-
* target/groupdocs-viewer-cloud-21.12.jar
103+
* target/groupdocs-viewer-cloud-23.3.jar
104104
* target/lib/*.jar
105105

106106
## Licensing

pom.xml

Lines changed: 21 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<artifactId>groupdocs-viewer-cloud</artifactId>
66
<packaging>jar</packaging>
77
<name>groupdocs-viewer-cloud</name>
8-
<version>21.12</version>
8+
<version>23.3</version>
99
<url>https://github.com/groupdocs-viewer-cloud/groupdocs-viewer-cloud-java</url>
1010
<description>Java library for communicating with the GroupDocs.Viewer Cloud API</description>
1111
<scm>
@@ -31,14 +31,6 @@
3131
</developer>
3232
</developers>
3333

34-
<repositories>
35-
<repository>
36-
<id>maven.aspose.cloud</id>
37-
<name>maven.aspose.cloud</name>
38-
<url>https://repository.aspose.cloud/repo/</url>
39-
</repository>
40-
</repositories>
41-
4234
<build>
4335
<plugins>
4436
<plugin>
@@ -94,7 +86,9 @@
9486
<plugin>
9587
<groupId>org.apache.maven.plugins</groupId>
9688
<artifactId>maven-javadoc-plugin</artifactId>
97-
<version>3.0.1</version>
89+
<configuration>
90+
<source>8</source>
91+
</configuration>
9892
<executions>
9993
<execution>
10094
<id>attach-javadocs</id>
@@ -117,7 +111,14 @@
117111
</execution>
118112
</executions>
119113
</plugin>
120-
</plugins>
114+
</plugins>
115+
<extensions>
116+
<extension>
117+
<groupId>com.github.seahen</groupId>
118+
<artifactId>maven-s3-wagon</artifactId>
119+
<version>1.3.3</version>
120+
</extension>
121+
</extensions>
121122
</build>
122123

123124
<profiles>
@@ -181,8 +182,8 @@
181182
<goal>deploy-file</goal>
182183
</goals>
183184
<configuration>
184-
<repositoryId>Groupdocs-Cloud-QA</repositoryId>
185-
<url>https://repository-qa.groupdocs.cloud/repo</url>
185+
<repositoryId>groupdocs-cloud-s3-repo-ci-qa</repositoryId>
186+
<url>s3://data-qa.repository.groupdocs.cloud/java/repo/</url>
186187
<file>target/groupdocs-viewer-cloud-${project.version}.jar</file>
187188
<javadoc>target/groupdocs-viewer-cloud-${project.version}-javadoc.jar</javadoc>
188189
<pomFile>simplified-pom.xml</pomFile>
@@ -195,9 +196,9 @@
195196
</build>
196197
<distributionManagement>
197198
<repository>
198-
<id>Groupdocs-Cloud-QA</id>
199+
<id>groupdocs-cloud-s3-repo-ci-qa</id>
199200
<name>artifactory-cloud-qa</name>
200-
<url>https://repository-qa.groupdocs.cloud/repo</url>
201+
<url>s3://data-qa.repository.groupdocs.cloud/java/repo/</url>
201202
</repository>
202203
</distributionManagement>
203204
</profile>
@@ -262,8 +263,8 @@
262263
<goal>deploy-file</goal>
263264
</goals>
264265
<configuration>
265-
<repositoryId>Groupdocs-Cloud-PROD</repositoryId>
266-
<url>https://repository.groupdocs.cloud/repo</url>
266+
<repositoryId>groupdocs-cloud-s3-repo-ci</repositoryId>
267+
<url>s3://data.repository.groupdocs.cloud/java/repo/</url>
267268
<file>target/groupdocs-viewer-cloud-${project.version}.jar</file>
268269
<javadoc>target/groupdocs-viewer-cloud-${project.version}-javadoc.jar</javadoc>
269270
<pomFile>simplified-pom.xml</pomFile>
@@ -276,9 +277,9 @@
276277
</build>
277278
<distributionManagement>
278279
<repository>
279-
<id>Groupdocs-Cloud-PROD</id>
280+
<id>groupdocs-cloud-s3-repo-ci</id>
280281
<name>artifactory-cloud-prod</name>
281-
<url>https://repository.groupdocs.cloud/repo</url>
282+
<url>s3://data.repository.groupdocs.cloud/java/repo/</url>
282283
</repository>
283284
</distributionManagement>
284285
</profile>
@@ -331,7 +332,7 @@
331332
<gson-fire-version>1.8.0</gson-fire-version>
332333
<swagger-core-version>1.5.15</swagger-core-version>
333334
<okhttp-version>2.7.5</okhttp-version>
334-
<gson-version>2.8.1</gson-version>
335+
<gson-version>2.9.0</gson-version>
335336
<threetenbp-version>1.3.5</threetenbp-version>
336337
<maven-plugin-version>1.0.0</maven-plugin-version>
337338
<junit-version>4.13.1</junit-version>

simplified-pom.template

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
<groupId>com.groupdocs</groupId>
77
<artifactId>groupdocs-viewer-cloud</artifactId>
8-
<version>21.12</version>
8+
<version>23.3</version>
99
<packaging>jar</packaging>
1010

1111
<name>groupdocs-viewer-cloud</name>
@@ -28,14 +28,6 @@
2828
</developer>
2929
</developers>
3030

31-
<repositories>
32-
<repository>
33-
<id>maven.aspose.cloud</id>
34-
<name>maven.aspose.cloud</name>
35-
<url>https://repository.aspose.cloud/repo/</url>
36-
</repository>
37-
</repositories>
38-
3931
<dependencies>
4032
<dependency>
4133
<groupId>io.swagger</groupId>
@@ -73,7 +65,7 @@
7365
<gson-fire-version>1.8.0</gson-fire-version>
7466
<swagger-core-version>1.5.15</swagger-core-version>
7567
<okhttp-version>2.7.5</okhttp-version>
76-
<gson-version>2.8.1</gson-version>
68+
<gson-version>2.9.0</gson-version>
7769
<threetenbp-version>1.3.5</threetenbp-version>
7870
</properties>
7971

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

0 commit comments

Comments
 (0)