Skip to content

Commit c106b7a

Browse files
committed
Updated sources
1 parent 238a943 commit c106b7a

File tree

83 files changed

+102
-101
lines changed

Some content is hidden

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

83 files changed

+102
-101
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2003-2022 Aspose Pty Ltd
3+
Copyright (c) 2003-2023 Aspose Pty Ltd
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ repositories {
3333
...
3434
dependencies {
3535
...
36-
implementation 'com.groupdocs:groupdocs-editor-cloud:22.5'
36+
implementation 'com.groupdocs:groupdocs-editor-cloud:23.5'
3737
}
3838
```
3939

pom.xml

Lines changed: 19 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<artifactId>groupdocs-editor-cloud-android</artifactId>
66
<packaging>jar</packaging>
77
<name>groupdocs-editor-cloud-android</name>
8-
<version>22.5</version>
8+
<version>23.5</version>
99
<url>https://github.com/groupdocs-editor-cloud/groupdocs-editor-cloud-android</url>
1010
<description>GroupDocs.Editor Cloud allows you to edit most popular document formats using 3rd party front-end WYSIWYG editors without any additional applications. No Open Office or MS Office is required to edit a word or spreadsheet document. Edit DOCX/DOC, PPTX/PPT, XLSX/XLS, ODT, ODS, ODP, TSV/DSV, TXT and many other document formats with GroupDocs.Editor 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>
@@ -118,6 +112,13 @@
118112
</executions>
119113
</plugin>
120114
</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-editor-cloud-android-${project.version}.jar</file>
187188
<javadoc>target/groupdocs-editor-cloud-android-${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/internal</url>
266+
<repositoryId>groupdocs-cloud-s3-repo-ci</repositoryId>
267+
<url>s3://data.repository.groupdocs.cloud/java/repo/</url>
267268
<file>target/groupdocs-editor-cloud-android-${project.version}.jar</file>
268269
<javadoc>target/groupdocs-editor-cloud-android-${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/internal</url>
282+
<url>s3://data.repository.groupdocs.cloud/java/repo/</url>
282283
</repository>
283284
</distributionManagement>
284285
</profile>

src/main/java/com/groupdocs/cloud/editor/api/EditApi.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="EditApi.java">
4-
* Copyright (c) 2003-2022 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/editor/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-2022 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/editor/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-2022 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/editor/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-2022 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/editor/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-2022 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/editor/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-2022 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/editor/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-2022 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)