Skip to content

Commit f35c382

Browse files
committed
Updated sources
1 parent 851c4c0 commit f35c382

1 file changed

Lines changed: 47 additions & 29 deletions

File tree

README.md

Lines changed: 47 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,14 @@
11
# GroupDocs.Viewer Cloud SDK for Java
2+
23
This repository contains GroupDocs.Viewer Cloud SDK for Java source code. This SDK allows you to work with GroupDocs.Viewer Cloud REST APIs in your Java applications.
34

45
## Requirements
56

6-
Building the API client library requires [Maven](https://maven.apache.org/) to be installed.
7+
* Java SE Development Kit 8
78

89
## Installation
910

10-
To install the API client library to your local Maven repository, execute:
11-
12-
```shell
13-
mvn install
14-
```
15-
16-
To deploy it to a remote Maven repository instead, configure the settings of the repository and execute:
17-
18-
```shell
19-
mvn deploy
20-
```
21-
22-
Refer to the [official documentation](https://maven.apache.org/plugins/maven-deploy-plugin/usage.html) for more information.
23-
24-
### Maven users
11+
### Maven
2512

2613
Add following repository and dependency to your project's POM
2714

@@ -42,20 +29,32 @@ Add following repository and dependency to your project's POM
4229
</dependency>
4330
```
4431

45-
### Others
46-
47-
At first generate the JAR by executing:
32+
### Gradle
4833

49-
mvn package
34+
Add following repository and dependency to your build.gradle:
5035

51-
Then manually install the following JARs:
36+
```javascript
37+
repositories {
38+
maven {
39+
url "https://repository.groupdocs.cloud/repo/"
40+
}
41+
}
5242

53-
* target/groupdocs-viewer-cloud-21.8.jar
54-
* target/lib/*.jar
43+
...
44+
dependencies {
45+
...
46+
implementation 'com.groupdocs:groupdocs-viewer-cloud:21.8'
47+
}
48+
```
5549

5650
## Getting Started
5751

58-
Please follow the [installation](#installation) instruction and execute the following Java code:
52+
* Please follow the [installation](#installation) instruction
53+
* Get your AppSID and AppKey at [Dashboard](https://dashboard.groupdocs.cloud) and use them in your code
54+
* Build and execute
55+
* Explore more samples at [GitHub](https://github.com/groupdocs-viewer-cloud/groupdocs-viewer-cloud-java-samples)
56+
57+
Example:
5958

6059
```java
6160
import com.groupdocs.cloud.viewer.client.*;
@@ -88,15 +87,34 @@ public class ApiExample {
8887
}
8988
```
9089

90+
## Manual build and installation from sources
91+
92+
Building the API client library requires [Maven](https://maven.apache.org/) to be installed.
93+
Refer to the [official documentation](https://maven.apache.org/plugins/maven-deploy-plugin/usage.html) for more information.
94+
95+
At first generate the JAR by executing following command in "/src" working directory:
96+
97+
```shell
98+
mvn package -D maven.test.skip=true
99+
```
100+
101+
Then manually install the following JARs:
102+
103+
* target/groupdocs-viewer-cloud-21.8.jar
104+
* target/lib/*.jar
105+
91106
## Licensing
107+
92108
All GroupDocs.Viewer Cloud SDKs are licensed under [MIT License](LICENSE).
93109

94110
## Resources
95-
+ [**Website**](https://www.groupdocs.cloud)
96-
+ [**Product Home**](https://products.groupdocs.cloud/viewer)
97-
+ [**Documentation**](https://docs.groupdocs.cloud/display/viewercloud/Home)
98-
+ [**Free Support Forum**](https://forum.groupdocs.cloud/c/viewer)
99-
+ [**Blog**](https://blog.groupdocs.cloud/category/viewer)
111+
112+
* [**Website**](https://www.groupdocs.cloud)
113+
* [**Product Home**](https://products.groupdocs.cloud/viewer)
114+
* [**Documentation**](https://docs.groupdocs.cloud/display/viewercloud/Home)
115+
* [**Free Support Forum**](https://forum.groupdocs.cloud/c/viewer)
116+
* [**Blog**](https://blog.groupdocs.cloud/category/viewer)
100117

101118
## Contact Us
119+
102120
Your feedback is very important to us. Please feel free to contact us using our [Support Forums](https://forum.groupdocs.cloud/c/viewer).

0 commit comments

Comments
 (0)