Skip to content

Commit c88f67b

Browse files
committed
Updated sources
1 parent 356768b commit c88f67b

File tree

1 file changed

+47
-35
lines changed

1 file changed

+47
-35
lines changed

README.md

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

4-
GroupDocs.Editor Cloud allows you to edit documents across wide range of supported document types:
5-
* Microsoft Word documents - DOC, DOCX, DOCM, DOT, DOTM, DOTX, RTF, FlatOpc, WordML, TXT;
6-
* Microsoft Excel spreadsheets - XLS, XLSX, XLSM, XLT, XLTX, XLTM, XLSB, SpreadsheetML, CSV, TSV;
7-
* Microsoft PowerPoint presentations - PPT, PPTX, PPTM, POT, PPS etc.;
8-
* Open Document formats - ODT, OTT, ODS, ODP, OTP;
9-
* Markup - HTML, MHTML, XML.
105
## Requirements
116

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

149
## Installation
1510

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

3213
Add following repository and dependency to your project's POM
3314

@@ -48,20 +29,32 @@ Add following repository and dependency to your project's POM
4829
</dependency>
4930
```
5031

51-
### Others
52-
53-
At first generate the JAR by executing:
32+
### Gradle
5433

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

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

59-
* target/groupdocs-editor-cloud-21.7.jar
60-
* target/lib/*.jar
43+
...
44+
dependencies {
45+
...
46+
implementation 'com.groupdocs:groupdocs-editor-cloud:21.7'
47+
}
48+
```
6149

6250
## Getting Started
6351

64-
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-editor-cloud/groupdocs-editor-cloud-java-samples)
56+
57+
Example:
6558

6659
```java
6760
import com.groupdocs.cloud.editor.client.*;
@@ -94,15 +87,34 @@ public class ApiExample {
9487
}
9588
```
9689

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-editor-cloud-21.7.jar
104+
* target/lib/*.jar
105+
97106
## Licensing
107+
98108
All GroupDocs.Editor Cloud SDKs are licensed under [MIT License](LICENSE).
99109

100110
## Resources
101-
+ [**Website**](https://www.groupdocs.cloud)
102-
+ [**Product Home**](https://products.groupdocs.cloud/editor)
103-
+ [**Documentation**](https://docs.groupdocs.cloud/display/editorcloud/Home)
104-
+ [**Free Support Forum**](https://forum.groupdocs.cloud/c/editor)
105-
+ [**Blog**](https://blog.groupdocs.cloud/category/editor)
111+
112+
* [**Website**](https://www.groupdocs.cloud)
113+
* [**Product Home**](https://products.groupdocs.cloud/editor)
114+
* [**Documentation**](https://docs.groupdocs.cloud/editor/)
115+
* [**Free Support Forum**](https://forum.groupdocs.cloud/c/editor)
116+
* [**Blog**](https://blog.groupdocs.cloud/category/editor)
106117

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

0 commit comments

Comments
 (0)