Skip to content

Commit b5133dd

Browse files
committed
Updated sources
1 parent fc5591e commit b5133dd

File tree

86 files changed

+108
-107
lines changed

Some content is hidden

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

86 files changed

+108
-107
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-2021 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: 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-annotation-cloud</artifactId>
27-
<version>22.2</version>
27+
<version>23.4</version>
2828
<scope>compile</scope>
2929
</dependency>
3030
```
@@ -43,7 +43,7 @@ repositories {
4343
...
4444
dependencies {
4545
...
46-
implementation 'com.groupdocs:groupdocs-annotation-cloud:22.2'
46+
implementation 'com.groupdocs:groupdocs-annotation-cloud:23.4'
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-annotation-cloud-22.2.jar
103+
* target/groupdocs-annotation-cloud-23.4.jar
104104
* target/lib/*.jar
105105

106106
## Licensing

pom.xml

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

34-
<repositories>
35-
<repository>
36-
<id>maven.groupdocs.cloud</id>
37-
<name>maven.groupdocs.cloud</name>
38-
<url>https://repository.groupdocs.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-annotation-cloud-${project.version}.jar</file>
187188
<javadoc>target/groupdocs-annotation-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-annotation-cloud-${project.version}.jar</file>
268269
<javadoc>target/groupdocs-annotation-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>
@@ -337,7 +338,7 @@
337338
<gson-fire-version>1.8.0</gson-fire-version>
338339
<swagger-core-version>1.5.15</swagger-core-version>
339340
<okhttp-version>2.7.5</okhttp-version>
340-
<gson-version>2.8.1</gson-version>
341+
<gson-version>2.10.1</gson-version>
341342
<threetenbp-version>1.3.5</threetenbp-version>
342343
<maven-plugin-version>1.0.0</maven-plugin-version>
343344
<junit-version>4.13.1</junit-version>

src/main/java/com/groupdocs/cloud/annotation/api/AnnotateApi.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="AnnotateApi.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/annotation/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/annotation/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/annotation/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/annotation/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/annotation/api/PreviewApi.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="PreviewApi.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/annotation/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

0 commit comments

Comments
 (0)